diff --git a/10_collect_metadata.py b/10_collect_metadata.py index 227e362..46b632d 100644 --- a/10_collect_metadata.py +++ b/10_collect_metadata.py @@ -39,7 +39,9 @@ if sys.stdout.encoding and sys.stdout.encoding.lower() != "utf-8": sys.stdout.reconfigure(encoding="utf-8") sys.stderr.reconfigure(encoding="utf-8") +import logging import exifread +logging.getLogger("exifread").setLevel(logging.CRITICAL) import imagehash from PIL import Image, ImageOps, IptcImagePlugin @@ -53,6 +55,9 @@ OUTPUT_DIR = Path(__file__).parent / "output" OUTPUT_JSONL = OUTPUT_DIR / "10_metadata.jsonl" ERROR_LOG = OUTPUT_DIR / "10_errors.log" +RESUME = True +WORKERS = 2 + IPTC_TAG_NAMES = { (2, 5): "ObjectName", (2, 10): "Urgency", @@ -133,6 +138,30 @@ def extract_gps(raw_tags: dict) -> dict: return result +# --------------------------------------------------------------------------- +# JSON serializace +# --------------------------------------------------------------------------- + +def _make_serializable(obj): + """Rekurzivně převede vše co JSON nezná (IFDRational, bytes, tuple…) na základní typy.""" + if hasattr(obj, "numerator") and hasattr(obj, "denominator"): + try: + return float(obj) + except Exception: + return str(obj) + if isinstance(obj, dict): + return {str(k): _make_serializable(v) for k, v in obj.items()} + if isinstance(obj, (list, tuple)): + return [_make_serializable(x) for x in obj] + if isinstance(obj, bytes): + return obj[:200].decode("utf-8", errors="replace") + try: + json.dumps(obj) + return obj + except (TypeError, ValueError): + return str(obj) + + # --------------------------------------------------------------------------- # Hashe # --------------------------------------------------------------------------- @@ -411,14 +440,14 @@ def main(): help=f"Zdrojová složka (default: {SOURCE})") parser.add_argument("--output", type=Path, default=OUTPUT_JSONL, help=f"Výstupní JSONL soubor (default: {OUTPUT_JSONL})") - parser.add_argument("--resume", action="store_true", - help="Přeskočit soubory, které jsou již v JSONL") + parser.add_argument("--resume", action="store_true", default=RESUME, + help=f"Přeskočit soubory, které jsou již v JSONL (default: {RESUME})") parser.add_argument("--dry-run", action="store_true", help="Jen spočítat soubory, nic nezpracovat") parser.add_argument("--limit", type=int, default=0, help="Zpracovat maximálně N fotek (0 = vše)") - parser.add_argument("--workers", type=int, default=1, - help="Počet paralelních vláken (default: 1)") + parser.add_argument("--workers", type=int, default=WORKERS, + help=f"Počet paralelních vláken (default: {WORKERS})") args = parser.parse_args() source: Path = args.source @@ -511,7 +540,7 @@ def main(): progress.tick(ok=not has_error) if has_error: err_f.write(f"{path}\t{record.get('fatal_error') or record.get('pil_error')}\n") - batch.append(json.dumps(record, ensure_ascii=False)) + batch.append(json.dumps(_make_serializable(record), ensure_ascii=False)) if len(batch) >= flush_every: out_f.write("\n".join(batch) + "\n") batch.clear() @@ -531,7 +560,7 @@ def main(): progress.tick(ok=not has_error) if has_error: err_f.write(f"{path}\t{record.get('fatal_error') or record.get('pil_error')}\n") - batch.append(json.dumps(record, ensure_ascii=False)) + batch.append(json.dumps(_make_serializable(record), ensure_ascii=False)) if len(batch) >= flush_every: out_f.write("\n".join(batch) + "\n") batch.clear() diff --git a/output/10_metadata.jsonl b/output/10_metadata.jsonl new file mode 100644 index 0000000..283f4de --- /dev/null +++ b/output/10_metadata.jsonl @@ -0,0 +1,4100 @@ +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2007-03-23 Michalka sono.jpg", "file_path_relative": "HD02#FOTKY\\2007-03-23 Michalka sono.jpg", "file_name": "2007-03-23 Michalka sono.jpg", "file_stem": "2007-03-23 Michalka sono", "file_ext": ".jpg", "file_size": 17528.0, "mtime": "2007-03-23T10:31:53+00:00", "mtime_ts": 1174645913.0, "ctime": "2007-03-23T10:31:53+00:00", "sha256_file": "55261c58ab19443d1ff78fc80b917df826480307eeeb7f2ad184200ad9d36dd6", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a7d18da00a00771ef50dc2e9b8256ea7b5267b7a9b3dfc6705ecc258d5c3f6eb", "phash": "9ab964e46386999b", "dhash": "989b5939f8f46434", "phash_int": -7.297690789092092e+18, "collected_at": "2026-05-22T04:27:43.915000+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2007-04-18 Michalka sono.jpg", "file_path_relative": "HD02#FOTKY\\2007-04-18 Michalka sono.jpg", "file_name": "2007-04-18 Michalka sono.jpg", "file_stem": "2007-04-18 Michalka sono", "file_ext": ".jpg", "file_size": 20076.0, "mtime": "2007-04-18T15:11:22+00:00", "mtime_ts": 1176909082.0, "ctime": "2007-04-18T15:11:22+00:00", "sha256_file": "50bf1d193b291f3c6ef5a6c5949540a0fde3b206126c1fdeffa3e308a5e4b866", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "226a9a613158e44895cce20c068c5f02c8ede33434f1b33f4056433d3b51569c", "phash": "957862a56c859b9e", "dhash": "9ab9397074cccc78", "phash_int": -7.676277102223189e+18, "collected_at": "2026-05-22T04:27:43.915000+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\Fuerteventura Vladunka s papagajem.jpg", "file_path_relative": "HD02#FOTKY\\Fuerteventura Vladunka s papagajem.jpg", "file_name": "Fuerteventura Vladunka s papagajem.jpg", "file_stem": "Fuerteventura Vladunka s papagajem", "file_ext": ".jpg", "file_size": 2532475.0, "mtime": "2009-07-11T07:16:15+00:00", "mtime_ts": 1247296575.0, "ctime": "2009-07-11T07:16:15+00:00", "sha256_file": "72f47e1fbb7e5022fac150ddcb65853f9a735503983d7fb224278502ca7b207d", "exif": {"Image Orientation": "Horizontal (normal)", "Image XResolution": "266", "Image YResolution": "266", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "Adobe Photoshop CS Windows", "Image DateTime": "2009:07:11 09:16:11", "Image ExifOffset": "164", "Thumbnail JPEGInterchangeFormat": "302", "Thumbnail JPEGInterchangeFormatLength": "9744", "EXIF ColorSpace": "Uncalibrated", "EXIF ExifImageWidth": "2031", "EXIF ExifImageLength": "1519"}, "format": "JPEG", "mode": "RGB", "width": 2031.0, "height": 1519.0, "megapixels": 3.09, "has_transparency": 0.0, "dpi": [266.0, 266.0], "icc_profile": 1.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {"_xmp_bytes": 6432.0}, "sha256_pixels": "1211ed469af4ca0512f5335ce4a6c5d6689b55b34365dbcb015e22001dba5fa3", "phash": "86b9a7c24d2cb963", "dhash": "ececbef6c5cde6e2", "phash_int": -8.738769148975466e+18, "collected_at": "2026-05-22T04:27:44.169012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\Krb co se líbí Michalce.jpg", "file_path_relative": "HD02#FOTKY\\Krb co se líbí Michalce.jpg", "file_name": "Krb co se líbí Michalce.jpg", "file_stem": "Krb co se líbí Michalce", "file_ext": ".jpg", "file_size": 356340.0, "mtime": "2004-01-11T12:01:30+00:00", "mtime_ts": 1073822490.0, "ctime": "2004-01-11T12:01:30+00:00", "sha256_file": "b9486521a5580be9aa25d635a728275f923083a2c42b6822e45775d9b261f2d9", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1518.0, "height": 1977.0, "megapixels": 3.0, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e943d1d2a718769c6c97fc88848d3d12e2d325eec0583f68624d2efea05c8f2", "phash": "fde9a9d833844686", "dhash": "1313461c1830bc4d", "phash_int": -1.5040236649786406e+17, "collected_at": "2026-05-22T04:27:44.262013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\Hodinky Omega.jpg", "file_path_relative": "HD02#FOTKY\\Hodinky Omega.jpg", "file_name": "Hodinky Omega.jpg", "file_stem": "Hodinky Omega", "file_ext": ".jpg", "file_size": 9999633.0, "mtime": "2010-08-09T07:44:52+00:00", "mtime_ts": 1281339892.0, "ctime": "2010-08-09T07:44:52+00:00", "sha256_file": "9ad1f646b50627af5afddab453d744a9ab6ac3daaacd09cff1776b0a35ded935", "exif": {"Image Orientation": "Horizontal (normal)", "Image XResolution": "1200", "Image YResolution": "1200", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "Adobe Photoshop CS Windows", "Image DateTime": "2010:08:09 09:44:47", "Image ExifOffset": "164", "Thumbnail JPEGInterchangeFormat": "302", "Thumbnail JPEGInterchangeFormatLength": "7073", "EXIF ColorSpace": "Uncalibrated", "EXIF ExifImageWidth": "5557", "EXIF ExifImageLength": "5768"}, "format": "JPEG", "mode": "RGB", "width": 5557.0, "height": 5768.0, "megapixels": 32.05, "has_transparency": 0.0, "dpi": [1200.0, 1200.0], "icc_profile": 1.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {"_xmp_bytes": 6120.0}, "sha256_pixels": "383b8d69056aef2a365ad8d36539c40055b6d3f53715d143be87bd88771308fd", "phash": "bf96a489c666c169", "dhash": "6c3b3b3933531323", "phash_int": -4.64134145431262e+18, "collected_at": "2026-05-22T04:27:44.779658+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\_MG_0031.JPG", "file_path_relative": "HD02#FOTKY\\_MG_0031.JPG", "file_name": "_MG_0031.JPG", "file_stem": "_MG_0031", "file_ext": ".jpg", "file_size": 9806781.0, "mtime": "2017-02-17T19:17:03+00:00", "mtime_ts": 1487359023.0, "ctime": "2017-02-17T19:17:03+00:00", "sha256_file": "50b63dde6f954ac4bc24fb3d61102e2910db1952a1b0dfa8b578d8bb9a5a2759", "exif": {"Image Make": "Canon", "Image Model": "Canon EOS-1D X Mark II", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "Digital Photo Professional", "Image DateTime": "2016:06:19 18:39:31", "Image Artist": "Peter Mercell", "Image YCbCrPositioning": "Centered", "Image Copyright": "Peter Mercell", "Image ExifOffset": "292", "GPS GPSVersionID": "[2, 3, 0, 0]", "GPS GPSSatellites": "0", "GPS GPSStatus": "V", "GPS GPSMapDatum": "WGS-84", "Image GPSInfo": "7520", "Thumbnail JPEGInterchangeFormat": "7676", "Thumbnail JPEGInterchangeFormatLength": "6614", "EXIF ExposureTime": "1/160", "EXIF FNumber": "5", "EXIF ExposureProgram": "Manual", "EXIF ISOSpeedRatings": "12800", "EXIF SensitivityType": "Recommended Exposure Index", "EXIF RecommendedExposureIndex": "12800", "EXIF ExifVersion": "0230", "EXIF DateTimeOriginal": "2016:06:19 18:39:31", "EXIF DateTimeDigitized": "2016:06:19 18:39:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "59/8", "EXIF ApertureValue": "37/8", "EXIF ExposureBiasValue": "0", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "200", "EXIF MakerNote": "[27, 0, 1, 0, 3, 0, 49, 0, 0, 0, 112, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF SubSecTime": "26", "EXIF SubSecTimeOriginal": "26", "EXIF SubSecTimeDigitized": "26", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "5373", "EXIF ExifImageLength": "3582", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "5373", "Interoperability RelatedImageLength": "3582", "EXIF InteroperabilityOffset": "7380", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF SceneCaptureType": "Standard", "EXIF CameraOwnerName": "", "EXIF BodySerialNumber": "023011000835", "EXIF LensSpecification": "[70, 200, 0, 0]", "EXIF LensModel": "EF70-200mm f/2.8L IS II USM", "EXIF LensSerialNumber": "000040babe", "MakerNote ImageType": "Canon EOS-1D X Mark II", "MakerNote FirmwareVersion": "Firmware Version 1.0.0", "MakerNote OwnerName": "", "MakerNote ModelID": "EOS-1D X Mark II", "MakerNote Tag 0x0019": "1", "MakerNote LensModel": "EF70-200mm f/2.8L IS II USM", "MakerNote InternalSerialNumber ": "DK0008436", "MakerNote Tag 0x0099": "[828, 4, 1, 240, 15, 257, 1, 0, 258, 1, 0, 260, 1, 0, 261, 1, 0, 262, 2, 3, ... ]", "MakerNote Tag 0x00A0": "[34, 0, 5, 0, 0, 0, 0, 0, 65535, 5200, 132, 0, 0, 0, 2, 2, 0]", "MakerNote Tag 0x00AA": "[12, 1128, 1024, 1024, 356, 0]", "MakerNote ColorSpace": "sRGB", "MakerNote Tag 0x00E0": "[34, 5568, 3708, 1, 1, 84, 50, 5555, 3697, 0, 0, 0, 0, 0, 0, 0, 0]", "MakerNote Tag 0x4001": "[]", "MakerNote Tag 0x4008": "[65, 129, 129]", "MakerNote Tag 0x4009": "[132, 0, 0]", "MakerNote Tag 0x4010": "", "MakerNote Tag 0x4011": "[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... ]", "MakerNote Tag 0x4012": "", "MakerNote Tag 0x4013": "[44, 0, 0, 10, 4294967295, 0, 10, 0, 10, 0, 10]", "MakerNote Tag 0x4015": "[0, 48, 100, 2, 1, 0, 1, 0, 1, 0, 1, 0, 20, 0, 100, 0, 100, 0, 100, 0, ... ]", "MakerNote Tag 0x4016": "[40, 0, 1, 0, 0, 1, 1, 1, 1, 0]", "MakerNote Tag 0x4018": "[52, 0, 3, 0, 0, 2, 1, 1, 1, 1, 0, 0, 0]", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "0", "MakerNote FocusMode": "Unknown", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Low", "MakerNote Saturation": "Unknown", "MakerNote Sharpness": "Unknown", "MakerNote ISO": "Unknown", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "200", "MakerNote ShortFocalLengthOfLensInFocalUnits": "70", "MakerNote FocalUnitsPerMM": "1", "MakerNote MaxAperture": "96", "MakerNote MinAperture": "320", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Unknown", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "30755", "MakerNote AutoISO": "0", "MakerNote BaseISO": "384", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "148", "MakerNote TargetExposureTime": "236", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "0", "MakerNote AFAreaMode": "Unknown", "MakerNote NumAFPoints": "61", "MakerNote ValidAFPoints": "5373", "MakerNote CanonImageWidth": "3582", "MakerNote FileNumber": "0", "MakerNote BracketMode": "Off", "MakerNote BracketValue": "0", "MakerNote BracketShotNumber": "0", "MakerNote RawJpgQuality": "Unknown", "MakerNote RawJpgSize": "Large", "MakerNote LongExposureNoiseReduction2": "Unknown", "MakerNote WBBracketMode": "Off", "MakerNote WBBracketValueAB": "0", "MakerNote WBBracketValueGM": "0", "MakerNote FilterEffect": "Unknown", "MakerNote ToningEffect": "Unknown", "MakerNote MacroMagnification": "90", "MakerNote LiveViewShooting": "Off", "MakerNote FlashExposureLock": "Off"}, "format": "JPEG", "mode": "RGB", "width": 5373.0, "height": 3582.0, "megapixels": 19.25, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 1.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {"_xmp_bytes": 8190.0}, "sha256_pixels": "cb94342f25399387ed83fcf4af339535802d555f29f6b1bbcfc7d1ac35dfa220", "phash": "9e61638c6c9b4c73", "dhash": "78f8f87074b4f8f8", "phash_int": -7.034231688207316e+18, "collected_at": "2026-05-22T04:27:44.934397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00305.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00305.JPG", "file_name": "DSC00305.JPG", "file_stem": "DSC00305", "file_ext": ".jpg", "file_size": 830538.0, "mtime": "2002-03-07T19:27:02+00:00", "mtime_ts": 1015529222.0, "ctime": "2002-03-07T19:27:02+00:00", "sha256_file": "c973845252ec7554c26200033e77e2fcad4a36c51581331feaee52d9fc281288", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:27:02", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3653", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "400", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:27:02", "EXIF DateTimeDigitized": "2002:03:07 20:27:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:27:02", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3653", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xCC48": "[]", "MakerNote Tag 0x9817": "[]", "MakerNote Tag 0x6A87": "[]", "MakerNote Tag 0x0399": "[]", "MakerNote Tag 0xC8E5": "[]", "MakerNote Tag 0x8ED5": "[]", "MakerNote Tag 0x3B72": "", "MakerNote Tag 0x7830": "[]", "MakerNote Tag 0x020B": "[]", "MakerNote Tag 0xC8CB": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e751fb6485ca63728b981d53a62d6267be484059a0b29d1739f033a93fd6be1", "phash": "9c8edccd61369166", "dhash": "b4b4acfff6b43cbc", "phash_int": -7.165547182442508e+18, "collected_at": "2026-05-22T04:27:45.421760+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\1990\\Stužková Gympel\\VIDEO\\2013-09-17 Monika dopis k DVD.jpg", "file_path_relative": "HD02#FOTKY\\1990\\Stužková Gympel\\VIDEO\\2013-09-17 Monika dopis k DVD.jpg", "file_name": "2013-09-17 Monika dopis k DVD.jpg", "file_stem": "2013-09-17 Monika dopis k DVD", "file_ext": ".jpg", "file_size": 784014.0, "mtime": "2013-09-17T18:59:26+00:00", "mtime_ts": 1379444366.0, "ctime": "2013-09-17T18:59:26+00:00", "sha256_file": "d2e95859efa19db7e917154faead7c7e90b2c06f3bcf5b0589309f8f89a1b87f", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 4960.0, "height": 7015.0, "megapixels": 34.79, "has_transparency": 0.0, "dpi": [600.0, 600.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2970744111935615a406bc4338f4c3c8817296ff50b9597b82c98155b117e67", "phash": "e565729294959d99", "dhash": "0603030600000000", "phash_int": -1.917000092492653e+18, "collected_at": "2026-05-22T04:27:45.527097+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00307.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00307.JPG", "file_name": "DSC00307.JPG", "file_stem": "DSC00307", "file_ext": ".jpg", "file_size": 843757.0, "mtime": "2002-03-07T19:27:36+00:00", "mtime_ts": 1015529256.0, "ctime": "2002-03-07T19:27:36+00:00", "sha256_file": "8a981301a33fb724a7750b01f17547fc98f903d302df16938dc02d0879fb7e52", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:27:36", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3611", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:27:36", "EXIF DateTimeDigitized": "2002:03:07 20:27:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:27:36", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3611", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x1EEC": "[]", "MakerNote Tag 0x8EBB": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d38417054159bddbf7d84d552aaa1336b096daf61245801747a8758da1e2894f", "phash": "9caedc8c69669166", "dhash": "b4b4acffffb4b4bc", "phash_int": -7.156540262223278e+18, "collected_at": "2026-05-22T04:27:45.787059+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00308.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00308.JPG", "file_name": "DSC00308.JPG", "file_stem": "DSC00308", "file_ext": ".jpg", "file_size": 818019.0, "mtime": "2002-03-07T19:27:46+00:00", "mtime_ts": 1015529266.0, "ctime": "2002-03-07T19:27:46+00:00", "sha256_file": "b0f4e18901f35dc5c93007cfe9769f233e6cbd224bb90338d398e45dcbf939a0", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:27:46", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3914", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:27:46", "EXIF DateTimeDigitized": "2002:03:07 20:27:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:27:46", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3914", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xB50E": "[]", "MakerNote Tag 0x4892": "[]", "MakerNote Tag 0xE7A4": "[]", "MakerNote Tag 0x497D": "[]", "MakerNote Tag 0x1272": "[]", "MakerNote Tag 0xAA70": "[]", "MakerNote Tag 0xE72A": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c4c07e250167e4f0c049f76c685723507dd7629f3094d8b076378a75677f35f", "phash": "87a787cb6c95614a", "dhash": "e4465e7ed5cb6864", "phash_int": -8.671813249708761e+18, "collected_at": "2026-05-22T04:27:46.057115+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00309.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00309.JPG", "file_name": "DSC00309.JPG", "file_stem": "DSC00309", "file_ext": ".jpg", "file_size": 819831.0, "mtime": "2002-03-07T19:28:28+00:00", "mtime_ts": 1015529308.0, "ctime": "2002-03-07T19:28:28+00:00", "sha256_file": "a14fa436ed92fe754a00d51f3098235f3e414c37487243174bf173a1fecbe1ed", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:28:28", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3786", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:28:28", "EXIF DateTimeDigitized": "2002:03:07 20:28:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "78/5", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:28:28", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3786", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x845E": "[]", "MakerNote Tag 0xF7E8": "[]", "MakerNote Tag 0x6137": "[]", "MakerNote Tag 0xD815": "[]", "MakerNote Tag 0x3A13": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbcae0a3b7d57db497daca1849f4d8dd9c7be501402d9c7ec295604cdb1cdadf", "phash": "d737caf78d8a4005", "dhash": "686c3473568cc9e3", "phash_int": -2.9386570672555786e+18, "collected_at": "2026-05-22T04:27:46.281486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00310.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00310.JPG", "file_name": "DSC00310.JPG", "file_stem": "DSC00310", "file_ext": ".jpg", "file_size": 826610.0, "mtime": "2002-03-07T19:28:36+00:00", "mtime_ts": 1015529316.0, "ctime": "2002-03-07T19:28:36+00:00", "sha256_file": "0681aeb8dfa6437004e5ae9461761f3c400902408aff5122ff0c0248123ab52d", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:28:36", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3814", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:28:36", "EXIF DateTimeDigitized": "2002:03:07 20:28:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "78/5", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:28:36", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3814", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xCCFE": "[]", "MakerNote Tag 0x1D77": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79753e932a1deb127ad611741a31726c9960f860f9d8d62d521d5266c646728e", "phash": "c634daf6ad8a42c9", "dhash": "2c2eb67306cde1e1", "phash_int": -4.164463002402537e+18, "collected_at": "2026-05-22T04:27:46.650495+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00306.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00306.JPG", "file_name": "DSC00306.JPG", "file_stem": "DSC00306", "file_ext": ".jpg", "file_size": 837024.0, "mtime": "2002-03-07T19:27:18+00:00", "mtime_ts": 1015529238.0, "ctime": "2002-03-07T19:27:18+00:00", "sha256_file": "f1706a504ed171778e2899800293077ed0fe4a9ba3fb17bb2357aea5d068fb83", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:27:18", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3660", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "400", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:27:18", "EXIF DateTimeDigitized": "2002:03:07 20:27:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:27:18", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3660", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x9623": "[]", "MakerNote Tag 0xF371": "[]", "MakerNote Tag 0x4158": "[]", "MakerNote Tag 0x3720": "[]", "MakerNote Tag 0x64DC": "", "MakerNote Tag 0x6703": "[]", "MakerNote Tag 0x0200": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "405b57ddf76cfe298b60714572d26daa7c531963ce21473ea05eace88d94ad00", "phash": "9caedc8c49669336", "dhash": "b4b4bcf7f7b4b4b0", "phash_int": -7.156540262760148e+18, "collected_at": "2026-05-22T04:27:46.677580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00311.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00311.JPG", "file_name": "DSC00311.JPG", "file_stem": "DSC00311", "file_ext": ".jpg", "file_size": 823173.0, "mtime": "2002-03-07T19:33:50+00:00", "mtime_ts": 1015529630.0, "ctime": "2002-03-07T19:33:50+00:00", "sha256_file": "e9a3031fc79a20a565e29b6cbea835e52bcdfbcff9876eb052a45b1c3fe4d091", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:33:51", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3324", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:33:51", "EXIF DateTimeDigitized": "2002:03:07 20:33:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:33:51", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3324", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xCC34": "[]", "MakerNote Tag 0xEEA8": "[]", "MakerNote Tag 0xB0F9": "[]", "MakerNote Tag 0xD84C": "[]", "MakerNote Tag 0x9E34": "[]", "MakerNote Tag 0xB444": "[]", "MakerNote Tag 0x826C": "[]", "MakerNote Tag 0xAD1F": "[]", "MakerNote Tag 0xD9D5": "[]", "MakerNote Tag 0xCC7C": "[]", "MakerNote Tag 0x2EC3": "[]", "MakerNote Tag 0x685E": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28e2aacb7e928044fbd234ae3e4a513c5b08371c3dba699dbd76460d6603bda1", "phash": "91b416696986cf79", "dhash": "98b870f89ad2acf8", "phash_int": -7.947702800404263e+18, "collected_at": "2026-05-22T04:27:46.961322+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00312.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00312.JPG", "file_name": "DSC00312.JPG", "file_stem": "DSC00312", "file_ext": ".jpg", "file_size": 838016.0, "mtime": "2002-03-07T19:34:06+00:00", "mtime_ts": 1015529646.0, "ctime": "2002-03-07T19:34:06+00:00", "sha256_file": "cceb28350462cb20b18818f184e25c8ed733edd6f31674efcd3372004687a71e", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:34:06", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3206", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:34:06", "EXIF DateTimeDigitized": "2002:03:07 20:34:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:34:06", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3206", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x7A8A": "[]", "MakerNote Tag 0x6066": "[]", "MakerNote Tag 0x193B": "[]", "MakerNote Tag 0xC649": "[]", "MakerNote Tag 0x237B": "[]", "MakerNote Tag 0xDC29": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49583581e25520ab31afe85728acd05e2714c9af3063b52b6007d982ef8d0836", "phash": "87945827bdf82716", "dhash": "c8f4fcf06e4ba1e5", "phash_int": -8.677213654321977e+18, "collected_at": "2026-05-22T04:27:47.005323+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00313.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00313.JPG", "file_name": "DSC00313.JPG", "file_stem": "DSC00313", "file_ext": ".jpg", "file_size": 827380.0, "mtime": "2002-03-07T19:36:30+00:00", "mtime_ts": 1015529790.0, "ctime": "2002-03-07T19:36:30+00:00", "sha256_file": "b8ea64c9bad5f9d12a38d19184a8215aa1a78c04a20cb93165c7d924485e7c7c", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:36:31", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2746", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:36:31", "EXIF DateTimeDigitized": "2002:03:07 20:36:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:36:31", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2746", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x8D49": "[]", "MakerNote Tag 0xA465": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a74ca990f6393292b60df059af3594fa6015fc6be8c2aefd8c04c6b7d53823be", "phash": "9fc0f82fc09e654a", "dhash": "b090f0f0e06b793a", "phash_int": -6.935270542171807e+18, "collected_at": "2026-05-22T04:27:47.179162+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00315.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00315.JPG", "file_name": "DSC00315.JPG", "file_stem": "DSC00315", "file_ext": ".jpg", "file_size": 807233.0, "mtime": "2002-03-07T19:37:24+00:00", "mtime_ts": 1015529844.0, "ctime": "2002-03-07T19:37:24+00:00", "sha256_file": "758405999e6c344aeddd1ac0b536ab65453299d75ae471646eadd7f7480251d4", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:37:25", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3522", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:37:25", "EXIF DateTimeDigitized": "2002:03:07 20:37:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:37:25", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3522", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x3A9D": "[]", "MakerNote Tag 0xAD8F": "[]", "MakerNote Tag 0xCE08": "[]", "MakerNote Tag 0xF0BD": "[]", "MakerNote Tag 0x356E": "[]", "MakerNote FlashAction": "", "MakerNote Tag 0xB3DA": "[]", "MakerNote Tag 0xCAF2": ""}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bebdd8192511b828dbecab8fa1315d72e446e986180cd0f573d9b377826a215", "phash": "8d316addd48ac297", "dhash": "d1dafbf474f27361", "phash_int": -8.27271353951671e+18, "collected_at": "2026-05-22T04:27:48.500423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00314.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00314.JPG", "file_name": "DSC00314.JPG", "file_stem": "DSC00314", "file_ext": ".jpg", "file_size": 817737.0, "mtime": "2002-03-07T19:36:58+00:00", "mtime_ts": 1015529818.0, "ctime": "2002-03-07T19:36:58+00:00", "sha256_file": "fbaac31808e7b6006df9735f6696d49ee7695416523c5a7b9ef218d38e023920", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:36:59", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3641", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:36:59", "EXIF DateTimeDigitized": "2002:03:07 20:36:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "52/5", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:36:59", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3641", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0C5C": "", "MakerNote Tag 0xF485": "[]", "MakerNote Tag 0xB429": "[]", "MakerNote Tag 0x83F9": "[]", "MakerNote Tag 0xDB98": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50d899359ae0afa1cd7ca5b5fec4537739f0792ae84e0391913e3eca10f49cef", "phash": "a21f64ccd3ac1a3d", "dhash": "e7efffdd9de5a79d", "phash_int": -6.764577284399818e+18, "collected_at": "2026-05-22T04:27:48.506423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00316.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00316.JPG", "file_name": "DSC00316.JPG", "file_stem": "DSC00316", "file_ext": ".jpg", "file_size": 818098.0, "mtime": "2002-03-07T19:37:40+00:00", "mtime_ts": 1015529860.0, "ctime": "2002-03-07T19:37:40+00:00", "sha256_file": "d4238a43b7cad45b34543e86b2ce47292a9894c0e052e62805121eb34523f655", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:37:40", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3220", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:37:40", "EXIF DateTimeDigitized": "2002:03:07 20:37:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:37:40", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3220", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xEED4": "[]", "MakerNote Tag 0x720E": "[]", "MakerNote Tag 0x753B": "[]", "MakerNote Tag 0x95F3": "[]", "MakerNote Tag 0x1846": "[]", "MakerNote Tag 0xB89C": "[]", "MakerNote Tag 0x6E24": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1f81bb08bc4fc39c10e0fe7d5b82a3a94c35829fd929412cbba8a0bba46dcfd", "phash": "cf20003ac5fd3dc7", "dhash": "e5e17272703170e0", "phash_int": -3.5218146561739167e+18, "collected_at": "2026-05-22T04:27:48.771638+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00317.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00317.JPG", "file_name": "DSC00317.JPG", "file_stem": "DSC00317", "file_ext": ".jpg", "file_size": 807873.0, "mtime": "2002-03-07T19:37:58+00:00", "mtime_ts": 1015529878.0, "ctime": "2002-03-07T19:37:58+00:00", "sha256_file": "e3b81f1a1ef313551e301b43614c84d54ae73f0cb721fe0d3e2682360fb8c0ab", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:37:58", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3409", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:37:58", "EXIF DateTimeDigitized": "2002:03:07 20:37:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:37:58", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3409", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0A37": "[]", "MakerNote Tag 0x2CE7": "[]", "MakerNote Tag 0x552D": "[]", "MakerNote Tag 0xC629": "[]", "MakerNote Tag 0x8148": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac1f1b3e9acd9ec6c941862f55acac0f4e12acf91e3e37e8166f61ad889527c4", "phash": "ce6c2c6643b9d31a", "dhash": "66273119c9c89ae2", "phash_int": -3.5724315866771077e+18, "collected_at": "2026-05-22T04:27:48.826697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00318.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00318.JPG", "file_name": "DSC00318.JPG", "file_stem": "DSC00318", "file_ext": ".jpg", "file_size": 804839.0, "mtime": "2002-03-07T19:38:08+00:00", "mtime_ts": 1015529888.0, "ctime": "2002-03-07T19:38:08+00:00", "sha256_file": "58e5cc4ba350ec417b1b502a353770469fceab8f4e124fb6de7af27f9bf1fef6", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:38:09", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3409", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "120", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:38:09", "EXIF DateTimeDigitized": "2002:03:07 20:38:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:38:09", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3409", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x54BE": "[]", "MakerNote Tag 0x7DAD": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35813a814a328b2fb5d3d7a4850adfa07a1aae23a684572715d1d4c58d70f00d", "phash": "d82d16994dc2c6ee", "dhash": "f152049333909c84", "phash_int": -2.8696125398747203e+18, "collected_at": "2026-05-22T04:27:49.048186+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00319.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00319.JPG", "file_name": "DSC00319.JPG", "file_stem": "DSC00319", "file_ext": ".jpg", "file_size": 746721.0, "mtime": "2002-03-07T19:38:28+00:00", "mtime_ts": 1015529908.0, "ctime": "2002-03-07T19:38:28+00:00", "sha256_file": "4bc8ca3901c0b52f8beb0c95628dc8878d9f413151426ab0a38e88043efc957c", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:38:28", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3499", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "120", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:38:28", "EXIF DateTimeDigitized": "2002:03:07 20:38:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:38:28", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3499", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0xE9A8": "[]", "MakerNote Tag 0x6CF4": "[]", "MakerNote Tag 0x900C": "[]", "MakerNote Tag 0x920B": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b8355d5f30cf9a796d2acded101953f0ec7aa849b3047aa06ae65a33761b527", "phash": "d61928a41685ffcb", "dhash": "b49540c4ec64e101", "phash_int": -3.019337389957579e+18, "collected_at": "2026-05-22T04:27:49.094612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00320.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00320.JPG", "file_name": "DSC00320.JPG", "file_stem": "DSC00320", "file_ext": ".jpg", "file_size": 804708.0, "mtime": "2002-03-07T19:38:42+00:00", "mtime_ts": 1015529922.0, "ctime": "2002-03-07T19:38:42+00:00", "sha256_file": "a623c73c698db19c850517262a5aaa9aee726ca77774111ce9dc8de505346d48", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:38:42", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3572", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:38:42", "EXIF DateTimeDigitized": "2002:03:07 20:38:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:38:42", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3572", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x39BC": "[]", "MakerNote Tag 0x03A4": "[]", "MakerNote Tag 0xAA54": "[]", "MakerNote Tag 0xAEE7": "[]", "MakerNote Tag 0xF2D0": "[]", "MakerNote Tag 0x4795": "[]", "MakerNote Tag 0xDBFD": "[]", "MakerNote Tag 0x57C9": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3f6fa30ac5905b9fd804d04d9b64104767ebba17a9428e93ae60bdd11f93b26", "phash": "9e1d09867db6e123", "dhash": "7474652525e5ede4", "phash_int": -7.053470968152924e+18, "collected_at": "2026-05-22T04:27:49.318261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00321.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00321.JPG", "file_name": "DSC00321.JPG", "file_stem": "DSC00321", "file_ext": ".jpg", "file_size": 770972.0, "mtime": "2002-03-07T19:39:12+00:00", "mtime_ts": 1015529952.0, "ctime": "2002-03-07T19:39:12+00:00", "sha256_file": "d7103180365b22eedede67d185f0eca81e693f99aafb6745bafe641e2668b8b3", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:39:13", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3222", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:39:13", "EXIF DateTimeDigitized": "2002:03:07 20:39:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:39:13", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3222", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xD1B6": "[]", "MakerNote Tag 0xC3DF": "[]", "MakerNote Tag 0xCC07": "[]", "MakerNote Tag 0xDF48": "[]", "MakerNote Tag 0x41CC": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e05e04523b152708dc47dd1176085b5cb98bb7784778aaf4615215af09fe6c30", "phash": "cc9f4cd4b34d1343", "dhash": "7020e0f4e0e0e0e3", "phash_int": -3.7021558922503076e+18, "collected_at": "2026-05-22T04:27:49.410555+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00322.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00322.JPG", "file_name": "DSC00322.JPG", "file_stem": "DSC00322", "file_ext": ".jpg", "file_size": 785883.0, "mtime": "2002-03-07T19:39:24+00:00", "mtime_ts": 1015529964.0, "ctime": "2002-03-07T19:39:24+00:00", "sha256_file": "fb0a1fa389a7feef7f3cd5323e6f0e4c941f9acf25a2a97c3a624916dbe5f0e6", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:39:24", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "4045", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:39:24", "EXIF DateTimeDigitized": "2002:03:07 20:39:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:39:24", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "4045", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x5D56": "[]", "MakerNote Tag 0x0126": "[]", "MakerNote Tag 0x068E": "[]", "MakerNote Tag 0x00DA": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7015c0cc774f0a345837965695515561e28115f6c3fdf0e21de316809d1850f", "phash": "ccb7c993644a91f1", "dhash": "402171e7e6fce1f3", "phash_int": -3.6952633343542185e+18, "collected_at": "2026-05-22T04:27:49.568738+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00323.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00323.JPG", "file_name": "DSC00323.JPG", "file_stem": "DSC00323", "file_ext": ".jpg", "file_size": 801150.0, "mtime": "2002-03-07T19:39:36+00:00", "mtime_ts": 1015529976.0, "ctime": "2002-03-07T19:39:36+00:00", "sha256_file": "ba7f0888d976e295ae8fa0f2d2d6b2d145b6f9e91e4548abcc808175dba15a65", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:39:36", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3104", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:39:36", "EXIF DateTimeDigitized": "2002:03:07 20:39:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:39:36", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3104", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x8020": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0xBB1F": "[]", "MakerNote Tag 0x6563": "[]", "MakerNote Tag 0x9E51": "[]", "MakerNote Tag 0xC01B": "[]", "MakerNote Tag 0x2073": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31ad695a5867719195fbbc992aebc345497530aade30bcc624d8fda20090328b", "phash": "82b06db62db169b5", "dhash": "cecccccccceccceb", "phash_int": -9.029596623659768e+18, "collected_at": "2026-05-22T04:27:49.624739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00324.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00324.JPG", "file_name": "DSC00324.JPG", "file_stem": "DSC00324", "file_ext": ".jpg", "file_size": 829062.0, "mtime": "2002-03-07T19:39:48+00:00", "mtime_ts": 1015529988.0, "ctime": "2002-03-07T19:39:48+00:00", "sha256_file": "7fc543333282b0cd010c3b2a48c3fa2f75ae11c4a8f904f0ed08c1ed027949d4", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:39:48", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3213", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:39:48", "EXIF DateTimeDigitized": "2002:03:07 20:39:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:39:48", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3213", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xC456": "[]", "MakerNote Tag 0x7FEA": "[]", "MakerNote Tag 0x4963": "[]", "MakerNote Tag 0x650A": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0a1a9c91a7826b1ab9b374e4f216bb0641d058aeddfb2738ebd3e8f093fb1e2", "phash": "e9b3461899cf1636", "dhash": "3a8b4f5393ab43a3", "phash_int": -1.60686357056749e+18, "collected_at": "2026-05-22T04:27:49.877947+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00325.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00325.JPG", "file_name": "DSC00325.JPG", "file_stem": "DSC00325", "file_ext": ".jpg", "file_size": 810782.0, "mtime": "2002-03-07T19:39:56+00:00", "mtime_ts": 1015529996.0, "ctime": "2002-03-07T19:39:56+00:00", "sha256_file": "eb548a1ba52cea4b6c86dbd6a249f337189c307d70b18c1e3f140c7fbc491d5f", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:39:56", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3614", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:39:56", "EXIF DateTimeDigitized": "2002:03:07 20:39:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:39:56", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3614", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x2823": "[]", "MakerNote Tag 0x3938": "[]", "MakerNote Tag 0x2495": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bed73fd04a0dfaf02781cbbfe8d4ce89058390d3e9e6a467960f2d8856cccec2", "phash": "ddc03cb2955fe029", "dhash": "a0a0c0c050503032", "phash_int": -2.467905858091098e+18, "collected_at": "2026-05-22T04:27:49.892124+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00326.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00326.JPG", "file_name": "DSC00326.JPG", "file_stem": "DSC00326", "file_ext": ".jpg", "file_size": 822703.0, "mtime": "2002-03-07T19:40:58+00:00", "mtime_ts": 1015530058.0, "ctime": "2002-03-07T19:40:58+00:00", "sha256_file": "bcb514cc1477da450f808480313a2de6c6170add6d40430d3ed31bbe8e812039", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:40:59", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3412", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:40:59", "EXIF DateTimeDigitized": "2002:03:07 20:40:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:40:59", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3412", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x88CC": "[]", "MakerNote Tag 0xC2AA": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "766de539344ca6b3f33152affda414bfe858d14a210aa76e8a80f7a37aa63e2e", "phash": "caf5770a01053f5b", "dhash": "c59181a3d1f1e1c0", "phash_int": -3.822017823903498e+18, "collected_at": "2026-05-22T04:27:50.072130+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00327.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00327.JPG", "file_name": "DSC00327.JPG", "file_stem": "DSC00327", "file_ext": ".jpg", "file_size": 800856.0, "mtime": "2002-03-07T19:41:06+00:00", "mtime_ts": 1015530066.0, "ctime": "2002-03-07T19:41:06+00:00", "sha256_file": "212c7d70665efc77d082c0fbf2d1dce0589c150d8f8361dbecf86e79d395b132", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:41:07", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3127", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:41:07", "EXIF DateTimeDigitized": "2002:03:07 20:41:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:41:07", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3127", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x92C9": "[]", "MakerNote Tag 0x79A7": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df8275f78796f341a3a54830a2d6693acaf3c7ff9a3a1790c0f9af6785036d1b", "phash": "c208f5e53a7a7233", "dhash": "a1e3f1f1c1c08041", "phash_int": -4.465048665660428e+18, "collected_at": "2026-05-22T04:27:50.096443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00328.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00328.JPG", "file_name": "DSC00328.JPG", "file_stem": "DSC00328", "file_ext": ".jpg", "file_size": 813231.0, "mtime": "2002-03-07T19:41:34+00:00", "mtime_ts": 1015530094.0, "ctime": "2002-03-07T19:41:34+00:00", "sha256_file": "b970dfe99b5b7709bbebeeef64d047b5e4909b9a086f14eaf53e53bba24da3be", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:41:35", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3180", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:41:35", "EXIF DateTimeDigitized": "2002:03:07 20:41:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:41:35", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3180", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x453D": "[]", "MakerNote Tag 0xA637": "[]", "MakerNote Tag 0x6E91": "[]", "MakerNote Tag 0x6724": "[]", "MakerNote Tag 0x3E62": "[]", "MakerNote Tag 0x59CA": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a33750d3ecf29be7a21cd353493b78f72bbe3dfdc5e88212c770d7a2ad81c2d", "phash": "dbbb408ec2630f39", "dhash": "59181859786892e0", "phash_int": -2.613424176867635e+18, "collected_at": "2026-05-22T04:27:50.235510+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00330.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00330.JPG", "file_name": "DSC00330.JPG", "file_stem": "DSC00330", "file_ext": ".jpg", "file_size": 824439.0, "mtime": "2002-03-07T19:41:56+00:00", "mtime_ts": 1015530116.0, "ctime": "2002-03-07T19:41:56+00:00", "sha256_file": "b775a10d8d3c0354e548163d3334192b5c6449ce0d3d107c2592be9ed85b8f54", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:41:56", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2240", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:41:56", "EXIF DateTimeDigitized": "2002:03:07 20:41:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:41:56", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2240", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x0AC5": "[]", "MakerNote Tag 0x676C": "[]", "MakerNote Tag 0x2A9D": "[]", "MakerNote Tag 0xC9F9": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91052d99d93a7666c9099abc7940ef2813514fc5c70b8aea09446d62d1ace7dc", "phash": "9c4e8b3965cc992b", "dhash": "703024241438b0f0", "phash_int": -7.183651276972059e+18, "collected_at": "2026-05-22T04:27:50.604199+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00329.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00329.JPG", "file_name": "DSC00329.JPG", "file_stem": "DSC00329", "file_ext": ".jpg", "file_size": 787824.0, "mtime": "2002-03-07T19:41:46+00:00", "mtime_ts": 1015530106.0, "ctime": "2002-03-07T19:41:46+00:00", "sha256_file": "e81f265f00c2c26815b1962ac04798ada6a90482d791c187a3e260b1d19b9b03", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:41:47", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2997", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:41:47", "EXIF DateTimeDigitized": "2002:03:07 20:41:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:41:47", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2997", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xA43E": "", "MakerNote Tag 0xDA4E": "", "MakerNote Tag 0x0752": "[]", "MakerNote Tag 0x4288": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f391c040e2d8d9b9e4fde72c7addfaf977945e1bcee2253e485fe1f3cc90d62", "phash": "c29d1d260dad3d66", "dhash": "7050c0e1ededa5a0", "phash_int": -4.423347209732539e+18, "collected_at": "2026-05-22T04:27:50.662470+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00331.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00331.JPG", "file_name": "DSC00331.JPG", "file_stem": "DSC00331", "file_ext": ".jpg", "file_size": 810825.0, "mtime": "2002-03-07T19:42:30+00:00", "mtime_ts": 1015530150.0, "ctime": "2002-03-07T19:42:30+00:00", "sha256_file": "2871a4e37135d1556007a934e549f87fe046f192ab22f255e1d2d1601745c4ee", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:42:30", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "4242", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:42:30", "EXIF DateTimeDigitized": "2002:03:07 20:42:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:42:30", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "4242", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xA9AA": "[]", "MakerNote Tag 0x2615": "[]", "MakerNote Tag 0xA550": "[]", "MakerNote Tag 0x8824": "[]", "MakerNote Tag 0x7A0C": ""}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e8d1cc11c9d924354e943f23f04bdc4ee82901f2ab8f6a0f1bf5f4b43776a06", "phash": "911b27f21f64c61d", "dhash": "5959b09878cc96d6", "phash_int": -7.990749192976546e+18, "collected_at": "2026-05-22T04:27:50.925388+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00332.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00332.JPG", "file_name": "DSC00332.JPG", "file_stem": "DSC00332", "file_ext": ".jpg", "file_size": 813949.0, "mtime": "2002-03-07T19:42:50+00:00", "mtime_ts": 1015530170.0, "ctime": "2002-03-07T19:42:50+00:00", "sha256_file": "427372bf4bdb47a31425189664d2c7db633d72e2a687364ef91a219797cd3f25", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:42:51", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2985", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:42:51", "EXIF DateTimeDigitized": "2002:03:07 20:42:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:42:51", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2985", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xEC23": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x7C11": "[]", "MakerNote Tag 0x7003": "[]", "MakerNote Tag 0xDC2E": "[]", "MakerNote Tag 0xD7F9": "[]", "MakerNote Tag 0x144E": "[]", "MakerNote Tag 0x3ED4": "[]", "MakerNote Tag 0x234D": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1317a6e73a1cf10bcf3c12632d8e0d104402ce0f6dfd692cda4cca09632a65b", "phash": "9d2f3f6340ea5a0a", "dhash": "797c3cbcbc9c3c3c", "phash_int": -7.120402790326052e+18, "collected_at": "2026-05-22T04:27:50.938597+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00333.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00333.JPG", "file_name": "DSC00333.JPG", "file_stem": "DSC00333", "file_ext": ".jpg", "file_size": 816531.0, "mtime": "2002-03-07T19:43:06+00:00", "mtime_ts": 1015530186.0, "ctime": "2002-03-07T19:43:06+00:00", "sha256_file": "61f5aec65178085f61b58811fccf6bc0f9c7b1ef69784c0fb643b673f7770407", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:43:06", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "4175", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:43:06", "EXIF DateTimeDigitized": "2002:03:07 20:43:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:43:06", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "4175", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xEE58": "[]", "MakerNote Tag 0x6567": "[]", "MakerNote Tag 0x02B3": "[]", "MakerNote Tag 0xB259": "[]", "MakerNote Tag 0xB982": "[]", "MakerNote Tag 0xC72E": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a08559f04548f0830ce95565a7a83adcc5f73cc6a9e7d0701d7448ea7bbe9ec8", "phash": "901b60db3de4ce9c", "dhash": "d9d9b0b2784c8496", "phash_int": -8.062744213124231e+18, "collected_at": "2026-05-22T04:27:51.188489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00335.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00335.JPG", "file_name": "DSC00335.JPG", "file_stem": "DSC00335", "file_ext": ".jpg", "file_size": 801993.0, "mtime": "2002-03-07T19:43:42+00:00", "mtime_ts": 1015530222.0, "ctime": "2002-03-07T19:43:42+00:00", "sha256_file": "beadd0570fbb9a9c808fe593a075802b9694335e3e24daad258b6534ea88dba7", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:43:43", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3049", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:43:43", "EXIF DateTimeDigitized": "2002:03:07 20:43:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:43:43", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3049", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x3183": "[]", "MakerNote Tag 0xCAB4": "[]", "MakerNote Tag 0xC0FB": "[]", "MakerNote Tag 0x3930": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea4321286a26a653ad60ce7f153012c65e5cb8bddd4867c31a095f8aff2a47cf", "phash": "db5c24943597368e", "dhash": "20a1405820286003", "phash_int": -2.6401950625730913e+18, "collected_at": "2026-05-22T04:27:51.616701+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00334.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00334.JPG", "file_name": "DSC00334.JPG", "file_stem": "DSC00334", "file_ext": ".jpg", "file_size": 807490.0, "mtime": "2002-03-07T19:43:22+00:00", "mtime_ts": 1015530202.0, "ctime": "2002-03-07T19:43:22+00:00", "sha256_file": "1cf3058e24de8eec1ae460f697a2088431fb122f0d1348455e8c1792a60bb220", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:43:22", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3569", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "250", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:43:22", "EXIF DateTimeDigitized": "2002:03:07 20:43:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "137/10", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:43:22", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3569", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x8E8C": "[]", "MakerNote Tag 0x8899": "", "MakerNote Tag 0x311F": "[]", "MakerNote Tag 0x3F6C": "[]", "MakerNote Tag 0xB1E7": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26e296bbf46ec4d582145527f46ab1ea45fd94e5855451ee6c40c0de34de5620", "phash": "9808683d95f6b96e", "dhash": "b3b7b3f0713d2d6d", "phash_int": -7.491623366412552e+18, "collected_at": "2026-05-22T04:27:51.623703+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00337.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00337.JPG", "file_name": "DSC00337.JPG", "file_stem": "DSC00337", "file_ext": ".jpg", "file_size": 739950.0, "mtime": "2002-03-07T19:44:26+00:00", "mtime_ts": 1015530266.0, "ctime": "2002-03-07T19:44:26+00:00", "sha256_file": "8de7cf0d7baa3df3f595cc20c5579e3daa4781d946b9665305ea294601fecba7", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:44:27", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2417", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:44:27", "EXIF DateTimeDigitized": "2002:03:07 20:44:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:44:27", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2417", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xADDD": "[]", "MakerNote Tag 0x74FC": "[]", "MakerNote Tag 0x8BC6": "[]", "MakerNote Tag 0x480D": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac176b4b49c27378e512008ef47f45e951d32075befbaf3af31f5cd1ade41639", "phash": "f14e19898eb296b9", "dhash": "b0180c0c18181818", "phash_int": -1.0588807837902053e+18, "collected_at": "2026-05-22T04:27:51.859711+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00336.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00336.JPG", "file_name": "DSC00336.JPG", "file_stem": "DSC00336", "file_ext": ".jpg", "file_size": 837467.0, "mtime": "2002-03-07T19:44:06+00:00", "mtime_ts": 1015530246.0, "ctime": "2002-03-07T19:44:06+00:00", "sha256_file": "7cfd3d06320aa6a8da5b5b206f8693f60eea35eff60300b8014fdd51fd737d6f", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:44:07", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2985", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:44:07", "EXIF DateTimeDigitized": "2002:03:07 20:44:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:44:07", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2985", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xD250": "", "MakerNote Tag 0xCA5E": "[]", "MakerNote Tag 0x6F1F": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2bc62394d2e94bcd541f0ff3b757449218e4582862ef5898a6d2a6b84e6e134", "phash": "fbb4362a496b4f80", "dhash": "3d3c1a5353535313", "phash_int": -3.095629191334258e+17, "collected_at": "2026-05-22T04:27:52.215417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00338.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00338.JPG", "file_name": "DSC00338.JPG", "file_stem": "DSC00338", "file_ext": ".jpg", "file_size": 791118.0, "mtime": "2002-03-07T19:44:46+00:00", "mtime_ts": 1015530286.0, "ctime": "2002-03-07T19:44:46+00:00", "sha256_file": "79b9763422967fa4736499ad1023d1af20ea34d0775751cfc2c3d0852b1eaf64", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:44:46", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3188", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:44:46", "EXIF DateTimeDigitized": "2002:03:07 20:44:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:44:46", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3188", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x7BE5": "[]", "MakerNote Tag 0x1831": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bae47ef0ea8dac74a8f30fbc599afd044e3d5aa278d6a3e00c7f91a64ff08287", "phash": "b4cf70a0c79931ea", "dhash": "e5a76e74acbcbcbc", "phash_int": -5.417987990857634e+18, "collected_at": "2026-05-22T04:27:52.221418+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00339.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00339.JPG", "file_name": "DSC00339.JPG", "file_stem": "DSC00339", "file_ext": ".jpg", "file_size": 821989.0, "mtime": "2002-03-07T19:45:04+00:00", "mtime_ts": 1015530304.0, "ctime": "2002-03-07T19:45:04+00:00", "sha256_file": "40c27d538ffff4002bf323859667e9877b2c15ffc0966e49b2f96c0d515f3fde", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:45:05", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3578", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:45:05", "EXIF DateTimeDigitized": "2002:03:07 20:45:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:45:05", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3578", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x478A": "[]", "MakerNote Tag 0x959E": "[]", "MakerNote Tag 0x6919": "[]", "MakerNote Tag 0x0CB0": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93cec7a61cf5d981960305000829337ae7de6a53bcb43e368349c7ba4d2bf115", "phash": "d0cf8fab39344646", "dhash": "8a18141c181c1c98", "phash_int": -3.4003412280795284e+18, "collected_at": "2026-05-22T04:27:52.517464+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\DSC00341.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\DSC00341.JPG", "file_name": "DSC00341.JPG", "file_stem": "DSC00341", "file_ext": ".jpg", "file_size": 833045.0, "mtime": "2002-03-07T19:45:38+00:00", "mtime_ts": 1015530338.0, "ctime": "2002-03-07T19:45:38+00:00", "sha256_file": "a3b9499971a31b85bb08be1e174f6859a347e58e150d6c5f80f22da97dc8fb97", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:45:39", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3109", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:45:39", "EXIF DateTimeDigitized": "2002:03:07 20:45:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:07 20:45:39", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3109", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x8E03": "[]", "MakerNote Tag 0x8691": "[]", "MakerNote Tag 0x5A13": "[]", "MakerNote Tag 0xE1B3": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d177f005bc612a518e064c8958d4ec05ec7fc63c32621f032c00619e18d6faf5", "phash": "c0bb06bf1964cb6c", "dhash": "c1c1c1c0c1c1c4c0", "phash_int": -4.559042779947939e+18, "collected_at": "2026-05-22T04:27:52.540465+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\Rotation of DSC00329.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\Rotation of DSC00329.JPG", "file_name": "Rotation of DSC00329.JPG", "file_stem": "Rotation of DSC00329", "file_ext": ".jpg", "file_size": 783960.0, "mtime": "2003-01-22T22:26:48+00:00", "mtime_ts": 1043274408.0, "ctime": "2003-01-22T22:26:48+00:00", "sha256_file": "8d757b7a7012ff6f5413f6353189e231a6f5732c93382f1958a82f81ffd21f14", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:41:47", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "217", "Thumbnail JPEGInterchangeFormat": "671", "Thumbnail JPEGInterchangeFormatLength": "3575", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:41:47", "EXIF DateTimeDigitized": "2002:03:07 20:41:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 3, 0, 3, 1, 3, 0, 1, 0, 0, 0, 6, 0, 0]", "MakerNote Tag 0x0000": "[]", "MakerNote Tag 0x002A": "[]", "MakerNote Tag 0x84A2": "[]", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x1F00": "[]", "MakerNote Tag 0x0190": "[]", "MakerNote Tag 0xDC75": "[]", "MakerNote Tag 0x026B": "[]", "MakerNote Tag 0x9DB5": "[]", "MakerNote Tag 0x2575": "[]", "MakerNote Tag 0xFAE2": "[]"}, "format": "JPEG", "mode": "RGB", "width": 1536.0, "height": 2048.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19ced6f1644decbc7a7d319b0a3f2027ce41c607552fb19827b46bbc0de9e008", "phash": "91d446373b2ec43b", "dhash": "d8d0e0db5aea2be9", "phash_int": -7.938643040117276e+18, "collected_at": "2026-05-22T04:27:52.814937+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-07\\Rotation of DSC00320.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-07\\Rotation of DSC00320.JPG", "file_name": "Rotation of DSC00320.JPG", "file_stem": "Rotation of DSC00320", "file_ext": ".jpg", "file_size": 807348.0, "mtime": "2003-01-22T22:25:10+00:00", "mtime_ts": 1043274310.0, "ctime": "2003-01-22T22:25:10+00:00", "sha256_file": "e275863012a93d4ad0782404c395fb3df1002b592426d9da9b0ce005a96f964c", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:07 20:38:42", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "217", "Thumbnail JPEGInterchangeFormat": "671", "Thumbnail JPEGInterchangeFormatLength": "3927", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:07 20:38:42", "EXIF DateTimeDigitized": "2002:03:07 20:38:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 3, 0, 3, 1, 3, 0, 1, 0, 0, 0, 6, 0, 0]", "MakerNote Tag 0x0000": "[]", "MakerNote Tag 0x002A": "[]", "MakerNote Tag 0x84A2": "[]", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0008": "[]", "MakerNote Tag 0x052A": "[]", "MakerNote Tag 0x0303": "[]", "MakerNote Tag 0x869B": "[]", "MakerNote Tag 0xB783": "", "MakerNote Tag 0x7063": "[]", "MakerNote Tag 0xB65F": "[]", "MakerNote Tag 0xA8C8": "[]", "MakerNote Tag 0x0D7D": "[]"}, "format": "JPEG", "mode": "RGB", "width": 1536.0, "height": 2048.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac6bb809ad82b9ec7cda8cb2f3bd0fc1bccdb2e8b4635e9e2f871de3ee7b89ee", "phash": "c35f52993d89c03e", "dhash": "70484cf276c8f2f4", "phash_int": -4.36868229541018e+18, "collected_at": "2026-05-22T04:27:52.845118+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-13\\DSC00003.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-13\\DSC00003.JPG", "file_name": "DSC00003.JPG", "file_stem": "DSC00003", "file_ext": ".jpg", "file_size": 1445039.0, "mtime": "2002-03-13T18:45:06+00:00", "mtime_ts": 1016045106.0, "ctime": "2002-03-13T18:45:06+00:00", "sha256_file": "9aaf999c761730f8db4c0454bf10827dd0dd3ffcd59075d77394b1778fc72157", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:13 19:45:07", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "4541", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:13 19:45:07", "EXIF DateTimeDigitized": "2002:03:13 19:45:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:13 19:45:07", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "4541", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xE39C": "[]", "MakerNote Tag 0xE2CD": "[]", "MakerNote Tag 0xD22E": "[]", "MakerNote Tag 0xCCD2": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e61f432d0fb4eef76d2ec742dde481a38c22dc8044ce820af425161957ab0e9", "phash": "d6ea152cb8b192b9", "dhash": "3a24888925acca78", "phash_int": -2.9605305232212905e+18, "collected_at": "2026-05-22T04:27:53.276271+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-13\\DSC00002.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-13\\DSC00002.JPG", "file_name": "DSC00002.JPG", "file_stem": "DSC00002", "file_ext": ".jpg", "file_size": 1356308.0, "mtime": "2002-03-13T18:43:50+00:00", "mtime_ts": 1016045030.0, "ctime": "2002-03-13T18:43:50+00:00", "sha256_file": "3167c6c032b08be2ff8ad1393f673efeab34274557df2216ee1ed82b910a3288", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:13 19:43:50", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3561", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:13 19:43:50", "EXIF DateTimeDigitized": "2002:03:13 19:43:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:13 19:43:50", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3561", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x4126": "[]", "MakerNote Tag 0xC430": "", "MakerNote Tag 0x81B3": "[]", "MakerNote Tag 0x395E": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f004f43f98a6d51050755d62d9b063e764da4b3a902f28c37336a1ecee6b459", "phash": "c8bfd74c39a4d308", "dhash": "c2d2d396b3b09412", "phash_int": -3.9812268231876393e+18, "collected_at": "2026-05-22T04:27:53.336271+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-13\\DSC00004.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-13\\DSC00004.JPG", "file_name": "DSC00004.JPG", "file_stem": "DSC00004", "file_ext": ".jpg", "file_size": 1469336.0, "mtime": "2002-03-13T18:45:14+00:00", "mtime_ts": 1016045114.0, "ctime": "2002-03-13T18:45:14+00:00", "sha256_file": "bf40d659cc3b994ccfae09579d5f9c9c58b0a6070952cd3bac9df509a447d844", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:13 19:45:15", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3817", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:13 19:45:15", "EXIF DateTimeDigitized": "2002:03:13 19:45:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:13 19:45:15", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3817", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x97EB": "[]", "MakerNote Tag 0x452C": "[]", "MakerNote Tag 0x07A4": "[]", "MakerNote Tag 0x4192": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3e25bd896f93285c93044913f4e7dc2994ebfa74a4403223c43e4bbe0d2c7c8", "phash": "d48fe3520dcce923", "dhash": "d0c0d232b098a484", "phash_int": -3.130033274440849e+18, "collected_at": "2026-05-22T04:27:53.547603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00006.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00006.JPG", "file_name": "DSC00006.JPG", "file_stem": "DSC00006", "file_ext": ".jpg", "file_size": 1110903.0, "mtime": "2002-03-14T15:34:42+00:00", "mtime_ts": 1016120082.0, "ctime": "2002-03-14T15:34:42+00:00", "sha256_file": "e1624ef31625c901c3137b9b273fb611a94a7f3f810364a08c663000dd9d5725", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:34:43", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2262", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:34:43", "EXIF DateTimeDigitized": "2002:03:14 16:34:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:34:43", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2262", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0C51": "[]", "MakerNote Tag 0xE378": "[]", "MakerNote Tag 0x59B1": "[]", "MakerNote Tag 0xC897": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd34c7b07cb690ced05e4d5a722a37d0bb19739f4eb3ec306cab493002cb3c50", "phash": "8d8639b76b30ce31", "dhash": "bce0e0f0f0e09813", "phash_int": -8.248842207542325e+18, "collected_at": "2026-05-22T04:27:53.902460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-13\\DSC00005.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-13\\DSC00005.JPG", "file_name": "DSC00005.JPG", "file_stem": "DSC00005", "file_ext": ".jpg", "file_size": 1414864.0, "mtime": "2002-03-13T18:45:22+00:00", "mtime_ts": 1016045122.0, "ctime": "2002-03-13T18:45:22+00:00", "sha256_file": "f82237d159a198bf27248591dde7224a24258aa61c7d0c6589090d780d9ccefe", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:13 19:45:22", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "4594", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:13 19:45:22", "EXIF DateTimeDigitized": "2002:03:13 19:45:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:13 19:45:22", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "4594", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x6C29": ""}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc9619c1c525da835c89a4d775e1afebf1f64e1c7a0dca5b0f030b5ac12f2d0b", "phash": "d9af84c09ed0cb39", "dhash": "c3523a38109094b8", "phash_int": -2.7608420837217536e+18, "collected_at": "2026-05-22T04:27:53.953460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00007.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00007.JPG", "file_name": "DSC00007.JPG", "file_stem": "DSC00007", "file_ext": ".jpg", "file_size": 1217562.0, "mtime": "2002-03-14T15:34:56+00:00", "mtime_ts": 1016120096.0, "ctime": "2002-03-14T15:34:56+00:00", "sha256_file": "6194722151b3cf8b4b48de5c61edc83f17e9bef0852012f0fbe0c3994131d96b", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:34:57", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2583", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:34:57", "EXIF DateTimeDigitized": "2002:03:14 16:34:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:34:57", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2583", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x95B1": "[]", "MakerNote Tag 0x412E": "[]", "MakerNote Tag 0x18CC": "[]", "MakerNote Tag 0x0F79": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f824190adc9c3cf9901b90d7be4680e022ad56ce0fe6156e31f3986845deeb65", "phash": "c46d2b3b1ba3266c", "dhash": "73f3e6d0f0ecccec", "phash_int": -4.292727336947473e+18, "collected_at": "2026-05-22T04:27:54.221551+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00008.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00008.JPG", "file_name": "DSC00008.JPG", "file_stem": "DSC00008", "file_ext": ".jpg", "file_size": 1154896.0, "mtime": "2002-03-14T15:35:04+00:00", "mtime_ts": 1016120104.0, "ctime": "2002-03-14T15:35:04+00:00", "sha256_file": "21b582f57a4d8d8a850373b08b5ba21d70dab146967f90efcd8f41e7db7214c9", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:35:04", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "1941", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:35:04", "EXIF DateTimeDigitized": "2002:03:14 16:35:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:35:04", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "1941", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x6743": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xB78C": "[]", "MakerNote Tag 0x3923": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "542a1ceab509a6bdf1aeaf0003cb00a48a519f72669e69377c9758e9f1e34c80", "phash": "9f1f25e1f0e01e1c", "dhash": "f878793130d8f0f0", "phash_int": -6.98081924506189e+18, "collected_at": "2026-05-22T04:27:54.233717+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00010.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00010.JPG", "file_name": "DSC00010.JPG", "file_stem": "DSC00010", "file_ext": ".jpg", "file_size": 1339376.0, "mtime": "2002-03-14T15:41:24+00:00", "mtime_ts": 1016120484.0, "ctime": "2002-03-14T15:41:24+00:00", "sha256_file": "24b0749180a7be31610013b4208fb80770a848e962e44c7f66f4a314e429ac55", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:41:25", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3631", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:41:25", "EXIF DateTimeDigitized": "2002:03:14 16:41:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:41:25", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3631", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b793de10380e7f7aeb60bdb00b487fc00e56fc5806ff516e0663dec70466152", "phash": "94f468dc406a5bcf", "dhash": "34247c3c7c7474f8", "phash_int": -7.713424966596011e+18, "collected_at": "2026-05-22T04:27:54.438303+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00011.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00011.JPG", "file_name": "DSC00011.JPG", "file_stem": "DSC00011", "file_ext": ".jpg", "file_size": 1313815.0, "mtime": "2002-03-14T15:45:56+00:00", "mtime_ts": 1016120756.0, "ctime": "2002-03-14T15:45:56+00:00", "sha256_file": "476bef71751583abf15a3a243e28a220972a359e7da69cee2c885fb18f235c06", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:45:56", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2806", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:45:56", "EXIF DateTimeDigitized": "2002:03:14 16:45:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:45:56", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2806", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xA58F": "[]", "MakerNote Tag 0x43AE": "[]", "MakerNote Tag 0xC68C": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "040805a94d180df4c6e8c4c5f15d9c8fbcbbb62e81521fa1b224a623d38c65a7", "phash": "deaf3563071d700a", "dhash": "c6233170e180f0e0", "phash_int": -2.400641376927781e+18, "collected_at": "2026-05-22T04:27:54.730698+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00009.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00009.JPG", "file_name": "DSC00009.JPG", "file_stem": "DSC00009", "file_ext": ".jpg", "file_size": 1307033.0, "mtime": "2002-03-14T15:41:12+00:00", "mtime_ts": 1016120472.0, "ctime": "2002-03-14T15:41:12+00:00", "sha256_file": "725c23633251d93fbfb3dd880114fa2e54b550a17d33321d95b426194d23e94b", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:41:13", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2640", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:41:13", "EXIF DateTimeDigitized": "2002:03:14 16:41:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:41:13", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2640", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x9AEF": "", "MakerNote Tag 0x77F7": "[]", "MakerNote Tag 0x06A6": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "881bde1aa289be18b3ebe0339bf7f4a6ddad9b6a5da925dae8765a04d2def801", "phash": "c7823a55383c5a3f", "dhash": "c0c2c2c242425643", "phash_int": -4.0706269754993966e+18, "collected_at": "2026-05-22T04:27:54.803702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00012.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00012.JPG", "file_name": "DSC00012.JPG", "file_stem": "DSC00012", "file_ext": ".jpg", "file_size": 1264879.0, "mtime": "2002-03-14T15:46:18+00:00", "mtime_ts": 1016120778.0, "ctime": "2002-03-14T15:46:18+00:00", "sha256_file": "a586527d84292473339e528b1a13021b2bd49f821c4b9b49a43bb99833c0c9d5", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:46:19", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2837", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:46:19", "EXIF DateTimeDigitized": "2002:03:14 16:46:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:46:19", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2837", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x2CC9": "[]", "MakerNote Tag 0x04A4": "[]", "MakerNote Tag 0x2723": "[]", "MakerNote Tag 0xDC0D": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69f92417676d2f40b9117442e115e670f8a5a2c4d04151ffccc1fe3e3cd766ab", "phash": "ea8134c23c694fdb", "dhash": "b88043e3c181012a", "phash_int": -1.5488987879969055e+18, "collected_at": "2026-05-22T04:27:54.986095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00013.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00013.JPG", "file_name": "DSC00013.JPG", "file_stem": "DSC00013", "file_ext": ".jpg", "file_size": 1346372.0, "mtime": "2002-03-14T15:46:38+00:00", "mtime_ts": 1016120798.0, "ctime": "2002-03-14T15:46:38+00:00", "sha256_file": "324604355f53ffb155c6c1f326a6135958dcef6110bf34be416df4c705b480f9", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:46:39", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3128", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:46:39", "EXIF DateTimeDigitized": "2002:03:14 16:46:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:46:39", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3128", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x1504": "[]", "MakerNote Tag 0x3C6E": "[]", "MakerNote Tag 0x8B4A": "[]", "MakerNote Tag 0x052A": "[]", "MakerNote Tag 0xDE0F": "[]", "MakerNote Tag 0x39D8": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf2b545f4b120d285a98b5ff96f07c793ef448ebe4fd51c6130ce14f6c8c454d", "phash": "86f4cd3a4b3a71a1", "dhash": "e0e4c4e0e0ece4e0", "phash_int": -8.72212092805589e+18, "collected_at": "2026-05-22T04:27:55.089169+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00014.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00014.JPG", "file_name": "DSC00014.JPG", "file_stem": "DSC00014", "file_ext": ".jpg", "file_size": 1287726.0, "mtime": "2002-03-14T15:47:18+00:00", "mtime_ts": 1016120838.0, "ctime": "2002-03-14T15:47:18+00:00", "sha256_file": "c1ca9d7c6386635106b297afd6927110a461232c2d2ca4d83f1de5cc06405d9f", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:47:19", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2811", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:47:19", "EXIF DateTimeDigitized": "2002:03:14 16:47:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:47:19", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2811", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x621B": "[]", "MakerNote Tag 0xBE33": "[]", "MakerNote Tag 0x293F": "[]", "MakerNote Tag 0xA33C": "[]", "MakerNote Tag 0x5F2A": "[]", "MakerNote Tag 0xBEDF": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2b04d04d195c0dfe8c6d49cb74fe5c20642407333eaa2f5df500d569364b639", "phash": "e8b5419b15d558ae", "dhash": "3e9f85a4a1818381", "phash_int": -1.678363151783602e+18, "collected_at": "2026-05-22T04:27:55.238219+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00015.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00015.JPG", "file_name": "DSC00015.JPG", "file_stem": "DSC00015", "file_ext": ".jpg", "file_size": 1149436.0, "mtime": "2002-03-14T15:47:30+00:00", "mtime_ts": 1016120850.0, "ctime": "2002-03-14T15:47:30+00:00", "sha256_file": "df9434590d9edb2908ca5a4c935faff61f430eed74eb892622da5b5095ab4585", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:47:31", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2565", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:47:31", "EXIF DateTimeDigitized": "2002:03:14 16:47:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:47:31", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2565", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x72D3": "[]", "MakerNote Tag 0xC21F": "[]", "MakerNote Tag 0x4325": "[]", "MakerNote Tag 0x6562": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74ba90544548725cb975176bf3061eff21b951ed6271c8b35ef7192e3d4e533c", "phash": "a8d3452fdb081767", "dhash": "82061a393b6fe7e7", "phash_int": -6.28160098341119e+18, "collected_at": "2026-05-22T04:27:55.248318+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00017.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00017.JPG", "file_name": "DSC00017.JPG", "file_stem": "DSC00017", "file_ext": ".jpg", "file_size": 1254982.0, "mtime": "2002-03-14T15:48:08+00:00", "mtime_ts": 1016120888.0, "ctime": "2002-03-14T15:48:08+00:00", "sha256_file": "cf06431b85d5ff36d7bcaddfe475e79606b836c52b1b3dad23def94a2596bd26", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:48:09", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2935", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:48:09", "EXIF DateTimeDigitized": "2002:03:14 16:48:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:48:09", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2935", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0x69C6": "[]", "MakerNote Tag 0x91A1": "[]", "MakerNote Tag 0x6719": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dca91e53e98c388854cf03cb2b3685a0eba4a4680260caf2318e2b379f39d4e1", "phash": "87b9238c638c4afe", "dhash": "f6ee6eeeeee6ee6e", "phash_int": -8.666856922025276e+18, "collected_at": "2026-05-22T04:27:55.427834+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00018.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00018.JPG", "file_name": "DSC00018.JPG", "file_stem": "DSC00018", "file_ext": ".jpg", "file_size": 1266880.0, "mtime": "2002-03-14T15:48:30+00:00", "mtime_ts": 1016120910.0, "ctime": "2002-03-14T15:48:30+00:00", "sha256_file": "e85d54ab7ea653d7fb7ac4514f945a94d50107d2ce869caf29f0616b1e45c344", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:48:30", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3007", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:48:30", "EXIF DateTimeDigitized": "2002:03:14 16:48:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:48:30", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3007", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0006": "[]", "MakerNote Tag 0xB970": "[]", "MakerNote Tag 0x6574": "[]", "MakerNote Tag 0xD03C": "[]", "MakerNote Tag 0x3215": "[]", "MakerNote Tag 0x0BF3": "[]", "MakerNote Tag 0x854B": "[]", "MakerNote Tag 0x1980": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29599b9f015e7049eeeabedb68341366d05451a5d3f0d344c263b733e8989e33", "phash": "c0a87f0720fdf51a", "dhash": "f0f0a0a2ece85018", "phash_int": -4.5642585537449846e+18, "collected_at": "2026-05-22T04:27:55.742848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00016.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00016.JPG", "file_name": "DSC00016.JPG", "file_stem": "DSC00016", "file_ext": ".jpg", "file_size": 1264543.0, "mtime": "2002-03-14T15:47:42+00:00", "mtime_ts": 1016120862.0, "ctime": "2002-03-14T15:47:42+00:00", "sha256_file": "190fd3e60dc7339150478805634a10ffcf7994d33f44951febc54e624f897da2", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:47:42", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2547", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:47:42", "EXIF DateTimeDigitized": "2002:03:14 16:47:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:47:42", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2547", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xE731": "[]", "MakerNote Tag 0x68C3": "[]", "MakerNote Tag 0x0CA3": "[]", "MakerNote Tag 0x75B4": "[]", "MakerNote Tag 0x4E70": "", "MakerNote Tag 0x23C8": "[]", "MakerNote Tag 0x3FC3": "[]", "MakerNote Tag 0x2A21": "[]", "MakerNote Tag 0xA84B": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06fe7d20be17c69391b37cf5c7f32a9a7a5542624359bcae35b367886a50a1f5", "phash": "d29ec16a7dd12b60", "dhash": "f8fcfcf03161c8d0", "phash_int": -3.269963616302847e+18, "collected_at": "2026-05-22T04:27:55.791848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00019.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00019.JPG", "file_name": "DSC00019.JPG", "file_stem": "DSC00019", "file_ext": ".jpg", "file_size": 1179241.0, "mtime": "2002-03-14T15:48:38+00:00", "mtime_ts": 1016120918.0, "ctime": "2002-03-14T15:48:38+00:00", "sha256_file": "577b278e01d0150aedcba9d251b38f548ff7ef47be0de1467ae2f30337276db6", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:48:38", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2821", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:48:38", "EXIF DateTimeDigitized": "2002:03:14 16:48:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:48:38", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2821", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0231": "[]", "MakerNote Tag 0xACCD": "[]", "MakerNote Tag 0x4F3B": "[]", "MakerNote Tag 0x9054": "[]", "MakerNote Tag 0xD958": "[]", "MakerNote Tag 0x1827": "[]", "MakerNote Tag 0x2CCF": "[]", "MakerNote Tag 0x291C": "[]", "MakerNote Tag 0xB785": "[]", "MakerNote Tag 0x6A24": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0326bb3191fab99cdcc9de1ba06ee943b0fef0f1be38ef5130a2f5b7f1c3d2d0", "phash": "a8c346c311cf7c9d", "dhash": "cd99131b191de7be", "phash_int": -6.286102851247703e+18, "collected_at": "2026-05-22T04:27:55.970022+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00020.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00020.JPG", "file_name": "DSC00020.JPG", "file_stem": "DSC00020", "file_ext": ".jpg", "file_size": 1210796.0, "mtime": "2002-03-14T15:48:46+00:00", "mtime_ts": 1016120926.0, "ctime": "2002-03-14T15:48:46+00:00", "sha256_file": "a58b8ee65de50568e75b4aa11dc46fabb28a7fa837dffaf242562f8ac47e0535", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:48:46", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3353", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:48:46", "EXIF DateTimeDigitized": "2002:03:14 16:48:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:48:46", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3353", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x7923": "[]", "MakerNote Tag 0x8058": "[]", "MakerNote Tag 0xB1A4": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40cf97715dba2f094ba1eaf5e27c3a0bf13bb9decd5d011852b9beb70662ed5f", "phash": "e7b5518aa81e39d4", "dhash": "cfce8e4fcdc9c8ca", "phash_int": -1.7504032241956797e+18, "collected_at": "2026-05-22T04:27:56.025018+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00021.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00021.JPG", "file_name": "DSC00021.JPG", "file_stem": "DSC00021", "file_ext": ".jpg", "file_size": 1306742.0, "mtime": "2002-03-14T15:49:44+00:00", "mtime_ts": 1016120984.0, "ctime": "2002-03-14T15:49:44+00:00", "sha256_file": "1e5c492f89d8b1c8ac97dd38c8e470cebde4a183608e63ade5a333f10f9585a7", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:49:44", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3023", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "120", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:49:44", "EXIF DateTimeDigitized": "2002:03:14 16:49:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:49:44", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3023", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x91D4": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fe6213c7f17d408be27a111cced91a31ed9e7d629514f33574cd619e0624e63", "phash": "d8e75c24956b9469", "dhash": "e0f15151f0adb3b0", "phash_int": -2.8171817297015224e+18, "collected_at": "2026-05-22T04:27:56.268441+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00023.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00023.JPG", "file_name": "DSC00023.JPG", "file_stem": "DSC00023", "file_ext": ".jpg", "file_size": 1169522.0, "mtime": "2002-03-14T15:50:10+00:00", "mtime_ts": 1016121010.0, "ctime": "2002-03-14T15:50:10+00:00", "sha256_file": "e6d2ee874df43d244976938ebe0d95a1d0659236e19eb9fffe8b16f08b488adf", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:50:11", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2496", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:50:11", "EXIF DateTimeDigitized": "2002:03:14 16:50:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:50:11", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2496", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x7984": "[]", "MakerNote Tag 0xF836": "[]", "MakerNote Tag 0xE50D": "[]", "MakerNote Tag 0x8032": "[]", "MakerNote Tag 0xDB7C": "[]", "MakerNote Tag 0x80F2": "[]", "MakerNote Tag 0xB6E8": "[]", "MakerNote Tag 0x0854": "[]", "MakerNote Tag 0x95B3": "[]", "MakerNote Tag 0x8092": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e51c08d076e32e5c3d96e2a320ddfbd6ce50885c0b478e660fdb5db9d9df08f", "phash": "94ca11e499669b7e", "dhash": "b4b4a4a4b4a4acdc", "phash_int": -7.72534253727681e+18, "collected_at": "2026-05-22T04:27:56.545560+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00022.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00022.JPG", "file_name": "DSC00022.JPG", "file_stem": "DSC00022", "file_ext": ".jpg", "file_size": 1243514.0, "mtime": "2002-03-14T15:50:00+00:00", "mtime_ts": 1016121000.0, "ctime": "2002-03-14T15:50:00+00:00", "sha256_file": "ebe2448f3444e5ec0955ff43cfb07ba42ff0dd24ad36cf05a8129d7b98a07aae", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:50:00", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2628", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:50:00", "EXIF DateTimeDigitized": "2002:03:14 16:50:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:50:00", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2628", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0xEC86": "", "MakerNote Tag 0x7003": "[]", "MakerNote Tag 0xE936": "[]", "MakerNote Tag 0x796E": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6cd1a7c63a5b4986905d91006397c2e4fa3f3877773019fd02bce61251d8450d", "phash": "d9c12ec65b99c926", "dhash": "9094929a98b02c2c", "phash_int": -2.755870067498825e+18, "collected_at": "2026-05-22T04:27:56.657224+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00024.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00024.JPG", "file_name": "DSC00024.JPG", "file_stem": "DSC00024", "file_ext": ".jpg", "file_size": 1387437.0, "mtime": "2002-03-14T15:51:50+00:00", "mtime_ts": 1016121110.0, "ctime": "2002-03-14T15:51:50+00:00", "sha256_file": "5eb319a3b6e3e8771868fbb57b6e91039104186ed4e2c9d8cac42f2aedffd8c4", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:51:51", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3245", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:51:51", "EXIF DateTimeDigitized": "2002:03:14 16:51:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:51:51", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3245", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x20AE": "[]", "MakerNote Tag 0x54A1": "[]", "MakerNote Tag 0xAF46": "[]", "MakerNote Tag 0xC502": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "269e0f00f3c24b73dc2ea57bc281b5b03fdd55e4c757ce41dfa1a9d1a7719eba", "phash": "81d232c3343cfe3d", "dhash": "c8c87a72d2ca72ce", "phash_int": -9.092148883731186e+18, "collected_at": "2026-05-22T04:27:56.785283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00026.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00026.JPG", "file_name": "DSC00026.JPG", "file_stem": "DSC00026", "file_ext": ".jpg", "file_size": 1196284.0, "mtime": "2002-03-14T15:53:38+00:00", "mtime_ts": 1016121218.0, "ctime": "2002-03-14T15:53:38+00:00", "sha256_file": "d77e4a51349da30a56b2c38df1cafb680b5be9407af4309d782f08c87af124dd", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:53:38", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2510", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:53:38", "EXIF DateTimeDigitized": "2002:03:14 16:53:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:53:38", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2510", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x696E": "[]", "MakerNote Tag 0xAF17": "[]", "MakerNote Tag 0x27F3": "[]", "MakerNote Tag 0x1136": "[]", "MakerNote Tag 0xD688": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b455e108b686724b2097db95ca1ab5dc36b321ccf2bc461335d669dcc17138b", "phash": "fecb34782d4a254a", "dhash": "3131313131252527", "phash_int": -8.69180770430389e+16, "collected_at": "2026-05-22T04:27:57.073393+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00025.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00025.JPG", "file_name": "DSC00025.JPG", "file_stem": "DSC00025", "file_ext": ".jpg", "file_size": 1300259.0, "mtime": "2002-03-14T15:52:14+00:00", "mtime_ts": 1016121134.0, "ctime": "2002-03-14T15:52:14+00:00", "sha256_file": "76499dc89a0ceb8a8bafc22bc8b18253f25a70a20587d4bd175c36812f9b61f5", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:52:15", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3525", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "120", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:52:15", "EXIF DateTimeDigitized": "2002:03:14 16:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:52:15", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3525", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xED82": "[]", "MakerNote Tag 0xEFD6": "[]", "MakerNote Tag 0x7872": "[]", "MakerNote Tag 0xC4B3": "[]", "MakerNote Tag 0x200C": ""}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d4b1b987dad32697a39af2b73a86c6d76853a28c29d2937278b91fa57f668d7", "phash": "f8a06906bc03fff0", "dhash": "979717989c66c83c", "phash_int": -5.313092783846195e+17, "collected_at": "2026-05-22T04:27:57.156466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00027.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00027.JPG", "file_name": "DSC00027.JPG", "file_stem": "DSC00027", "file_ext": ".jpg", "file_size": 1209899.0, "mtime": "2002-03-14T15:55:36+00:00", "mtime_ts": 1016121336.0, "ctime": "2002-03-14T15:55:36+00:00", "sha256_file": "e631898dd54f5288cfb8768c3ce600198d42ab809b3cb0a49fd3b10bc8857fa1", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:55:37", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2578", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:55:37", "EXIF DateTimeDigitized": "2002:03:14 16:55:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:55:37", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2578", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0xC0C8": "[]", "MakerNote Tag 0xE35D": "[]", "MakerNote Tag 0xF546": "[]", "MakerNote Tag 0x6EB1": "[]", "MakerNote Tag 0x1B8A": "[]", "MakerNote Tag 0xAB75": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35c2f7e553100d35ed3f18a559c48f67357f574dffaec1d53ac76212cf9c5f0e", "phash": "85074ffff808037a", "dhash": "e0e0d0f0f0f0f0f0", "phash_int": -8.861025781031632e+18, "collected_at": "2026-05-22T04:27:57.271036+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00029.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00029.JPG", "file_name": "DSC00029.JPG", "file_stem": "DSC00029", "file_ext": ".jpg", "file_size": 1188617.0, "mtime": "2002-03-14T15:55:56+00:00", "mtime_ts": 1016121356.0, "ctime": "2002-03-14T15:55:56+00:00", "sha256_file": "7cff1955a6d29b61ccf3f76b219cd45c022c6f9cd79e30738667ba3ec1e883d4", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:55:56", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2631", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:55:56", "EXIF DateTimeDigitized": "2002:03:14 16:55:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:55:56", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2631", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x56AC": "[]", "MakerNote Tag 0x47D0": "[]", "MakerNote Tag 0x1333": "[]", "MakerNote Tag 0x791B": "[]", "MakerNote Tag 0xA946": "[]", "MakerNote Tag 0x7157": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aedc4439d6edba26fb21d927edf995dbc675cc44e023a95e2ba422946f185dfb", "phash": "bdc007e3981df296", "dhash": "46262636362e3676", "phash_int": -4.773806930921655e+18, "collected_at": "2026-05-22T04:27:57.525878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00030.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00030.JPG", "file_name": "DSC00030.JPG", "file_stem": "DSC00030", "file_ext": ".jpg", "file_size": 1202041.0, "mtime": "2002-03-14T15:56:06+00:00", "mtime_ts": 1016121366.0, "ctime": "2002-03-14T15:56:06+00:00", "sha256_file": "cc8e1b82ce190935a05330a4c66f00b0cbb695baeb14737331ddf8590220eb1c", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:56:06", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "2862", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:56:06", "EXIF DateTimeDigitized": "2002:03:14 16:56:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:56:06", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "2862", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x8223": "[]", "MakerNote Tag 0xE5B7": "[]", "MakerNote Tag 0x63D8": "[]", "MakerNote Tag 0xDF1D": "[]", "MakerNote Tag 0x8BA3": "[]", "MakerNote Tag 0x418A": "[]", "MakerNote Tag 0x7248": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "835cbfee4fc8425ba63b196fe3bf271dbaf3a20e5bd7b1d7e68e8121631a9e96", "phash": "f1be4aae03499c63", "dhash": "cccccececcccc8cc", "phash_int": -1.0273015537539736e+18, "collected_at": "2026-05-22T04:27:57.807041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\03\\03-14\\DSC00028.JPG", "file_path_relative": "HD02#FOTKY\\2002\\03\\03-14\\DSC00028.JPG", "file_name": "DSC00028.JPG", "file_stem": "DSC00028", "file_ext": ".jpg", "file_size": 1300882.0, "mtime": "2002-03-14T15:55:44+00:00", "mtime_ts": 1016121344.0, "ctime": "2002-03-14T15:55:44+00:00", "sha256_file": "fc5513e71c6ad9e77ff0fed71974d46d1d5e60bf633c2237b078ac8e4c7c0087", "exif": {"Image ImageDescription": " ", "Image Make": "SONY", "Image Model": "CYBERSHOT", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:03:14 16:55:44", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "218", "Thumbnail JPEGInterchangeFormat": "851", "Thumbnail JPEGInterchangeFormatLength": "3418", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "160", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:03:14 16:55:44", "EXIF DateTimeDigitized": "2002:03:14 16:55:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "8", "EXIF MakerNote": "[83, 79, 78, 89, 32, 68, 83, 67, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2048", "EXIF ExifImageLength": "1536", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "642", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "CYBERSHOT", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2002:03:14 16:55:44", "MakerNote Tag 0x0201": "851", "MakerNote Tag 0x0202": "3418", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0811": "[]", "MakerNote Tag 0x76F9": "[]", "MakerNote Tag 0xDD26": "[]", "MakerNote Tag 0xC33B": "[]", "MakerNote Tag 0x5CA3": "", "MakerNote Tag 0x668A": "[]", "MakerNote Tag 0x96CF": "[]", "MakerNote Tag 0x8C71": "", "MakerNote Tag 0xE586": "[]", "MakerNote Tag 0xA430": "[]", "MakerNote Tag 0x929C": "[]", "MakerNote Tag 0x5E00": "[]", "MakerNote Tag 0x7BD8": "[]"}, "format": "JPEG", "mode": "RGB", "width": 2048.0, "height": 1536.0, "megapixels": 3.15, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "621631cfe11f5fd55d42c7da64d006a7eb60007255700fd89a02dc2baa79c01e", "phash": "f38c8c733ab159a4", "dhash": "f69692d99999dad9", "phash_int": -8.971877992197423e+17, "collected_at": "2026-05-22T04:27:57.869961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 1795594.0, "mtime": "2002-05-17T17:44:24+00:00", "mtime_ts": 1021657464.0, "ctime": "2002-05-17T17:44:24+00:00", "sha256_file": "ddde60f497c5f23b86964524eb83fea55558ef5dd9c624076489f31d3f3a6331", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 17:44:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5500", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 17:44:25", "EXIF DateTimeDigitized": "2002:05:17 17:44:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52e8051e610ae76fc40e66dc32090f65ff6d7a3a6ff3e230c4bc2c66fd8fd906", "phash": "9cff030703793b07", "dhash": "662c3a3266a4f8f8", "phash_int": -7.133979956073645e+18, "collected_at": "2026-05-22T04:27:57.891966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 2003234.0, "mtime": "2002-05-17T17:45:56+00:00", "mtime_ts": 1021657556.0, "ctime": "2002-05-17T17:45:56+00:00", "sha256_file": "30fe026997ab6a4231247bffd78d18ca5674b5174ecddcd7aefcf5771b18d517", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 17:45:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 17:45:58", "EXIF DateTimeDigitized": "2002:05:17 17:45:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65477", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c873bfcae3e8967da68b793c18009a92b73cd3f1724dfe3ce28ebd637c05094", "phash": "85cacf34ba3a4587", "dhash": "e0e2e2affed6d6f0", "phash_int": -8.805998295999954e+18, "collected_at": "2026-05-22T04:27:57.964968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 1987269.0, "mtime": "2002-05-17T17:47:24+00:00", "mtime_ts": 1021657644.0, "ctime": "2002-05-17T17:47:24+00:00", "sha256_file": "62c87f58976745322fd6e9d1777ddcfa01afe83231c07c80a6b2a5ed17bac52a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 17:47:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5585", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 17:47:26", "EXIF DateTimeDigitized": "2002:05:17 17:47:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6abd0952c2648fb4133e2addc3b8fdd43b944a99e962366fe31a2ec437e982e7", "phash": "87fc5d5b99930322", "dhash": "7a26ccc8ebe9e8e8", "phash_int": -8.647934536458239e+18, "collected_at": "2026-05-22T04:27:57.986967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 2014244.0, "mtime": "2002-05-17T19:49:48+00:00", "mtime_ts": 1021664988.0, "ctime": "2002-05-17T19:49:48+00:00", "sha256_file": "ca5b661dccee2c017c6825ccd589b2cb87df49e255b762b26d0e19b237682cfe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 19:49:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4362", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 19:49:50", "EXIF DateTimeDigitized": "2002:05:17 19:49:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af2f2ea744d92b1e5c2ade533a60965fdfbea2da1d642d79f460ad37c7552dc9", "phash": "dc28b5823fb4a2e3", "dhash": "2f33b333f0c4f058", "phash_int": -2.582614815277801e+18, "collected_at": "2026-05-22T04:27:58.078969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 2086046.0, "mtime": "2002-05-17T19:46:28+00:00", "mtime_ts": 1021664788.0, "ctime": "2002-05-17T19:46:28+00:00", "sha256_file": "dbb7c4d44da4d7c97cf352fdeb8921aecbb8e7baf11591e02259858cd41c2684", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 19:46:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5247", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 19:46:30", "EXIF DateTimeDigitized": "2002:05:17 19:46:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1277/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1277"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ba597041af66c925e2258564750260884755ef016427308298cba065c4e85e9", "phash": "c80872f46b1737ab", "dhash": "95b0f2f393848480", "phash_int": -4.0328470722160087e+18, "collected_at": "2026-05-22T04:27:58.093971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 2007555.0, "mtime": "2002-05-17T20:09:12+00:00", "mtime_ts": 1021666152.0, "ctime": "2002-05-17T20:09:12+00:00", "sha256_file": "c3a4cb1e3c14087bfd1b6914fe50b875fa26cf7041510ed270100e13aec80665", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 20:09:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6267", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 20:09:14", "EXIF DateTimeDigitized": "2002:05:17 20:09:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65501", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fce007d94e8ed1655459a236f6e3a3749467d7190be63a45a15cffd4bc9c54e", "phash": "c03b9c6cf4138f5a", "dhash": "8646c98a86e6c8ec", "phash_int": -4.5949070030361354e+18, "collected_at": "2026-05-22T04:27:58.165064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 1734452.0, "mtime": "2002-05-17T20:09:40+00:00", "mtime_ts": 1021666180.0, "ctime": "2002-05-17T20:09:40+00:00", "sha256_file": "e722377e591d05ca22deffa22f6a59204dddf1721c316f58552666db4096422c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 20:09:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4649", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 20:09:41", "EXIF DateTimeDigitized": "2002:05:17 20:09:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "184/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65485", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1472"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92ab6486146113c5f1ebb85ed8cca665ed06ee8dcd400f40ec0914913f0d6fad", "phash": "d9c661f1369ab28c", "dhash": "92d2f170f092b3f4", "phash_int": -2.754406433459359e+18, "collected_at": "2026-05-22T04:27:58.180066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 1064610.0, "mtime": "2002-05-17T21:09:12+00:00", "mtime_ts": 1021669752.0, "ctime": "2002-05-17T21:09:12+00:00", "sha256_file": "8082b76782de928904d6dbeb4f1a0dc53cb406902da34a585c19e89772f52b21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:09:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3792", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:09:13", "EXIF DateTimeDigitized": "2002:05:17 21:09:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65464", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d86b86b40ed72cb1ac25ff1d16c13f219fbb829e89360807610089b5ec0f83a", "phash": "9dcd7a2263316c6a", "dhash": "3070f2fa68fcb8b9", "phash_int": -7.075865151417521e+18, "collected_at": "2026-05-22T04:27:58.236069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 1933891.0, "mtime": "2002-05-17T21:12:58+00:00", "mtime_ts": 1021669978.0, "ctime": "2002-05-17T21:12:58+00:00", "sha256_file": "3a4a4f15764f8c008595bc54dd0b9972d3103fa1cde25945041680e88f696dd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:13:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3786", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:13:00", "EXIF DateTimeDigitized": "2002:05:17 21:13:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a83fd4d156c1f8a454f8ed49dedb1c871a9f61c3aaccc92b6d17970bcc608d7", "phash": "c57f02f600dd9999", "dhash": "cc46d292c6ccc0c0", "phash_int": -4.2156474705957617e+18, "collected_at": "2026-05-22T04:27:58.301790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 1507762.0, "mtime": "2002-05-17T21:17:46+00:00", "mtime_ts": 1021670266.0, "ctime": "2002-05-17T21:17:46+00:00", "sha256_file": "4004de7f0df0ecb18f44f39df5f1af54369f682887605834137c8f7e1debe798", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:17:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4133", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:17:48", "EXIF DateTimeDigitized": "2002:05:17 21:17:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1f94f2c04d1c3019bdca8abd852fff1aac63f2b0e6e389c3500ab58a86c23ee", "phash": "dd1728e5377c7408", "dhash": "727070607050b033", "phash_int": -2.515496901919608e+18, "collected_at": "2026-05-22T04:27:58.337791+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 1746750.0, "mtime": "2002-05-17T21:35:02+00:00", "mtime_ts": 1021671302.0, "ctime": "2002-05-17T21:35:02+00:00", "sha256_file": "7799f84dbc201142cfd614d598b2741a3b13cb93b89261e65de5be31e98aa199", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:35:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:35:03", "EXIF DateTimeDigitized": "2002:05:17 21:35:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed0ade634f03addc612b2c695993916825a85d96fcaf9cf2d01ceb1b0cfe7a9e", "phash": "9672b26ca94d93b4", "dhash": "e66c6c62232236de", "phash_int": -7.605820640908701e+18, "collected_at": "2026-05-22T04:27:58.404435+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 1614930.0, "mtime": "2002-05-17T21:35:12+00:00", "mtime_ts": 1021671312.0, "ctime": "2002-05-17T21:35:12+00:00", "sha256_file": "4f1ebda44c5123a8cd7559e8c75d820c7b781475176c2b6cec41274ba3a23786", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:35:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5512", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:35:13", "EXIF DateTimeDigitized": "2002:05:17 21:35:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fbbf13f3913c2db2b2e4f2fb8628ff493af26b0ef1dd1ca9f34940b587dbec00", "phash": "92799867d64adb11", "dhash": "9c9899d5cc4de1f8", "phash_int": -7.8921093002458e+18, "collected_at": "2026-05-22T04:27:58.418433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 1698076.0, "mtime": "2002-05-17T21:35:30+00:00", "mtime_ts": 1021671330.0, "ctime": "2002-05-17T21:35:30+00:00", "sha256_file": "a1860a41b3980d14713ca11806d2d325ab734720269164f1a1ea10a50c31a14e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:35:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5618", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:35:32", "EXIF DateTimeDigitized": "2002:05:17 21:35:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e68be660664b63edd9b2ee4d7cbf4d80059d3b57d7e2fda8446e06b7e11db1aa", "phash": "92691f26d46b9d16", "dhash": "dcdcd1918cededfc", "phash_int": -7.896746219984414e+18, "collected_at": "2026-05-22T04:27:58.497436+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 2715618.0, "mtime": "2002-05-23T23:45:00+00:00", "mtime_ts": 1022197500.0, "ctime": "2002-05-23T23:45:00+00:00", "sha256_file": "f14217ae39e78c879ec3b712186033aac9ebcddf71de1f5d3f5c0943f1c6cbd6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:35:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7614", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:05:17 21:35:47", "EXIF DateTimeDigitized": "2002:05:17 21:35:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "563d9cb8c89794b711387754d47dff7b38bbe8debd52f8b538ea8b5a25ea1569", "phash": "817ea66699c1be46", "dhash": "7646d2d3d2c4d4fa", "phash_int": -9.115665636154819e+18, "collected_at": "2026-05-22T04:27:58.520449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 2554571.0, "mtime": "2002-05-23T22:58:54+00:00", "mtime_ts": 1022194734.0, "ctime": "2002-05-23T22:58:54+00:00", "sha256_file": "2aba6f274d497b100b3b2965ee5fa7cbf31eb48ef7aa67607f51e6e880ef7063", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:35:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6312", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:05:17 21:35:58", "EXIF DateTimeDigitized": "2002:05:17 21:35:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "432635303aacd5fa8118107aff3f956477bcb60c97e0fd792540ada395dacca3", "phash": "9c69b77207da9823", "dhash": "a8b0b0b0b43cf8fc", "phash_int": -7.176002830852254e+18, "collected_at": "2026-05-22T04:27:58.629555+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 1715026.0, "mtime": "2002-05-17T21:36:10+00:00", "mtime_ts": 1021671370.0, "ctime": "2002-05-17T21:36:10+00:00", "sha256_file": "236b712f03b11b415811aaf34df3096340ecc07ed94dcb7b78b4167fce095052", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:36:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4794", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:36:12", "EXIF DateTimeDigitized": "2002:05:17 21:36:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4051f12c28b32bc1223c8e34acc2883e792ff7c6828c9a2a1fbc683ac08c2e1", "phash": "983561c6d6b2b29b", "dhash": "dcb2b1b8717979f9", "phash_int": -7.478964099545386e+18, "collected_at": "2026-05-22T04:27:58.641553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 1651166.0, "mtime": "2002-05-17T21:36:24+00:00", "mtime_ts": 1021671384.0, "ctime": "2002-05-17T21:36:24+00:00", "sha256_file": "94d50ccd6aafdce8a9e1467c2dfe22657622cc288354398d76ae7e52f560ff96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:36:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5035", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:36:25", "EXIF DateTimeDigitized": "2002:05:17 21:36:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebbc3f7628684744fccfecb564dc56e5aec191810534c7a79c9198e2b5a1cb3c", "phash": "9c33762b027d827d", "dhash": "2e3e7273f3b332a0", "phash_int": -7.191274252883099e+18, "collected_at": "2026-05-22T04:27:58.755559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 1701463.0, "mtime": "2002-05-17T21:36:42+00:00", "mtime_ts": 1021671402.0, "ctime": "2002-05-17T21:36:42+00:00", "sha256_file": "e142efa22f42c6cc86b311164894cb845f89949776f6b4a6c65538f6a3730138", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:36:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5653", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:36:44", "EXIF DateTimeDigitized": "2002:05:17 21:36:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fe323aeff4cd87aecc0e050ef2b38b99321aef581549483397f259feb3e2e12", "phash": "982765681e6df20f", "dhash": "a7b939793191f174", "phash_int": -7.482900757991263e+18, "collected_at": "2026-05-22T04:27:58.775559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 1824149.0, "mtime": "2002-05-17T21:37:06+00:00", "mtime_ts": 1021671426.0, "ctime": "2002-05-17T21:37:06+00:00", "sha256_file": "22c7d47b1e142f2908b9ea23cea8b2fd6c1e5c861a890c437886b4d9f139589b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:37:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6368", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:37:08", "EXIF DateTimeDigitized": "2002:05:17 21:37:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddf46379f27722a6032a7030dca9daee434e33605e3ae06183a975840bcb4079", "phash": "e1485f1e024ffa35", "dhash": "c5868a9e861756ce", "phash_int": -2.2134146343601454e+18, "collected_at": "2026-05-22T04:27:58.838561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 1765604.0, "mtime": "2002-05-17T21:37:28+00:00", "mtime_ts": 1021671448.0, "ctime": "2002-05-17T21:37:28+00:00", "sha256_file": "f67985651c4ebbafae9a8908caf9630f9caa089d79460b8d53d0b4a2ce392e6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:37:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:37:30", "EXIF DateTimeDigitized": "2002:05:17 21:37:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbb2f57f017d1a326f579e4ce74c31e400a1b4908429b5bf5c4fb0fd219c3d50", "phash": "9a2e6d71872cd04f", "dhash": "97bfa96df9d991f4", "phash_int": -7.336806408573366e+18, "collected_at": "2026-05-22T04:27:58.886577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 1750714.0, "mtime": "2002-05-17T21:37:46+00:00", "mtime_ts": 1021671466.0, "ctime": "2002-05-17T21:37:46+00:00", "sha256_file": "ab84839ee9f23d1cb9e1f3bcd9475264828cc22fe75ba2fab9c9d25f96b328e5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:37:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6203", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:37:47", "EXIF DateTimeDigitized": "2002:05:17 21:37:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dfcf41e029a9fcdea1d16ffe9edab5473bad6d6098e9e8ac2cb8608903494c14", "phash": "922e6df13f60c61a", "dhash": "979fadec78d89970", "phash_int": -7.91326661232553e+18, "collected_at": "2026-05-22T04:27:58.927564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 1642846.0, "mtime": "2002-05-17T21:38:58+00:00", "mtime_ts": 1021671538.0, "ctime": "2002-05-17T21:38:58+00:00", "sha256_file": "bf99f6d114184a3bcd33508ec177616f7933903f6ec0023bd74bf0558472e415", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:38:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4496", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:38:59", "EXIF DateTimeDigitized": "2002:05:17 21:38:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df8471ce43d3e7bd4c8b9ee6f732978eec0783d03401722c611c61f5437dfa90", "phash": "875a90719fe21ee4", "dhash": "cbe3e3e3c6c6c7e2", "phash_int": -8.69347731299722e+18, "collected_at": "2026-05-22T04:27:58.973565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 1850858.0, "mtime": "2002-05-17T21:40:14+00:00", "mtime_ts": 1021671614.0, "ctime": "2002-05-17T21:40:14+00:00", "sha256_file": "27adcb3367b99d085c49c5552fb87a4781851996d97509d99f5268b4eb889dfb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:40:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6631", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:40:15", "EXIF DateTimeDigitized": "2002:05:17 21:40:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a83c6bf28dca1440a7bfbd999c70bd2ceda662df3509b9047ec700b22ea33fc", "phash": "bedd6a6623212c4e", "dhash": "0f393a187d3e4dc9", "phash_int": -4.693478249741604e+18, "collected_at": "2026-05-22T04:27:59.064687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0077_IMG.JPG", "file_name": "100-0077_IMG.JPG", "file_stem": "100-0077_IMG", "file_ext": ".jpg", "file_size": 1897449.0, "mtime": "2002-05-17T21:40:30+00:00", "mtime_ts": 1021671630.0, "ctime": "2002-05-17T21:40:30+00:00", "sha256_file": "796b58d54eba095f9dc24ecff449ff205209f81bf2ec9d48fcfea1cf8d655f61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:40:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5334", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:40:32", "EXIF DateTimeDigitized": "2002:05:17 21:40:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5fc467e4deac78860e453dab638958c862ef80d7b4d70e32436fe1a81d5b205", "phash": "c6ef307b3d02251d", "dhash": "0c6ce4e56148eca6", "phash_int": -4.112014628903312e+18, "collected_at": "2026-05-22T04:27:59.089692+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0078_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0078_IMG.JPG", "file_name": "100-0078_IMG.JPG", "file_stem": "100-0078_IMG", "file_ext": ".jpg", "file_size": 1741015.0, "mtime": "2002-05-17T21:41:20+00:00", "mtime_ts": 1021671680.0, "ctime": "2002-05-17T21:41:20+00:00", "sha256_file": "4c5eb5968e1200cb7a702e95294a5fb6193f6b26080ecab3b82bd361d7a02567", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:41:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5092", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:41:22", "EXIF DateTimeDigitized": "2002:05:17 21:41:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35e0e8b5f8653929d219fd91257bb8f973ab5f41f8a90fcbf1a504e07ee43bb6", "phash": "b7f44032d8c9b267", "dhash": "300e0c303c0c5671", "phash_int": -5.191453883321699e+18, "collected_at": "2026-05-22T04:27:59.218485+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0079_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0079_IMG.JPG", "file_name": "100-0079_IMG.JPG", "file_stem": "100-0079_IMG", "file_ext": ".jpg", "file_size": 2017811.0, "mtime": "2002-05-17T21:42:06+00:00", "mtime_ts": 1021671726.0, "ctime": "2002-05-17T21:42:06+00:00", "sha256_file": "fb9684addeda01d1110b97d378296977f05fd805f2bfd2facd3e30fb9e1b2f9f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:42:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6917", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:42:07", "EXIF DateTimeDigitized": "2002:05:17 21:42:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "043bb03ae475c825c8b4657d29cd56bb017a68f7588895395a25c0f8ac7ff2d7", "phash": "a46b0a07e779ec16", "dhash": "eb6bae9e6eec8c8c", "phash_int": -6.599169799916754e+18, "collected_at": "2026-05-22T04:27:59.234488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0080_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0080_IMG.JPG", "file_name": "100-0080_IMG.JPG", "file_stem": "100-0080_IMG", "file_ext": ".jpg", "file_size": 1672178.0, "mtime": "2002-05-17T21:42:54+00:00", "mtime_ts": 1021671774.0, "ctime": "2002-05-17T21:42:54+00:00", "sha256_file": "125f665bec624067f3020bdae9fd0cb33e922e7b60eed77e95a18366a04ecc60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 21:42:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4111", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 21:42:56", "EXIF DateTimeDigitized": "2002:05:17 21:42:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000080", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e6a63b9a117261d273c043011df6469ee084c62e08d4db2892a131d0972d94e", "phash": "cd0d3322fe273a26", "dhash": "d1f2f262e0d85839", "phash_int": -3.671221895851198e+18, "collected_at": "2026-05-22T04:27:59.361950+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0081_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0081_IMG.JPG", "file_name": "100-0081_IMG.JPG", "file_stem": "100-0081_IMG", "file_ext": ".jpg", "file_size": 1794700.0, "mtime": "2002-05-17T22:04:34+00:00", "mtime_ts": 1021673074.0, "ctime": "2002-05-17T22:04:34+00:00", "sha256_file": "76956a334de38e3863a266e45224ca0a23d885d750cad9dddaea0663ab42cafa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 22:04:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5031", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 22:04:36", "EXIF DateTimeDigitized": "2002:05:17 22:04:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea0924a17d25c7acb2bb8d902002ccf1b7ddfc6184225cdb5ec35601cb4102f8", "phash": "f1690e262d8d5755", "dhash": "36919896968ca8b8", "phash_int": -1.0512934808785164e+18, "collected_at": "2026-05-22T04:27:59.373953+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0083_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0083_IMG.JPG", "file_name": "100-0083_IMG.JPG", "file_stem": "100-0083_IMG", "file_ext": ".jpg", "file_size": 1955822.0, "mtime": "2002-05-17T23:14:20+00:00", "mtime_ts": 1021677260.0, "ctime": "2002-05-17T23:14:20+00:00", "sha256_file": "540decfc0df1f2d81773fbf3971fe3fd7b60b33f2ccedfe41ffb7ccddf22bd35", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:14:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5256", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:14:21", "EXIF DateTimeDigitized": "2002:05:17 23:14:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "227/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1816"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91acd8956246a4d342f538c95fa32d01a72b8cf4146f7da7d6b882b1d47b5722", "phash": "996678972c4b946d", "dhash": "589cc4e3ead8d1b2", "phash_int": -7.393089147603545e+18, "collected_at": "2026-05-22T04:27:59.520955+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0082_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0082_IMG.JPG", "file_name": "100-0082_IMG.JPG", "file_stem": "100-0082_IMG", "file_ext": ".jpg", "file_size": 1325325.0, "mtime": "2002-05-17T22:04:56+00:00", "mtime_ts": 1021673096.0, "ctime": "2002-05-17T22:04:56+00:00", "sha256_file": "dbb223d4a63a391e388f3df43d855c98eae2b92d78a4a09c3c557aa954189b1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 22:04:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5643", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 22:04:58", "EXIF DateTimeDigitized": "2002:05:17 22:04:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65418", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c28031547c09e6d646ab495fd8c2cec9f83567c8f7f78a4c1d0d00afbe6d294d", "phash": "907a3d61f1ce2ad1", "dhash": "061939d99889f2bc", "phash_int": -8.036043094211286e+18, "collected_at": "2026-05-22T04:27:59.523956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0084_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0084_IMG.JPG", "file_name": "100-0084_IMG.JPG", "file_stem": "100-0084_IMG", "file_ext": ".jpg", "file_size": 1910143.0, "mtime": "2002-05-17T23:14:38+00:00", "mtime_ts": 1021677278.0, "ctime": "2002-05-17T23:14:38+00:00", "sha256_file": "9afdcd396bdc7537ec526c5400248fff451b19b29f799ceedff7bdf4eda9272b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:14:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5172", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:14:39", "EXIF DateTimeDigitized": "2002:05:17 23:14:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ad8494b0e51d94540ae9aa07c0e0eefd7a83855443548e0bc756a99e9dba5306", "phash": "986358956bd3c563", "dhash": "d1b1d0e9e1f0f0b1", "phash_int": -7.466026358467739e+18, "collected_at": "2026-05-22T04:27:59.691962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0085_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0085_IMG.JPG", "file_name": "100-0085_IMG.JPG", "file_stem": "100-0085_IMG", "file_ext": ".jpg", "file_size": 1928429.0, "mtime": "2002-05-17T23:15:04+00:00", "mtime_ts": 1021677304.0, "ctime": "2002-05-17T23:15:04+00:00", "sha256_file": "6f38da45e9854e56c914eed93a4fc1f02bd9af0f503505f9bf87cb3ca1fc7b8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:15:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5315", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:15:06", "EXIF DateTimeDigitized": "2002:05:17 23:15:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000085", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65441", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc2940637d6b9c16c221f1ea1f693fd0d4dc5c078f33e824ce30ba64ddd0e7b6", "phash": "986779cc338cd964", "dhash": "b099b369e8f0b3b8", "phash_int": -7.46486393939815e+18, "collected_at": "2026-05-22T04:27:59.711966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0086_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0086_IMG.JPG", "file_name": "100-0086_IMG.JPG", "file_stem": "100-0086_IMG", "file_ext": ".jpg", "file_size": 1852990.0, "mtime": "2002-05-17T23:15:26+00:00", "mtime_ts": 1021677326.0, "ctime": "2002-05-17T23:15:26+00:00", "sha256_file": "bf69921ef7207b21adabb9d6039d7f4098570e0c87d51ece9771b048d33ba8ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:15:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4900", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:15:28", "EXIF DateTimeDigitized": "2002:05:17 23:15:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000086", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95f0c648e2f3b40ffd27c1a642af2d571c12d4768a215d0dda24471b0dd894b1", "phash": "c13becb446e2723c", "dhash": "e7f2dac8dcdcc4e0", "phash_int": -4.5227611417360174e+18, "collected_at": "2026-05-22T04:27:59.836974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0087_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0087_IMG.JPG", "file_name": "100-0087_IMG.JPG", "file_stem": "100-0087_IMG", "file_ext": ".jpg", "file_size": 1901517.0, "mtime": "2002-05-17T23:15:40+00:00", "mtime_ts": 1021677340.0, "ctime": "2002-05-17T23:15:40+00:00", "sha256_file": "0d92d2b078729afef351bc89374a0e474fb0b1b86aeacd0edb6123bb9a6cd99d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:15:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4785", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:15:41", "EXIF DateTimeDigitized": "2002:05:17 23:15:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000087", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65464", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "193b2f096f2ffe11de1a4bd398bcd70b0fb08320b38b3f3741e92bd29893dbf2", "phash": "dabd910ee29784e8", "dhash": "3c2e3c2921f1d9c9", "phash_int": -2.6848303097257974e+18, "collected_at": "2026-05-22T04:27:59.860968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0088_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0088_IMG.JPG", "file_name": "100-0088_IMG.JPG", "file_stem": "100-0088_IMG", "file_ext": ".jpg", "file_size": 1813747.0, "mtime": "2002-05-17T23:15:52+00:00", "mtime_ts": 1021677352.0, "ctime": "2002-05-17T23:15:52+00:00", "sha256_file": "7bf184bdacd52f553ec7b521d18f8150e538e1b57411cef462c12bd84c8a2e5b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:15:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4942", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:15:54", "EXIF DateTimeDigitized": "2002:05:17 23:15:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000088", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65453", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52179ea7b2b8129ea601c7bbdefb9f1547e66c5126fe1f71819850f42568bf01", "phash": "ca97d423dd93b824", "dhash": "796d71784b49c1a3", "phash_int": -3.84837410605841e+18, "collected_at": "2026-05-22T04:27:59.927532+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0089_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0089_IMG.JPG", "file_name": "100-0089_IMG.JPG", "file_stem": "100-0089_IMG", "file_ext": ".jpg", "file_size": 1051477.0, "mtime": "2002-05-17T23:16:04+00:00", "mtime_ts": 1021677364.0, "ctime": "2002-05-17T23:16:04+00:00", "sha256_file": "8847f5087dca2b03a7ddef8773d6c67cdf7dfbdddec472f4114fe3617d5e685e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:16:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3237", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:16:05", "EXIF DateTimeDigitized": "2002:05:17 23:16:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e74ffee300dbe818a557e1da8176d5b0bc21dfe1a86e65aab8fd63b0720e71d1", "phash": "da3066ec6c69616d", "dhash": "0d091939616171f1", "phash_int": -2.7245646089419894e+18, "collected_at": "2026-05-22T04:27:59.953687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0090_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0090_IMG.JPG", "file_name": "100-0090_IMG.JPG", "file_stem": "100-0090_IMG", "file_ext": ".jpg", "file_size": 859982.0, "mtime": "2002-05-17T23:16:20+00:00", "mtime_ts": 1021677380.0, "ctime": "2002-05-17T23:16:20+00:00", "sha256_file": "5791bf685c7582793f1f58c03c3b1fb4a39d880fcbe34364597cad3ed73b85c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:16:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:16:22", "EXIF DateTimeDigitized": "2002:05:17 23:16:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65459", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d547ac7d7a765397005dfab872c5178b431b8855512f48b4dd62070844322a42", "phash": "9b43ee116aed0566", "dhash": "99d95819587c3435", "phash_int": -7.258696415815335e+18, "collected_at": "2026-05-22T04:28:00.016783+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0091_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0091_IMG.JPG", "file_name": "100-0091_IMG.JPG", "file_stem": "100-0091_IMG", "file_ext": ".jpg", "file_size": 2028404.0, "mtime": "2002-05-17T23:16:34+00:00", "mtime_ts": 1021677394.0, "ctime": "2002-05-17T23:16:34+00:00", "sha256_file": "ba3feeb89057258e2593e1cf904e370909690b272b137ecb60a7e35b236f82dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:16:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5719", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:16:36", "EXIF DateTimeDigitized": "2002:05:17 23:16:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000091", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed30969c69c605223690a8795b7551e1b1466a5675510305207e99e028ca488b", "phash": "c4b86dc43e64615f", "dhash": "b6bc90b464c4e472", "phash_int": -4.271543556933132e+18, "collected_at": "2026-05-22T04:28:00.055773+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0093_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0093_IMG.JPG", "file_name": "100-0093_IMG.JPG", "file_stem": "100-0093_IMG", "file_ext": ".jpg", "file_size": 804448.0, "mtime": "2002-05-17T23:17:02+00:00", "mtime_ts": 1021677422.0, "ctime": "2002-05-17T23:17:02+00:00", "sha256_file": "ac2cf1fc98dc845a25f71bb976d6549266979e8ceac4db490721d4c1d8a3f8f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:17:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3425", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:17:04", "EXIF DateTimeDigitized": "2002:05:17 23:17:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000093", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8df01340e70647211e2f258f7f3b4dba1e4aacb0c4e608bf76dfc41feb21dbfd", "phash": "d44a813d6f85b0cf", "dhash": "b6b4547434beb2a2", "phash_int": -3.14956288852822e+18, "collected_at": "2026-05-22T04:28:00.129779+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0092_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0092_IMG.JPG", "file_name": "100-0092_IMG.JPG", "file_stem": "100-0092_IMG", "file_ext": ".jpg", "file_size": 1983188.0, "mtime": "2002-05-17T23:16:44+00:00", "mtime_ts": 1021677404.0, "ctime": "2002-05-17T23:16:44+00:00", "sha256_file": "696db9c67e65ef2f92ad7e7f4cb5dbdbdefa12cb81f09ef98a9cd3dd690acdb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:16:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5350", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:16:46", "EXIF DateTimeDigitized": "2002:05:17 23:16:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2611/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000092", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65475", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2611"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b892f926e2ef8d716ec6fa835118ed34fd46456659362e239d17faa07a66461d", "phash": "c63c6bd06790b966", "dhash": "4cc4c4e4c694e8cb", "phash_int": -4.1623334127622733e+18, "collected_at": "2026-05-22T04:28:00.132781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0094_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0094_IMG.JPG", "file_name": "100-0094_IMG.JPG", "file_stem": "100-0094_IMG", "file_ext": ".jpg", "file_size": 1082548.0, "mtime": "2002-05-17T23:17:22+00:00", "mtime_ts": 1021677442.0, "ctime": "2002-05-17T23:17:22+00:00", "sha256_file": "0859e9f4ed75d8117434c0092ed55f46fb92f5a73440095b4647bd2cd74f8775", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:17:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3218", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:17:23", "EXIF DateTimeDigitized": "2002:05:17 23:17:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "539/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1078"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0966baed259c31d10fa16cd46d44552a04a02443ebd843c7821a533ba5c30829", "phash": "d80fe406f319cd72", "dhash": "686c30787874bc9c", "phash_int": -2.8778309183669663e+18, "collected_at": "2026-05-22T04:28:00.218961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0095_IMG.JPG", "file_name": "100-0095_IMG.JPG", "file_stem": "100-0095_IMG", "file_ext": ".jpg", "file_size": 1992345.0, "mtime": "2002-05-17T23:17:34+00:00", "mtime_ts": 1021677454.0, "ctime": "2002-05-17T23:17:34+00:00", "sha256_file": "6e205ae9effbded92bf874f6b1b1c586c1b3cb70a0e815c23de88940dfc32101", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:17:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5683", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:17:36", "EXIF DateTimeDigitized": "2002:05:17 23:17:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000095", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65468", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9192bcd0e28cdcf070c0ac7beaeb7eda96efc8c26458067ff637ecd0d776229b", "phash": "94d6a952946f4af1", "dhash": "d4f4e02494d10396", "phash_int": -7.721798338937402e+18, "collected_at": "2026-05-22T04:28:00.226960+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0096_IMG.JPG", "file_name": "100-0096_IMG.JPG", "file_stem": "100-0096_IMG", "file_ext": ".jpg", "file_size": 2172873.0, "mtime": "2002-05-17T23:17:50+00:00", "mtime_ts": 1021677470.0, "ctime": "2002-05-17T23:17:50+00:00", "sha256_file": "858d26d8732ef0c4850c819dd4c75ac92fe96ba83eed33bf013ea0904f02ee4d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:17:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:17:52", "EXIF DateTimeDigitized": "2002:05:17 23:17:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000096", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26d9e7cb7933255745e5cbf19055a41c7c99fc49a0b9ba164464d65622d11225", "phash": "ceb105159d95b395", "dhash": "7ca068303060e0e0", "phash_int": -3.5530530406223247e+18, "collected_at": "2026-05-22T04:28:00.372786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0097_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0097_IMG.JPG", "file_name": "100-0097_IMG.JPG", "file_stem": "100-0097_IMG", "file_ext": ".jpg", "file_size": 2117881.0, "mtime": "2002-05-17T23:18:00+00:00", "mtime_ts": 1021677480.0, "ctime": "2002-05-17T23:18:00+00:00", "sha256_file": "1395942b36fef6df670014c11bb6a447dda9849faac86b0c33dd58f68365ed72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:18:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6661", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:18:02", "EXIF DateTimeDigitized": "2002:05:17 23:18:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000097", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65507", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fdf4e75e1db003168bf0f56c9a5958d016b58e9921aa0fcf88ad52f4055fc5d", "phash": "d5e9080bd30e65e7", "dhash": "da9046d84868e0d8", "phash_int": -3.0328840271787197e+18, "collected_at": "2026-05-22T04:28:00.390789+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0098_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0098_IMG.JPG", "file_name": "100-0098_IMG.JPG", "file_stem": "100-0098_IMG", "file_ext": ".jpg", "file_size": 1926020.0, "mtime": "2002-05-17T23:18:30+00:00", "mtime_ts": 1021677510.0, "ctime": "2002-05-17T23:18:30+00:00", "sha256_file": "cdb66604b5fb4e60c6aabc65969537f142b84421e4f44298c8f53bdeacb2a79b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:18:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:18:32", "EXIF DateTimeDigitized": "2002:05:17 23:18:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000098", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65436", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4c59bd76aa797bb1efa7171fc86851cfdc7ec04f4c942ef22c7a1218e2005c1", "phash": "f1d186e484ecd39a", "dhash": "929a1a1a161e1b5a", "phash_int": -1.0218873243956133e+18, "collected_at": "2026-05-22T04:28:00.473923+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0099_IMG.JPG", "file_name": "100-0099_IMG.JPG", "file_stem": "100-0099_IMG", "file_ext": ".jpg", "file_size": 1918425.0, "mtime": "2002-05-17T23:18:44+00:00", "mtime_ts": 1021677524.0, "ctime": "2002-05-17T23:18:44+00:00", "sha256_file": "eca5e7acbcc11278a5750bdc8d6dd3f00a6d57f17e3db37a6dc89268d124a9df", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:18:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5270", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:18:46", "EXIF DateTimeDigitized": "2002:05:17 23:18:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000099", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aea216c2152dbe16b64e81c3796e8e1b26f6804a2528580900ce41ed5d382673", "phash": "a9a2344d6ea5a733", "dhash": "97bbdd57cbdb9abc", "phash_int": -6.223354227899128e+18, "collected_at": "2026-05-22T04:28:00.493922+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\100-0100_IMG.JPG", "file_name": "100-0100_IMG.JPG", "file_stem": "100-0100_IMG", "file_ext": ".jpg", "file_size": 2145284.0, "mtime": "2002-05-17T23:19:42+00:00", "mtime_ts": 1021677582.0, "ctime": "2002-05-17T23:19:42+00:00", "sha256_file": "f53279112da6fcea8236bba2abf8267ea5b866f5650320f6b9a2bb87e47ff085", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:19:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6678", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:19:44", "EXIF DateTimeDigitized": "2002:05:17 23:19:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000100", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65470", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d84c2dc93973a38b64b80ac939aa49d7c2f879b6529d0ec30fc4515f767b70cc", "phash": "c8a234d5a48e4e7f", "dhash": "acc933b333703132", "phash_int": -3.98956822770337e+18, "collected_at": "2026-05-22T04:28:00.564925+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0101_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0101_IMG.JPG", "file_name": "101-0101_IMG.JPG", "file_stem": "101-0101_IMG", "file_ext": ".jpg", "file_size": 1731452.0, "mtime": "2002-05-17T23:20:06+00:00", "mtime_ts": 1021677606.0, "ctime": "2002-05-17T23:20:06+00:00", "sha256_file": "01f3e886037ec3462e1a1ccd167f4c70198cf3527d917b6a960098737114237c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:20:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4370", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:20:07", "EXIF DateTimeDigitized": "2002:05:17 23:20:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010101", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65453", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47b7b56d346c208ffda76a951e6037c6a85efa95389c4f12bc38c97a0bc9e2fd", "phash": "85945a873c63ba6b", "dhash": "d4c4ccd6c4cac851", "phash_int": -8.821326233231705e+18, "collected_at": "2026-05-22T04:28:00.594929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0102_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0102_IMG.JPG", "file_name": "101-0102_IMG.JPG", "file_stem": "101-0102_IMG", "file_ext": ".jpg", "file_size": 1202529.0, "mtime": "2002-05-17T23:20:26+00:00", "mtime_ts": 1021677626.0, "ctime": "2002-05-17T23:20:26+00:00", "sha256_file": "da9a8f7769700d67044430224bc3cc1900aef6652ea1a8834bc0a4d2db83686f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:20:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3876", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:20:28", "EXIF DateTimeDigitized": "2002:05:17 23:20:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010102", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65474", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "149", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f3954d7b3715befe7e8aa8f7adb07a174f779353d7ab32ba5f1bf474766d035", "phash": "80d55f8575967616", "dhash": "d6c2ccd4d6d6e9d8", "phash_int": -9.163312840007322e+18, "collected_at": "2026-05-22T04:28:00.639928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0103_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0103_IMG.JPG", "file_name": "101-0103_IMG.JPG", "file_stem": "101-0103_IMG", "file_ext": ".jpg", "file_size": 1918298.0, "mtime": "2002-05-17T23:24:26+00:00", "mtime_ts": 1021677866.0, "ctime": "2002-05-17T23:24:26+00:00", "sha256_file": "b9fd81ea552f8f979a8cdada7d2a4c64a372a1bbc6dcf32585a9063dad83e807", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:24:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4855", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:24:28", "EXIF DateTimeDigitized": "2002:05:17 23:24:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "551/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010103", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65462", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1102"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb12a90f1db9c161ada02d51eb2cea391840c24e78e32491c906d37b9b426446", "phash": "8b2db633b2b58d90", "dhash": "ecf0f2f279f9d8ec", "phash_int": -8.417871795327759e+18, "collected_at": "2026-05-22T04:28:00.684929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0104_IMG.JPG", "file_name": "101-0104_IMG.JPG", "file_stem": "101-0104_IMG", "file_ext": ".jpg", "file_size": 1170064.0, "mtime": "2002-05-17T23:24:44+00:00", "mtime_ts": 1021677884.0, "ctime": "2002-05-17T23:24:44+00:00", "sha256_file": "d2a74d1fab366a2dda243d650b864988a5c46bd1df1b96a809a78f673a7a0480", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:24:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4890", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:24:46", "EXIF DateTimeDigitized": "2002:05:17 23:24:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010104", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "66efa36be417fb070444db678d188fb1b0a785696860b450484cba7d0e0d2920", "phash": "f7f53c827bf82800", "dhash": "964e0e584c4d3d34", "phash_int": -5.794904459239649e+17, "collected_at": "2026-05-22T04:28:00.728140+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0105_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0105_IMG.JPG", "file_name": "101-0105_IMG.JPG", "file_stem": "101-0105_IMG", "file_ext": ".jpg", "file_size": 1227150.0, "mtime": "2002-05-17T23:24:54+00:00", "mtime_ts": 1021677894.0, "ctime": "2002-05-17T23:24:54+00:00", "sha256_file": "7ca98df40f23fc697e9b56d1b315e00d5ffd1bec3a674c3ef4ef6ff0eb627a66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:24:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4731", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:24:56", "EXIF DateTimeDigitized": "2002:05:17 23:24:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1919/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010105", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7676"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb3fdd667afda1b1c53768b59830bb862e880ce838bafdb8899f7597eee20c0c", "phash": "f7e424a07ffa3820", "dhash": "86e6264c4c554d4c", "phash_int": -5.843017798908498e+17, "collected_at": "2026-05-22T04:28:00.777141+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0106_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0106_IMG.JPG", "file_name": "101-0106_IMG.JPG", "file_stem": "101-0106_IMG", "file_ext": ".jpg", "file_size": 1889115.0, "mtime": "2002-05-17T23:25:06+00:00", "mtime_ts": 1021677906.0, "ctime": "2002-05-17T23:25:06+00:00", "sha256_file": "9b8e75670366c7a6441bc1c7e0b681e386485b9ee34459fec31f04ca721f1e26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:25:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4817", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:25:07", "EXIF DateTimeDigitized": "2002:05:17 23:25:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010106", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65459", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7cf173f6d476d2f06aeb19e5204f032dd8a275ab8107e9ef14e7cc0262d7663b", "phash": "837a2467e84f7625", "dhash": "f3f9f9f96868d4d4", "phash_int": -8.972819278884538e+18, "collected_at": "2026-05-22T04:28:00.833148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0107_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0107_IMG.JPG", "file_name": "101-0107_IMG.JPG", "file_stem": "101-0107_IMG", "file_ext": ".jpg", "file_size": 1971956.0, "mtime": "2002-05-17T23:25:14+00:00", "mtime_ts": 1021677914.0, "ctime": "2002-05-17T23:25:14+00:00", "sha256_file": "67a34b8ba40a356b0a1bf89711afac643a02b8233ae0b11509e2b9f9667eb0af", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:25:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4936", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:25:15", "EXIF DateTimeDigitized": "2002:05:17 23:25:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010107", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7fef38348c9abbf2d5b9ce9eb5006ddd244deb61b476124914674a92ee88754", "phash": "9d0be57624766236", "dhash": "70f2f9f0747874f4", "phash_int": -7.130353289430408e+18, "collected_at": "2026-05-22T04:28:00.891149+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0108_IMG.JPG", "file_name": "101-0108_IMG.JPG", "file_stem": "101-0108_IMG", "file_ext": ".jpg", "file_size": 1034115.0, "mtime": "2002-05-17T23:25:26+00:00", "mtime_ts": 1021677926.0, "ctime": "2002-05-17T23:25:26+00:00", "sha256_file": "0d85a9d247af586511a47a703aebf47795081bc20a0c99c4873a718556467d25", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:25:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3822", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:25:27", "EXIF DateTimeDigitized": "2002:05:17 23:25:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98aa5df9e1c844178585611ee23d27ec7f9f2750745d7d9a95362731038f6935", "phash": "c92c332cd3393771", "dhash": "e3e3e2e2e37291d9", "phash_int": -3.9507265054954476e+18, "collected_at": "2026-05-22T04:28:00.921148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0109_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0109_IMG.JPG", "file_name": "101-0109_IMG.JPG", "file_stem": "101-0109_IMG", "file_ext": ".jpg", "file_size": 1077430.0, "mtime": "2002-05-17T23:25:42+00:00", "mtime_ts": 1021677942.0, "ctime": "2002-05-17T23:25:42+00:00", "sha256_file": "8eaa6480d7067cd16a4f42408d3abdc636b65610b23ea4905c35061c3a5b1619", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:25:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3887", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:25:44", "EXIF DateTimeDigitized": "2002:05:17 23:25:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010109", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae43fe359b24cb9e85071cadfaaff30e378546f01f3841cb3d443307332174fc", "phash": "d31ae54ae4696d91", "dhash": "f0d0d1f1f1f1d0ce", "phash_int": -3.235021272489825e+18, "collected_at": "2026-05-22T04:28:00.975150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0110_IMG.JPG", "file_name": "101-0110_IMG.JPG", "file_stem": "101-0110_IMG", "file_ext": ".jpg", "file_size": 1188222.0, "mtime": "2002-05-17T23:25:56+00:00", "mtime_ts": 1021677956.0, "ctime": "2002-05-17T23:25:56+00:00", "sha256_file": "17e5f58f47937e3ae38fb68352d2f1ab6873442a438bfd5ee62ceabd57f226d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:25:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3927", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:25:58", "EXIF DateTimeDigitized": "2002:05:17 23:25:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e843d6b602ed44fe994c8943ea7ff4314145ce0845cec432c3c644214111660", "phash": "cc0df41a3d6c3333", "dhash": "f2e2f2f0f9f1b4f4", "phash_int": -3.7430673217381857e+18, "collected_at": "2026-05-22T04:28:01.016153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0111_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0111_IMG.JPG", "file_name": "101-0111_IMG.JPG", "file_stem": "101-0111_IMG", "file_ext": ".jpg", "file_size": 1562555.0, "mtime": "2002-05-17T23:26:08+00:00", "mtime_ts": 1021677968.0, "ctime": "2002-05-17T23:26:08+00:00", "sha256_file": "273248bc10a96cad83ab62f577e5382183e14924f3aa93cdaf25ed5991f21dac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:26:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4295", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:26:10", "EXIF DateTimeDigitized": "2002:05:17 23:26:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010111", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44eeaf6d0bb6a0e360abec7d396aeecda6fe3f3fa62eab87133f58a0a138519e", "phash": "c80df22c8e736c37", "dhash": "f3b2f2e3f29289c9", "phash_int": -4.031299818244314e+18, "collected_at": "2026-05-22T04:28:01.112157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0112_IMG.JPG", "file_name": "101-0112_IMG.JPG", "file_stem": "101-0112_IMG", "file_ext": ".jpg", "file_size": 1562036.0, "mtime": "2002-05-17T23:26:16+00:00", "mtime_ts": 1021677976.0, "ctime": "2002-05-17T23:26:16+00:00", "sha256_file": "744fb74ca557712e2bcbac08f4cd84d6c167de24304cb65fe99ee63921c2a790", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:26:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:26:17", "EXIF DateTimeDigitized": "2002:05:17 23:26:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65475", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b9edf403357cf8e4e50a6905e40237278037bb42cf835d2f5a4a0689293ef2aa", "phash": "cb0df2298e33cc27", "dhash": "61e0e0f1b29189c9", "phash_int": -3.815127049019602e+18, "collected_at": "2026-05-22T04:28:01.124153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0114_IMG.JPG", "file_name": "101-0114_IMG.JPG", "file_stem": "101-0114_IMG", "file_ext": ".jpg", "file_size": 1764646.0, "mtime": "2002-05-17T23:38:32+00:00", "mtime_ts": 1021678712.0, "ctime": "2002-05-17T23:38:32+00:00", "sha256_file": "57eb9bf002408132afa39e7f599c685e49699c6f13fc50bec288b3923af37016", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:38:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4873", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:38:33", "EXIF DateTimeDigitized": "2002:05:17 23:38:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "247/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 315, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010114", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "988"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e41c8c898fed66d270efa3595ed1bd840aaddf7c59159ee96c80fd26f7a2ee9", "phash": "cf8f70f031150f6a", "dhash": "50616170e2e0e400", "phash_int": -3.490447009270919e+18, "collected_at": "2026-05-22T04:28:01.213157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0113_IMG.JPG", "file_name": "101-0113_IMG.JPG", "file_stem": "101-0113_IMG", "file_ext": ".jpg", "file_size": 1908554.0, "mtime": "2002-05-17T23:26:34+00:00", "mtime_ts": 1021677994.0, "ctime": "2002-05-17T23:26:34+00:00", "sha256_file": "1f741d58fdcc065c895d9b09cc871800b966726e017da119903410e93e4f9dcf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:26:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5089", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:26:36", "EXIF DateTimeDigitized": "2002:05:17 23:26:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3479/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010113", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65457", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3479"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9633a275fcc396947d618705502ae0134a6be6b78386c0b608e6ac9b748b6c3b", "phash": "9d7b294da453a247", "dhash": "5278b838787878b6", "phash_int": -7.099034974173289e+18, "collected_at": "2026-05-22T04:28:01.246159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0115_IMG.JPG", "file_name": "101-0115_IMG.JPG", "file_stem": "101-0115_IMG", "file_ext": ".jpg", "file_size": 862934.0, "mtime": "2002-05-17T23:39:06+00:00", "mtime_ts": 1021678746.0, "ctime": "2002-05-17T23:39:06+00:00", "sha256_file": "91c4e935f09fc65ab813cccd6052e36e0bac164ea579d505f7c01dea19141b97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:39:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3548", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:39:07", "EXIF DateTimeDigitized": "2002:05:17 23:39:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "361/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 493, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "722"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75a386eb183e9964d6668b4c4371304535426a0d290adbbe13e55bccfca10cb2", "phash": "80ff5f805f815a95", "dhash": "f08796cedcc0d4c4", "phash_int": -9.151490912830793e+18, "collected_at": "2026-05-22T04:28:01.288160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0116_IMG.JPG", "file_name": "101-0116_IMG.JPG", "file_stem": "101-0116_IMG", "file_ext": ".jpg", "file_size": 2063283.0, "mtime": "2002-05-17T23:39:36+00:00", "mtime_ts": 1021678776.0, "ctime": "2002-05-17T23:39:36+00:00", "sha256_file": "7c74d6f6a5cb44cb51c70b9c17c95ad288ee476d76f85e7d5a198e4d54cbbc3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:39:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6415", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:39:38", "EXIF DateTimeDigitized": "2002:05:17 23:39:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010116", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65474", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5e23ea62a69b0b2cae2581d2cdde4834253f509eb94a6bc2f6b4d7e51520983", "phash": "a0af7e53c19e4e60", "dhash": "1717a7ba9a9d969e", "phash_int": -6.868132008520954e+18, "collected_at": "2026-05-22T04:28:01.357259+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0117_IMG.JPG", "file_name": "101-0117_IMG.JPG", "file_stem": "101-0117_IMG", "file_ext": ".jpg", "file_size": 1987719.0, "mtime": "2002-05-17T23:40:08+00:00", "mtime_ts": 1021678808.0, "ctime": "2002-05-17T23:40:08+00:00", "sha256_file": "6a2ff2f0e4a5fcff85110ca4fe3aa452ad20dec50433a03dde56eaabcfa77d6d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:40:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5085", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:40:10", "EXIF DateTimeDigitized": "2002:05:17 23:40:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010117", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65492", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0eb8952608d8cdd701c34eaa8f81975869cf58c9335eaf1ea80b5727a42b3c86", "phash": "80bf5835b4675a4b", "dhash": "f0f9f1f4f6e8c0b0", "phash_int": -9.169513328619857e+18, "collected_at": "2026-05-22T04:28:01.386258+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0118_IMG.JPG", "file_name": "101-0118_IMG.JPG", "file_stem": "101-0118_IMG", "file_ext": ".jpg", "file_size": 1954594.0, "mtime": "2002-05-17T23:40:14+00:00", "mtime_ts": 1021678814.0, "ctime": "2002-05-17T23:40:14+00:00", "sha256_file": "6b2e2876de85e236bfcacc0f1cab0b015470c3a495b4304472c6982f743e8176", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:40:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4924", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:40:16", "EXIF DateTimeDigitized": "2002:05:17 23:40:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010118", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddac5f08f4bd3cfc754e9ca08c6401efe4ca67bf6704342c78f821e1f4943d4c", "phash": "d5dab54a8c4e3623", "dhash": "f0d888a0e3e18696", "phash_int": -3.036915666921835e+18, "collected_at": "2026-05-22T04:28:01.464260+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0119_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0119_IMG.JPG", "file_name": "101-0119_IMG.JPG", "file_stem": "101-0119_IMG", "file_ext": ".jpg", "file_size": 1986245.0, "mtime": "2002-05-17T23:40:32+00:00", "mtime_ts": 1021678832.0, "ctime": "2002-05-17T23:40:32+00:00", "sha256_file": "95abc147bd4f0ce65c98284eac5a2a6ca498d5d5bf04989511a9d041e8e3465e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:17 23:40:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5485", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:17 23:40:33", "EXIF DateTimeDigitized": "2002:05:17 23:40:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010119", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bcd1ea6c765b0d72683c39647ef14e713f14f805e01ff22f4eb591670c3b1216", "phash": "8771a4a59c57389d", "dhash": "cc4f486963ebe8e1", "phash_int": -8.686981175021455e+18, "collected_at": "2026-05-22T04:28:01.486260+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0142_IMG.JPG", "file_name": "101-0142_IMG.JPG", "file_stem": "101-0142_IMG", "file_ext": ".jpg", "file_size": 228846.0, "mtime": "2002-05-20T17:17:52+00:00", "mtime_ts": 1021915072.0, "ctime": "2002-05-20T17:17:52+00:00", "sha256_file": "cc34fc6df154f7a15f25a79e867cd4f72d3075ac3caea1eafbb93b8c2aed19c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:17:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6227", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:17:54", "EXIF DateTimeDigitized": "2002:05:20 17:17:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c982c7e34baef2527b4cbdd204d2a1e341b55c2dddecf6a89385ca92fae0d49d", "phash": "c62e32ec636ad951", "dhash": "8565e3e1c0f0c0d0", "phash_int": -4.1663366144095124e+18, "collected_at": "2026-05-22T04:28:01.495265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0167_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0167_IMG.JPG", "file_name": "101-0167_IMG.JPG", "file_stem": "101-0167_IMG", "file_ext": ".jpg", "file_size": 173523.0, "mtime": "2002-05-21T19:28:04+00:00", "mtime_ts": 1022009284.0, "ctime": "2002-05-21T19:28:04+00:00", "sha256_file": "4570567d41c55730ec8242304ae39f3bd9f1af13698666a5f33bd1b0229a36c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:28:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5642", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:28:06", "EXIF DateTimeDigitized": "2002:05:21 19:28:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "887/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010167", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "887"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aef2f89de1d869246282a8598d53246b3ed0eec215b34533950da2ef7771e126", "phash": "ab7c92936ce348cc", "dhash": "9b3d2327375b4ab3", "phash_int": -6.089831434227071e+18, "collected_at": "2026-05-22T04:28:01.507266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0168_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0168_IMG.JPG", "file_name": "101-0168_IMG.JPG", "file_stem": "101-0168_IMG", "file_ext": ".jpg", "file_size": 170873.0, "mtime": "2002-05-21T19:28:10+00:00", "mtime_ts": 1022009290.0, "ctime": "2002-05-21T19:28:10+00:00", "sha256_file": "32bea4f89a9d19915dd587ec0867322dfc46a78bf708dab2e7624ff3fcc1f3e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:28:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5700", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:28:12", "EXIF DateTimeDigitized": "2002:05:21 19:28:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "19/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[59, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010168", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "760"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "653cd9ddd16bce4671b70e9ef11a239880cc41027261fdb0e6e625e6c3445644", "phash": "ab7cc29318a5e369", "dhash": "1c3513361b497ad1", "phash_int": -6.089778659082247e+18, "collected_at": "2026-05-22T04:28:01.511263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0198_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0198_IMG.JPG", "file_name": "101-0198_IMG.JPG", "file_stem": "101-0198_IMG", "file_ext": ".jpg", "file_size": 158453.0, "mtime": "2002-05-23T19:00:32+00:00", "mtime_ts": 1022180432.0, "ctime": "2002-05-23T19:00:32+00:00", "sha256_file": "e38ae00217878a9c20e3212cfee4d07187ad77bcb16d6df091d165e8656d14c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 19:00:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4515", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 19:00:33", "EXIF DateTimeDigitized": "2002:05:23 19:00:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 300, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010198", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea6241fadb1f999fbd190362dc096cb806cb2b8705617d00ddfa27ecb4735015", "phash": "9d965b38399626c3", "dhash": "7878647232377373", "phash_int": -7.091380266205829e+18, "collected_at": "2026-05-22T04:28:01.523264+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\101-0199_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\101-0199_IMG.JPG", "file_name": "101-0199_IMG.JPG", "file_stem": "101-0199_IMG", "file_ext": ".jpg", "file_size": 168377.0, "mtime": "2002-05-23T19:00:36+00:00", "mtime_ts": 1022180436.0, "ctime": "2002-05-23T19:00:36+00:00", "sha256_file": "786d06a9ab9a39e35fb3175050771c35a2fce8726e3ac8de5da654e347d5bb0c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 19:00:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4856", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 19:00:38", "EXIF DateTimeDigitized": "2002:05:23 19:00:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010199", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "942dd416c745975613c4cc1733f7f8b7b74839653b3429d518d7ce6f3b48b308", "phash": "9895d756613b7131", "dhash": "7c763233373179f3", "phash_int": -7.451813242416173e+18, "collected_at": "2026-05-22T04:28:01.526265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-22\\102-0201_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-22\\102-0201_IMG.JPG", "file_name": "102-0201_IMG.JPG", "file_stem": "102-0201_IMG", "file_ext": ".jpg", "file_size": 802543.0, "mtime": "2002-05-23T19:01:10+00:00", "mtime_ts": 1022180470.0, "ctime": "2002-05-23T19:01:10+00:00", "sha256_file": "9a3fc6aff1db8105a88c5ad77545bab2fe6ec5d627b2122fe3ae2eef0074427f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 19:01:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4274", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 19:01:12", "EXIF DateTimeDigitized": "2002:05:23 19:01:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020201", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7eb393b1ab76529b9f94221651cbb7717cd3bb7e2c7e799142d4b62fb1ebfdf1", "phash": "9d946a698ddc4669", "dhash": "b0f87434327b7b6b", "phash_int": -7.091926511617554e+18, "collected_at": "2026-05-22T04:28:01.618266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0120_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0120_IMG.JPG", "file_name": "101-0120_IMG.JPG", "file_stem": "101-0120_IMG", "file_ext": ".jpg", "file_size": 1018427.0, "mtime": "2002-05-18T12:01:32+00:00", "mtime_ts": 1021723292.0, "ctime": "2002-05-18T12:01:32+00:00", "sha256_file": "496ed7c80f10de87ab46d6100204f46c0712df1727ed1714e541e07b64adb972", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 12:01:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5303", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 12:01:33", "EXIF DateTimeDigitized": "2002:05:18 12:01:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85db09aac46684e9b7f849cba7f4ba8c11097534da74421b39d3e443bbd2ca41", "phash": "c5ba4f3560db9a60", "dhash": "c6eeac8c96aec2c6", "phash_int": -4.1989566118927007e+18, "collected_at": "2026-05-22T04:28:01.662446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0121_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0121_IMG.JPG", "file_name": "101-0121_IMG.JPG", "file_stem": "101-0121_IMG", "file_ext": ".jpg", "file_size": 997953.0, "mtime": "2002-05-18T12:03:14+00:00", "mtime_ts": 1021723394.0, "ctime": "2002-05-18T12:03:14+00:00", "sha256_file": "860a45a68ae09dfc15066bfc6015a6f8d64f72d6e9bd4db0411db6c4895125ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 12:03:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4736", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 12:03:16", "EXIF DateTimeDigitized": "2002:05:18 12:03:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7dfda8fe46ea86835bca89edf31dfdba4cbf0f86606a2d4498a983b90c40bebe", "phash": "c4ba39a5dbdc0456", "dhash": "f0cce4e0c4c4c4c0", "phash_int": -4.271037912086478e+18, "collected_at": "2026-05-22T04:28:01.729066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0122_IMG.JPG", "file_name": "101-0122_IMG.JPG", "file_stem": "101-0122_IMG", "file_ext": ".jpg", "file_size": 1466091.0, "mtime": "2002-05-18T12:04:02+00:00", "mtime_ts": 1021723442.0, "ctime": "2002-05-18T12:04:02+00:00", "sha256_file": "2a9cfb2d623533e823a90fe9c817f34a1d1da7b77953199b3f2c63cc02482fc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 12:04:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4710", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 12:04:03", "EXIF DateTimeDigitized": "2002:05:18 12:04:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc97ac0a43c38e03f6b28a97b3942ecb722479891e684f301a8f6a17f1978b6c", "phash": "9f8794bc3f207047", "dhash": "7c70e07d6c30b020", "phash_int": -6.951423963589218e+18, "collected_at": "2026-05-22T04:28:01.746076+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0123_IMG.JPG", "file_name": "101-0123_IMG.JPG", "file_stem": "101-0123_IMG", "file_ext": ".jpg", "file_size": 897034.0, "mtime": "2002-05-18T13:56:22+00:00", "mtime_ts": 1021730182.0, "ctime": "2002-05-18T13:56:22+00:00", "sha256_file": "eb98b52b4dfd53dda0e2d8775f664a73ff95b52732416a08887c1137c818a434", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 13:56:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2432", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 13:56:23", "EXIF DateTimeDigitized": "2002:05:18 13:56:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2219/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2219"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "753ae6b1a2c43b4de52c00b851c5a2302087d9ddd245e7d97ca63735407764d7", "phash": "83ff08dc3700cd76", "dhash": "f0ccccccccf4fcee", "phash_int": -8.935413393771148e+18, "collected_at": "2026-05-22T04:28:01.856069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0124_IMG.JPG", "file_name": "101-0124_IMG.JPG", "file_stem": "101-0124_IMG", "file_ext": ".jpg", "file_size": 901076.0, "mtime": "2002-05-18T13:56:30+00:00", "mtime_ts": 1021730190.0, "ctime": "2002-05-18T13:56:30+00:00", "sha256_file": "6c84df55fc4420bb1d942187104e804b096ed86f6ba42f7f20e11bef0811e617", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 13:56:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2453", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 13:56:31", "EXIF DateTimeDigitized": "2002:05:18 13:56:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2367/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2367"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4511cc99a1d605d9f6a91a357f02d80acdb70bbcdcec1bdabb5498466b5cf905", "phash": "837f08dc37c88c76", "dhash": "f0ccccccccf4f8fe", "phash_int": -8.971442190777021e+18, "collected_at": "2026-05-22T04:28:01.877075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0125_IMG.JPG", "file_name": "101-0125_IMG.JPG", "file_stem": "101-0125_IMG", "file_ext": ".jpg", "file_size": 1195285.0, "mtime": "2002-05-18T13:59:52+00:00", "mtime_ts": 1021730392.0, "ctime": "2002-05-18T13:59:52+00:00", "sha256_file": "3e903dbed15038123ecb9d47dde111c1ef20638a6cf6c128cabfb8ae90f32a0f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 13:59:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4463", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 13:59:53", "EXIF DateTimeDigitized": "2002:05:18 13:59:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "569/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2276"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "232086d60ac582e9ed5cd0255d17572520e84f94a209761f88495d5361f3cf83", "phash": "ea95aad5dadd010a", "dhash": "f83f33304186a1c1", "phash_int": -1.543139461827854e+18, "collected_at": "2026-05-22T04:28:01.940186+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0126_IMG.JPG", "file_name": "101-0126_IMG.JPG", "file_stem": "101-0126_IMG", "file_ext": ".jpg", "file_size": 615769.0, "mtime": "2002-05-18T14:00:24+00:00", "mtime_ts": 1021730424.0, "ctime": "2002-05-18T14:00:24+00:00", "sha256_file": "98a333ad8b0ef28184a63d8e91b5a010ff93faff3658ab30dc4f5b120c02bfd3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:00:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2694", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:00:25", "EXIF DateTimeDigitized": "2002:05:18 14:00:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "757/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65505", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "757"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4f13b18f7d132598da160a3680b9a0b1a0d892ea099286dab9ebde1f6db2ce67", "phash": "bbfa412536d0cd8c", "dhash": "8b99b9392f72f0e1", "phash_int": -4.901533616350115e+18, "collected_at": "2026-05-22T04:28:01.964185+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0127_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0127_IMG.JPG", "file_name": "101-0127_IMG.JPG", "file_stem": "101-0127_IMG", "file_ext": ".jpg", "file_size": 699544.0, "mtime": "2002-05-18T14:00:32+00:00", "mtime_ts": 1021730432.0, "ctime": "2002-05-18T14:00:32+00:00", "sha256_file": "1ca865a701788012e2ba6d33e584464d765eba2a4010b0b39d0c7d2ca18d9295", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:00:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3479", "EXIF ExposureTime": "2/5", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:00:34", "EXIF DateTimeDigitized": "2002:05:18 14:00:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3063/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6126"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35c85cdedb29f1be7469d6635e293e6e6ceab17c128008a9de5857f839bc1b04", "phash": "cfb7a1504f2423d5", "dhash": "eee82e6320b83463", "phash_int": -3.4791348208231946e+18, "collected_at": "2026-05-22T04:28:02.019187+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0128_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0128_IMG.JPG", "file_name": "101-0128_IMG.JPG", "file_stem": "101-0128_IMG", "file_ext": ".jpg", "file_size": 1232730.0, "mtime": "2002-05-18T14:00:46+00:00", "mtime_ts": 1021730446.0, "ctime": "2002-05-18T14:00:46+00:00", "sha256_file": "f13ba29851023ace5bbd3f115dee6bae4a72565547f11aea2f90c58840dea1a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:00:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4379", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:00:47", "EXIF DateTimeDigitized": "2002:05:18 14:00:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "603/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2412"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28d80dd343934d4053752565d2a26505ce25018e925690d6c8de6af280ae2112", "phash": "ab95a2d5cb462a33", "dhash": "f0fc6f6352800bd3", "phash_int": -6.082776682571879e+18, "collected_at": "2026-05-22T04:28:02.098195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0129_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0129_IMG.JPG", "file_name": "101-0129_IMG.JPG", "file_stem": "101-0129_IMG", "file_ext": ".jpg", "file_size": 1186479.0, "mtime": "2002-05-18T14:00:48+00:00", "mtime_ts": 1021730448.0, "ctime": "2002-05-18T14:00:48+00:00", "sha256_file": "02f2973bb0201e3b9ba2d7334d108ace4d99c8957b9eeb08ea807903e509dc24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:00:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4559", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:00:50", "EXIF DateTimeDigitized": "2002:05:18 14:00:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "951/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1902"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc13ad24f1c01846c7f3f96527d2cfdfacae01eb30dadc4d8bc2d7b762916f8f", "phash": "ab95a2d4cb462a3b", "dhash": "e07e6f6152804bd3", "phash_int": -6.082776686866847e+18, "collected_at": "2026-05-22T04:28:02.119191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0131_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0131_IMG.JPG", "file_name": "101-0131_IMG.JPG", "file_stem": "101-0131_IMG", "file_ext": ".jpg", "file_size": 674564.0, "mtime": "2002-05-18T14:01:20+00:00", "mtime_ts": 1021730480.0, "ctime": "2002-05-18T14:01:20+00:00", "sha256_file": "a4ba32d6e0a12ee3fa447f2e69e97ce7edf05440ffcc4259fe59daddf4966eec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:01:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3958", "EXIF ExposureTime": "1", "EXIF FNumber": "63/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:01:21", "EXIF DateTimeDigitized": "2002:05:18 14:01:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "85/16", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "113/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Slow Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "170", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "On", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2260"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ae15f5cd114e982dea4456d07fe15ace3b5f27f0dde554735c32b510fc7b8f1", "phash": "c290da6a35dccb2b", "dhash": "a988f03ccfc1457e", "phash_int": -4.4267982840001464e+18, "collected_at": "2026-05-22T04:28:02.214273+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0130_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0130_IMG.JPG", "file_name": "101-0130_IMG.JPG", "file_stem": "101-0130_IMG", "file_ext": ".jpg", "file_size": 1238423.0, "mtime": "2002-05-18T14:00:58+00:00", "mtime_ts": 1021730458.0, "ctime": "2002-05-18T14:00:58+00:00", "sha256_file": "af6ad5b990e8e5d777e8f6839ec312225d0d3ad458fd636d6d906902b98a2533", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:00:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4457", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:00:59", "EXIF DateTimeDigitized": "2002:05:18 14:00:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "603/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2412"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c19d6598f0809c7e4a82bb761cc8fee75385eacffc5e820a13c417e6bc1edc60", "phash": "ad92a1d2cd4e293b", "dhash": "f0fc6f6152804ad3", "phash_int": -5.939507031788607e+18, "collected_at": "2026-05-22T04:28:02.219275+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0132_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0132_IMG.JPG", "file_name": "101-0132_IMG.JPG", "file_stem": "101-0132_IMG", "file_ext": ".jpg", "file_size": 1245891.0, "mtime": "2002-05-18T14:01:32+00:00", "mtime_ts": 1021730492.0, "ctime": "2002-05-18T14:01:32+00:00", "sha256_file": "b2b91d378226e048b17583c746740c660e94659b41e077c02c0c6162a90180da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:01:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4788", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:01:33", "EXIF DateTimeDigitized": "2002:05:18 14:01:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "449/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Unknown", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2245"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "651f6a051fac7cd80d9cdb5fb49012e40959acc8e86e74ea00ac444c76a72990", "phash": "8595514f37d1d546", "dhash": "ececf07e6760920c", "phash_int": -8.821054894454484e+18, "collected_at": "2026-05-22T04:28:02.324394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0133_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0133_IMG.JPG", "file_name": "101-0133_IMG.JPG", "file_stem": "101-0133_IMG", "file_ext": ".jpg", "file_size": 845820.0, "mtime": "2002-05-18T14:01:50+00:00", "mtime_ts": 1021730510.0, "ctime": "2002-05-18T14:01:50+00:00", "sha256_file": "4b9b9cd856167664b90bc7cbbcdab62b221c76ae05c897edb484c7ef9d9f3cb0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:01:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3633", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:01:51", "EXIF DateTimeDigitized": "2002:05:18 14:01:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1197/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010133", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2394"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2042e17602ad7464ee280b9e7902e28a6b23c3eb40d40dc88bce9f618b398f5c", "phash": "8dd2b5d2c94f2629", "dhash": "e83e6760b02c72f2", "phash_int": -8.227313652327307e+18, "collected_at": "2026-05-22T04:28:02.332391+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0134_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0134_IMG.JPG", "file_name": "101-0134_IMG.JPG", "file_stem": "101-0134_IMG", "file_ext": ".jpg", "file_size": 136249.0, "mtime": "2002-05-18T14:02:34+00:00", "mtime_ts": 1021730554.0, "ctime": "2002-05-18T14:02:34+00:00", "sha256_file": "4233cd306267a4de0174fa1b1fff3b6401ace5c3ee651f3299eab0901aa51178", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:02:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3514", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:02:35", "EXIF DateTimeDigitized": "2002:05:18 14:02:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "951/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010134", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1902"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea87be7aeb01aa0ce07d8dc0951f2145d3bd8d79a3e313ec0f968dd9643327b7", "phash": "fad5a295db4c242a", "dhash": "ec1e233059962969", "phash_int": -3.7221262967517075e+17, "collected_at": "2026-05-22T04:28:02.345392+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0135_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0135_IMG.JPG", "file_name": "101-0135_IMG.JPG", "file_stem": "101-0135_IMG", "file_ext": ".jpg", "file_size": 129857.0, "mtime": "2002-05-18T14:02:38+00:00", "mtime_ts": 1021730558.0, "ctime": "2002-05-18T14:02:38+00:00", "sha256_file": "6e4e54de06d9a86e374d412c8bc273acce914b3e73406d9efdb4645c6ef3f1c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:02:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3452", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:02:40", "EXIF DateTimeDigitized": "2002:05:18 14:02:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2113/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010135", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2113"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ddf4801f9f53dcef7c033d99bee4218fe6080fe8a9a10931b57ab9e98946acd", "phash": "da95a295db4d252a", "dhash": "ec1e233059962969", "phash_int": -2.6960700373982807e+18, "collected_at": "2026-05-22T04:28:02.363394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0136_IMG.JPG", "file_name": "101-0136_IMG.JPG", "file_stem": "101-0136_IMG", "file_ext": ".jpg", "file_size": 125261.0, "mtime": "2002-05-18T14:02:48+00:00", "mtime_ts": 1021730568.0, "ctime": "2002-05-18T14:02:48+00:00", "sha256_file": "d23b0b7308566742c3a0d665ce3931bc2a0e702c420a077b24e961035f20f08c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:02:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3406", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:02:49", "EXIF DateTimeDigitized": "2002:05:18 14:02:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2113/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2113"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "078856f440dafcb8fef538e8aaae59790702ac7e68d75eb0b2f82e7df9cf3003", "phash": "cad5a295dbdc242a", "dhash": "ec2f23305996295b", "phash_int": -3.8309771434862746e+18, "collected_at": "2026-05-22T04:28:02.377395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0137_IMG.JPG", "file_name": "101-0137_IMG.JPG", "file_stem": "101-0137_IMG", "file_ext": ".jpg", "file_size": 174302.0, "mtime": "2002-05-18T14:03:00+00:00", "mtime_ts": 1021730580.0, "ctime": "2002-05-18T14:03:00+00:00", "sha256_file": "5898321c826b3ee97930aebec4b787882b1257263f2d5864898899d8cb74b928", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 14:03:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4279", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 14:03:01", "EXIF DateTimeDigitized": "2002:05:18 14:03:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2113/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2113"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "846032eca80fe7d5e88821b7864ccdf8def31e96dbfa41bd233117ebc711bce5", "phash": "abd6a8d0d1dbd448", "dhash": "fc2f6340808c4393", "phash_int": -6.064474233380285e+18, "collected_at": "2026-05-22T04:28:02.379392+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0139_IMG.JPG", "file_name": "101-0139_IMG.JPG", "file_stem": "101-0139_IMG", "file_ext": ".jpg", "file_size": 157133.0, "mtime": "2002-05-18T20:28:54+00:00", "mtime_ts": 1021753734.0, "ctime": "2002-05-18T20:28:54+00:00", "sha256_file": "4e3d002419c731a7062703df2eb760a102d409ea144a8fdb3da3fb9db4355e5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 20:28:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4795", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 20:28:56", "EXIF DateTimeDigitized": "2002:05:18 20:28:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69f3f14f9cd930d9575f8359170b5b578df1ee69e24e14600a289f512537950b", "phash": "cd6e5228ec36b06e", "dhash": "e6f2e27373d2f8f2", "phash_int": -3.643884712780976e+18, "collected_at": "2026-05-22T04:28:02.408397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0138_IMG.JPG", "file_name": "101-0138_IMG.JPG", "file_stem": "101-0138_IMG", "file_ext": ".jpg", "file_size": 159591.0, "mtime": "2002-05-18T20:28:46+00:00", "mtime_ts": 1021753726.0, "ctime": "2002-05-18T20:28:46+00:00", "sha256_file": "1051424e199a31913166ef8f35ef5f74578ed59576861a1513d3406a5745ccde", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:18 20:28:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4813", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:18 20:28:48", "EXIF DateTimeDigitized": "2002:05:18 20:28:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65458", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d07072174c1bd002f5f1ac33b3c861b48e23f61dbd41b3e1f6ddc0445754a1a3", "phash": "c94e56286c36b17e", "dhash": "e2f2e273b3d2f8f2", "phash_int": -3.941117892288401e+18, "collected_at": "2026-05-22T04:28:02.409394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0141_IMG.JPG", "file_name": "101-0141_IMG.JPG", "file_stem": "101-0141_IMG", "file_ext": ".jpg", "file_size": 231865.0, "mtime": "2002-05-20T17:17:48+00:00", "mtime_ts": 1021915068.0, "ctime": "2002-05-20T17:17:48+00:00", "sha256_file": "a1e5e028019db021e92a572aad38b1ccbfc07b65d844f43eee709a2fb8edd288", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:17:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6306", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:17:50", "EXIF DateTimeDigitized": "2002:05:20 17:17:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87b31ce0005d751b5495c61567506488edde52cac6665f3ca017ce6f2ba14d42", "phash": "c42e32ecc362f9d1", "dhash": "25e5e3e0d0f0c0c0", "phash_int": -4.3104518008752717e+18, "collected_at": "2026-05-22T04:28:02.441395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0140_IMG.JPG", "file_name": "101-0140_IMG.JPG", "file_stem": "101-0140_IMG", "file_ext": ".jpg", "file_size": 222717.0, "mtime": "2002-05-20T17:17:42+00:00", "mtime_ts": 1021915062.0, "ctime": "2002-05-20T17:17:42+00:00", "sha256_file": "50e6df98daf0334262ab06838141ff285f54596f1693c9f8073b0e3b1a3e11e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:17:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:17:44", "EXIF DateTimeDigitized": "2002:05:20 17:17:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22f65d7e8131fefab8ba461fc646b79bff9c71b27ad97c5b8d419dda03138dbf", "phash": "cd2826c75b73e303", "dhash": "c777d5f1e0c0e0c0", "phash_int": -3.6636356591912294e+18, "collected_at": "2026-05-22T04:28:02.442395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0144_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0144_IMG.JPG", "file_name": "101-0144_IMG.JPG", "file_stem": "101-0144_IMG", "file_ext": ".jpg", "file_size": 121695.0, "mtime": "2002-05-20T17:21:32+00:00", "mtime_ts": 1021915292.0, "ctime": "2002-05-20T17:21:32+00:00", "sha256_file": "939138721a66a36075952e485c6cadd0d41f9067edca0bcd0ed79be0ddf70829", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:21:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1543", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:21:34", "EXIF DateTimeDigitized": "2002:05:20 17:21:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1083/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010144", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "107", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1083"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3d2db822498bf32240ea85ecba794c6fb86f4216fb768e8cc61fd5998ad1132", "phash": "da2875752a2a55d5", "dhash": "0301818101000000", "phash_int": -2.7268004282937943e+18, "collected_at": "2026-05-22T04:28:02.496497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0143_IMG.JPG", "file_name": "101-0143_IMG.JPG", "file_stem": "101-0143_IMG", "file_ext": ".jpg", "file_size": 153295.0, "mtime": "2002-05-20T17:18:04+00:00", "mtime_ts": 1021915084.0, "ctime": "2002-05-20T17:18:04+00:00", "sha256_file": "3c7858f9c7d981740beee2709a89b18f5924b72bd0e0603cc2f3288e62cb0849", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:18:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4115", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:18:06", "EXIF DateTimeDigitized": "2002:05:20 17:18:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "811/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "46", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1622"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19de736bb15ff00e39d2fe0af681d1d2ca93d9943ad815d1ce3cc2dbce6dccb3", "phash": "fe80b44b627c9553", "dhash": "81c03e210922260c", "phash_int": -1.0788815518901317e+17, "collected_at": "2026-05-22T04:28:02.497497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0146_IMG.JPG", "file_name": "101-0146_IMG.JPG", "file_stem": "101-0146_IMG", "file_ext": ".jpg", "file_size": 199946.0, "mtime": "2002-05-20T17:23:00+00:00", "mtime_ts": 1021915380.0, "ctime": "2002-05-20T17:23:00+00:00", "sha256_file": "5a998a66606c9052a639130d68a4b6a93f894b0de2f4d1635e90484e2175d40a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:23:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6141", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:23:01", "EXIF DateTimeDigitized": "2002:05:20 17:23:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "417/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "834"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2892b1ff93ae4f477b4f9769608a2dc765f036d7ee67eec1f440cbe340a5ee3", "phash": "dddcc78c8a47c443", "dhash": "7030303030322a78", "phash_int": -2.4598718900218255e+18, "collected_at": "2026-05-22T04:28:02.579501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0145_IMG.JPG", "file_name": "101-0145_IMG.JPG", "file_stem": "101-0145_IMG", "file_ext": ".jpg", "file_size": 207490.0, "mtime": "2002-05-20T17:22:10+00:00", "mtime_ts": 1021915330.0, "ctime": "2002-05-20T17:22:10+00:00", "sha256_file": "c4cf38f9c039d242588bb390983b0451d6fb8189136a5113ee281f9e90623a2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:22:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6130", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:22:12", "EXIF DateTimeDigitized": "2002:05:20 17:22:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "571/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1142"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b1adcfb8f3e3ebe9f84d92e89a77949698b0be89103294a3d40364cd1982fb0", "phash": "b6ff0902fa66806d", "dhash": "0f4f072d2da4c4c7", "phash_int": -5.260475931349844e+18, "collected_at": "2026-05-22T04:28:02.579501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0147_IMG.JPG", "file_name": "101-0147_IMG.JPG", "file_stem": "101-0147_IMG", "file_ext": ".jpg", "file_size": 145546.0, "mtime": "2002-05-20T17:23:16+00:00", "mtime_ts": 1021915396.0, "ctime": "2002-05-20T17:23:16+00:00", "sha256_file": "4aa5146437d34170e7932ccfd684071a51ee5bd122432232f5e9ea4f1dbb3a97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:23:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2679", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:23:18", "EXIF DateTimeDigitized": "2002:05:20 17:23:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "69/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1380"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69c3dd5bf230d57bdbafd4b2d73ff469bceca32222c73119f08cd075d4d1d52c", "phash": "fc8f4078877cc16c", "dhash": "707c72331c183216", "phash_int": -2.4790856806873462e+17, "collected_at": "2026-05-22T04:28:02.598500+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0148_IMG.JPG", "file_name": "101-0148_IMG.JPG", "file_stem": "101-0148_IMG", "file_ext": ".jpg", "file_size": 167093.0, "mtime": "2002-05-20T17:26:04+00:00", "mtime_ts": 1021915564.0, "ctime": "2002-05-20T17:26:04+00:00", "sha256_file": "16e773d8a32ec4f1789e95cace2b5cc4dfbd7ca60681df8a0ed670a65f2791f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:03", "Image YCbCrPositioning": "Centered", "Image Tag 0x1001": "640", "Image Tag 0x1002": "480", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1450", "Thumbnail JPEGInterchangeFormatLength": "5126", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:03", "EXIF DateTimeDigitized": "2002:05:20 17:26:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "480", "EXIF ExifImageLength": "640", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010148", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "10", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Unknown", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 480.0, "height": 640.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa6f5047b08a64ddefcd47bf33bda8b55cf471b556620bbb8a01c72608013970", "phash": "89bc95796a2dd452", "dhash": "bcf9f6a381d2dbe8", "phash_int": -8.521772046186851e+18, "collected_at": "2026-05-22T04:28:02.600502+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0149_IMG.JPG", "file_name": "101-0149_IMG.JPG", "file_stem": "101-0149_IMG", "file_ext": ".jpg", "file_size": 112942.0, "mtime": "2002-05-20T17:26:14+00:00", "mtime_ts": 1021915574.0, "ctime": "2002-05-20T17:26:14+00:00", "sha256_file": "5b31343faa7c826f0c2aa2b3c55b0bfc62ec26ea39e55ad5e233f1063c680685", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3346", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:16", "EXIF DateTimeDigitized": "2002:05:20 17:26:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 241, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70115b35236d21b04d776f4d1348593f7326bc7a1d10d30d9ec5233e6bbd400a", "phash": "e31e1c216beb2927", "dhash": "e0e4e6cbcf8b8a8e", "phash_int": -2.0811950479285184e+18, "collected_at": "2026-05-22T04:28:02.634504+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0150_IMG.JPG", "file_name": "101-0150_IMG.JPG", "file_stem": "101-0150_IMG", "file_ext": ".jpg", "file_size": 157729.0, "mtime": "2002-05-20T17:26:20+00:00", "mtime_ts": 1021915580.0, "ctime": "2002-05-20T17:26:20+00:00", "sha256_file": "fc3470e286ec844107acc1d93cd6d248b07f786db3b9ea6a466effcf50f61c91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3878", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:22", "EXIF DateTimeDigitized": "2002:05:20 17:26:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 345, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30d8a338174fa7c30f28028115d57e583fc9bfccf8be19893afa47d8bd64efdf", "phash": "d1b73a481f2d4972", "dhash": "8c8cdcf0e0c38729", "phash_int": -3.335132917609445e+18, "collected_at": "2026-05-22T04:28:02.639503+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0152_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0152_IMG.JPG", "file_name": "101-0152_IMG.JPG", "file_stem": "101-0152_IMG", "file_ext": ".jpg", "file_size": 122237.0, "mtime": "2002-05-20T17:26:34+00:00", "mtime_ts": 1021915594.0, "ctime": "2002-05-20T17:26:34+00:00", "sha256_file": "fd6d574f33e057b38946abe25e179aeae032e55a0e415c90de8979455c075af2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3555", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:35", "EXIF DateTimeDigitized": "2002:05:20 17:26:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010152", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63f81ac11f034472d48886d8de96a615e40bf3ecf638354820be8b8607543516", "phash": "e13c61cf72f01963", "dhash": "963696944ec2c292", "phash_int": -2.2167893729586644e+18, "collected_at": "2026-05-22T04:28:02.677503+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0151_IMG.JPG", "file_name": "101-0151_IMG.JPG", "file_stem": "101-0151_IMG", "file_ext": ".jpg", "file_size": 141018.0, "mtime": "2002-05-20T17:26:28+00:00", "mtime_ts": 1021915588.0, "ctime": "2002-05-20T17:26:28+00:00", "sha256_file": "0bf92087e3cc5e0b12912ec0a720d037ff8eff2d8c47991e6fc45fa221724fab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3763", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:29", "EXIF DateTimeDigitized": "2002:05:20 17:26:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c011a8c610e4b3c8c1331bd2c0b897291ec58aa333f204324e1ab957e594244", "phash": "d51723431df868b3", "dhash": "e8ec3c30f0c00c22", "phash_int": -3.0919638479939564e+18, "collected_at": "2026-05-22T04:28:02.678505+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0154_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0154_IMG.JPG", "file_name": "101-0154_IMG.JPG", "file_stem": "101-0154_IMG", "file_ext": ".jpg", "file_size": 164941.0, "mtime": "2002-05-20T17:26:52+00:00", "mtime_ts": 1021915612.0, "ctime": "2002-05-20T17:26:52+00:00", "sha256_file": "b1c5d1bb1353be5634bb427fda281bd1f15c253d423ed2b799d579845944063d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4383", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:54", "EXIF DateTimeDigitized": "2002:05:20 17:26:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 369, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010154", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83a8de5e4553947d9156486d6aea5252610d3833f513a42dee866125cfdf817b", "phash": "c7f0e1987f6718c0", "dhash": "c8ccd46cf8f0c0c0", "phash_int": -4.0394808206625935e+18, "collected_at": "2026-05-22T04:28:02.721203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0153_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0153_IMG.JPG", "file_name": "101-0153_IMG.JPG", "file_stem": "101-0153_IMG", "file_ext": ".jpg", "file_size": 159979.0, "mtime": "2002-05-20T17:26:42+00:00", "mtime_ts": 1021915602.0, "ctime": "2002-05-20T17:26:42+00:00", "sha256_file": "35576ef89ad57212cf1d77a0ec50a25238c442a8f950c596ee063035bee20044", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:26:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4394", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:26:43", "EXIF DateTimeDigitized": "2002:05:20 17:26:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010153", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00ade1ecdf4eda486d5e6d4af61366f2886ade14756a0cc123010f377be3e99d", "phash": "c9c10444e5f93cf7", "dhash": "82c1199282314595", "phash_int": -3.9088383076182764e+18, "collected_at": "2026-05-22T04:28:02.723202+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0155_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0155_IMG.JPG", "file_name": "101-0155_IMG.JPG", "file_stem": "101-0155_IMG", "file_ext": ".jpg", "file_size": 116101.0, "mtime": "2002-05-20T17:27:18+00:00", "mtime_ts": 1021915638.0, "ctime": "2002-05-20T17:27:18+00:00", "sha256_file": "ae30c2540a33a4179294630a3d51b430d3ff125af6abf899f67f98b16af544a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:27:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3390", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:27:20", "EXIF DateTimeDigitized": "2002:05:20 17:27:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 342, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010155", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52b0737b335624296e31602a7e5f505361019776ce878e91da1e61ed9018d5ac", "phash": "c086656b372969b7", "dhash": "c5e5e5c1c1c3c3c7", "phash_int": -4.573856860386793e+18, "collected_at": "2026-05-22T04:28:02.774204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0156_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0156_IMG.JPG", "file_name": "101-0156_IMG.JPG", "file_stem": "101-0156_IMG", "file_ext": ".jpg", "file_size": 122067.0, "mtime": "2002-05-20T17:27:26+00:00", "mtime_ts": 1021915646.0, "ctime": "2002-05-20T17:27:26+00:00", "sha256_file": "783af1127e5472594da83d1dec603fe89cc0ec7926a0a48045ee2c4d34ab39b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:20 17:27:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3992", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:20 17:27:28", "EXIF DateTimeDigitized": "2002:05:20 17:27:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "241/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010156", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1928"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c6ea188a0c5deb4a5f7052961b08ee2c389e3edd7c1c4854365a06f063f1f89", "phash": "90073b728747ab5e", "dhash": "dc9cb0f4b49890b1", "phash_int": -8.068414844329022e+18, "collected_at": "2026-05-22T04:28:02.776203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0158_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0158_IMG.JPG", "file_name": "101-0158_IMG.JPG", "file_stem": "101-0158_IMG", "file_ext": ".jpg", "file_size": 144722.0, "mtime": "2002-05-21T19:24:56+00:00", "mtime_ts": 1022009096.0, "ctime": "2002-05-21T19:24:56+00:00", "sha256_file": "513a571ed185bdd3416a0cc022b00e23b1142c3e4f64bfbbf3205c7dfbb9baa0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:24:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4620", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:24:58", "EXIF DateTimeDigitized": "2002:05:21 19:24:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8/5", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010158", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1600"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6935014fd7c396786a866664f97e45d63db632105fe4a3f6522df6abfcae98ee", "phash": "fe9c99a7164260ad", "dhash": "383a342c2c0d011a", "phash_int": -1.000361487969565e+17, "collected_at": "2026-05-22T04:28:02.789313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0157_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0157_IMG.JPG", "file_name": "101-0157_IMG.JPG", "file_stem": "101-0157_IMG", "file_ext": ".jpg", "file_size": 167078.0, "mtime": "2002-05-21T19:24:44+00:00", "mtime_ts": 1022009084.0, "ctime": "2002-05-21T19:24:44+00:00", "sha256_file": "dd777831ecec01af679c5bd4ed63ec6c15f25a22e0a6f36adc3124b60e3d631d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:24:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5290", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:24:45", "EXIF DateTimeDigitized": "2002:05:21 19:24:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "497/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010157", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2485"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3d1c7084fc1655d793e2758ab43f1aedfd428cf4f50f02e96dbe25b5d22c869", "phash": "fc8f8b93830c5e62", "dhash": "615234341c34b2b4", "phash_int": -2.4782598880700867e+17, "collected_at": "2026-05-22T04:28:02.791309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0159_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0159_IMG.JPG", "file_name": "101-0159_IMG.JPG", "file_stem": "101-0159_IMG", "file_ext": ".jpg", "file_size": 149496.0, "mtime": "2002-05-21T19:25:04+00:00", "mtime_ts": 1022009104.0, "ctime": "2002-05-21T19:25:04+00:00", "sha256_file": "8c1dcb1c1d4ed9cce9ff7c386f64e9fc0a231d42468afa3c980b759878cee4d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:25:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4877", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:25:05", "EXIF DateTimeDigitized": "2002:05:21 19:25:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "34/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010159", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1360"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "247c42cf70c00376fbf2c533f6aef8fef0d78da932bc38feea3769b63f583fd3", "phash": "d8a486ecd0db6a1b", "dhash": "b4afdb9032237999", "phash_int": -2.8359935136621256e+18, "collected_at": "2026-05-22T04:28:02.814421+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0160_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0160_IMG.JPG", "file_name": "101-0160_IMG.JPG", "file_stem": "101-0160_IMG", "file_ext": ".jpg", "file_size": 154055.0, "mtime": "2002-05-21T19:25:10+00:00", "mtime_ts": 1022009110.0, "ctime": "2002-05-21T19:25:10+00:00", "sha256_file": "90db8adf94fa265ca1ddc41b1c62d9761e3170cf5860785d4a2e69c93d2f32ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:25:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4937", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:25:11", "EXIF DateTimeDigitized": "2002:05:21 19:25:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "271/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010160", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1355"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "752aa8318556697dab3c1ef860541ae4ce7eef2ea4fde20afc384c9aef6be48a", "phash": "d8a482aef4d95699", "dhash": "a68b9190322179b9", "phash_int": -2.8359981773927654e+18, "collected_at": "2026-05-22T04:28:02.817420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0162_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0162_IMG.JPG", "file_name": "101-0162_IMG.JPG", "file_stem": "101-0162_IMG", "file_ext": ".jpg", "file_size": 189615.0, "mtime": "2002-05-21T19:25:46+00:00", "mtime_ts": 1022009146.0, "ctime": "2002-05-21T19:25:46+00:00", "sha256_file": "f1478dcad0d752d584acf02f145ef6d096b4576c314afb289976ed071fa9ca0d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:25:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6018", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:25:48", "EXIF DateTimeDigitized": "2002:05:21 19:25:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "691/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010162", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "691"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba721abeea673093e3746225f3b2d4bd5458cb7afb54b0210001bafd09fc26d0", "phash": "e33c9803d6b47333", "dhash": "180a97464f490809", "phash_int": -2.0726145862427968e+18, "collected_at": "2026-05-22T04:28:02.852515+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0161_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0161_IMG.JPG", "file_name": "101-0161_IMG.JPG", "file_stem": "101-0161_IMG", "file_ext": ".jpg", "file_size": 152009.0, "mtime": "2002-05-21T19:25:14+00:00", "mtime_ts": 1022009114.0, "ctime": "2002-05-21T19:25:14+00:00", "sha256_file": "c58a840ca46faaecf186f4ba93cbb8efebb642d7db97e71c4607257d0c67f306", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:25:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4896", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:25:16", "EXIF DateTimeDigitized": "2002:05:21 19:25:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "271/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010161", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1355"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b99f691be7f2f574c24d7d65a126b081ee97485599aceab49b8f3eb6552d481", "phash": "d8a483aef4d95499", "dhash": "2e9b91b032617938", "phash_int": -2.835997077881138e+18, "collected_at": "2026-05-22T04:28:02.853513+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0164_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0164_IMG.JPG", "file_name": "101-0164_IMG.JPG", "file_stem": "101-0164_IMG", "file_ext": ".jpg", "file_size": 171229.0, "mtime": "2002-05-21T19:26:10+00:00", "mtime_ts": 1022009170.0, "ctime": "2002-05-21T19:26:10+00:00", "sha256_file": "b64615f2514c1e947e7e5d69c89fe417bb386dc6d2f48a47d2b1b99465f95c3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:26:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:26:11", "EXIF DateTimeDigitized": "2002:05:21 19:26:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "177/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010164", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "708"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96d999c6e18891ad80fa27ac9a42c9296b8abbfa6cc06a9f18ce1b38b7ac4bc1", "phash": "f1948b0f8c1cfa33", "dhash": "f2d89cb4d46b4383", "phash_int": -1.0390527151242624e+18, "collected_at": "2026-05-22T04:28:02.901515+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0163_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0163_IMG.JPG", "file_name": "101-0163_IMG.JPG", "file_stem": "101-0163_IMG", "file_ext": ".jpg", "file_size": 164664.0, "mtime": "2002-05-21T19:26:00+00:00", "mtime_ts": 1022009160.0, "ctime": "2002-05-21T19:26:00+00:00", "sha256_file": "99e91a3f5566bdf5a66df50c866eece26f17e22aec1c0ee9be24850f83459982", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:26:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5778", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:26:01", "EXIF DateTimeDigitized": "2002:05:21 19:26:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "177/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1135999/280", "EXIF FocalPlaneYResolution": "851999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010163", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "708"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71167a4764afd6b2fa8bebf9613b30e6ffd271ab944022e0be3a711bd28e160d", "phash": "f114f0e23ac3338f", "dhash": "9c94d66963030208", "phash_int": -1.0749695565955596e+18, "collected_at": "2026-05-22T04:28:02.905513+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0165_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0165_IMG.JPG", "file_name": "101-0165_IMG.JPG", "file_stem": "101-0165_IMG", "file_ext": ".jpg", "file_size": 155794.0, "mtime": "2002-05-21T19:26:24+00:00", "mtime_ts": 1022009184.0, "ctime": "2002-05-21T19:26:24+00:00", "sha256_file": "a17397d87330017b460a10be8d4c9547940b641d79e7ff0dfa3374ca9acae665", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:26:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5075", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:26:26", "EXIF DateTimeDigitized": "2002:05:21 19:26:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "417/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 186, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010165", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "146", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "834"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f46d36974219dd852dbbbd703b66c86dc30ff9bd2051bae5d19a1ebebc84d1f6", "phash": "f14f1c9c5831e687", "dhash": "b008cb8984849c9c", "phash_int": -1.058595929588636e+18, "collected_at": "2026-05-22T04:28:02.918610+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0166_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0166_IMG.JPG", "file_name": "101-0166_IMG.JPG", "file_stem": "101-0166_IMG", "file_ext": ".jpg", "file_size": 169059.0, "mtime": "2002-05-21T19:27:58+00:00", "mtime_ts": 1022009278.0, "ctime": "2002-05-21T19:27:58+00:00", "sha256_file": "72ec2049534578404078bca968ea36bb3898d576c0b236c62331b61966849bf4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:28:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5490", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:28:00", "EXIF DateTimeDigitized": "2002:05:21 19:28:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "91/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010166", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "910"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52565ecb8eb3ea92816f60f45973a2cb23a3af39225410e6645984205b056740", "phash": "a97c90936ce369cc", "dhash": "9b3d2327375b4eb3", "phash_int": -6.233948821326174e+18, "collected_at": "2026-05-22T04:28:02.926607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0169_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0169_IMG.JPG", "file_name": "101-0169_IMG.JPG", "file_stem": "101-0169_IMG", "file_ext": ".jpg", "file_size": 164103.0, "mtime": "2002-05-21T19:28:28+00:00", "mtime_ts": 1022009308.0, "ctime": "2002-05-21T19:28:28+00:00", "sha256_file": "d94dd9a9f295cb04689556910f58f340ffc16b22b5e0fd17bbf5fc6ff4c5f81f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:21 19:28:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5408", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:21 19:28:30", "EXIF DateTimeDigitized": "2002:05:21 19:28:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "827/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010169", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "827"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d214f5f9b172fc65a2e4560df17202203534dec581ee4b569814c1ee2455ec1", "phash": "ba71863649c6539d", "dhash": "cd9e9513bb292cd9", "phash_int": -5.012077342562561e+18, "collected_at": "2026-05-22T04:28:02.938603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0170_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0170_IMG.JPG", "file_name": "101-0170_IMG.JPG", "file_stem": "101-0170_IMG", "file_ext": ".jpg", "file_size": 148587.0, "mtime": "2002-05-22T21:16:24+00:00", "mtime_ts": 1022102184.0, "ctime": "2002-05-22T21:16:24+00:00", "sha256_file": "e0193d417ac6935f811aaf392245882f449b460b506418ce3a03db2d965dde15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:16:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4821", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:16:25", "EXIF DateTimeDigitized": "2002:05:22 21:16:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010170", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "178e0aefa72fc005a0aed28bee85f9307b2dd4da63fc542b40fb6d770d85917a", "phash": "957e27865958352b", "dhash": "6c6e4670f276fada", "phash_int": -7.674653257014693e+18, "collected_at": "2026-05-22T04:28:02.944603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0171_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0171_IMG.JPG", "file_name": "101-0171_IMG.JPG", "file_stem": "101-0171_IMG", "file_ext": ".jpg", "file_size": 152131.0, "mtime": "2002-05-22T21:17:50+00:00", "mtime_ts": 1022102270.0, "ctime": "2002-05-22T21:17:50+00:00", "sha256_file": "1ed9b3d105e6fd0f947ffc975926ccbe8d20f185288f480d649f7f61539af3cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:17:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4869", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:17:51", "EXIF DateTimeDigitized": "2002:05:22 21:17:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010171", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ffe130c7c4c30216828c5b1ba92cd4c06339fc66697374305465067fa265518a", "phash": "8f7466be2d8250d5", "dhash": "222ab8fb72696963", "phash_int": -8.109744061994086e+18, "collected_at": "2026-05-22T04:28:02.959603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0172_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0172_IMG.JPG", "file_name": "101-0172_IMG.JPG", "file_stem": "101-0172_IMG", "file_ext": ".jpg", "file_size": 151640.0, "mtime": "2002-05-22T21:17:52+00:00", "mtime_ts": 1022102272.0, "ctime": "2002-05-22T21:17:52+00:00", "sha256_file": "e961b13c5286b8a30f87020e24fa473fc6bc4190b84168894b83135188314ffd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:17:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4855", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:17:54", "EXIF DateTimeDigitized": "2002:05:22 21:17:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010172", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c5de1e63601db13a89abed86ec082b5830a4cf640ace289263f43ac2b92903e", "phash": "8f7066be2da250d5", "dhash": "222ab8fb72696963", "phash_int": -8.110869961898832e+18, "collected_at": "2026-05-22T04:28:02.964606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0173_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0173_IMG.JPG", "file_name": "101-0173_IMG.JPG", "file_stem": "101-0173_IMG", "file_ext": ".jpg", "file_size": 123507.0, "mtime": "2002-05-22T21:18:18+00:00", "mtime_ts": 1022102298.0, "ctime": "2002-05-22T21:18:18+00:00", "sha256_file": "12196169a8bf5aff0415af47393eda39943b781cf13f5c962f724dc1d764b890", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:18:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:18:20", "EXIF DateTimeDigitized": "2002:05:22 21:18:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1029/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010173", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2058"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04546b5cd6ea63162d290264fb8561a52475be5106fbf11b67ffb77ef02f9fcf", "phash": "a56c33634c9d4bcc", "dhash": "c6969696c7cfcccc", "phash_int": -6.526785258386535e+18, "collected_at": "2026-05-22T04:28:02.976604+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0174_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0174_IMG.JPG", "file_name": "101-0174_IMG.JPG", "file_stem": "101-0174_IMG", "file_ext": ".jpg", "file_size": 13880.0, "mtime": "2002-05-22T21:18:34+00:00", "mtime_ts": 1022102314.0, "ctime": "2002-05-22T21:18:34+00:00", "sha256_file": "7591203bc85103e1d6de9ab394f4bf96bc602c6cc189a81eca72881c8a68595f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:18:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "978", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:18:35", "EXIF DateTimeDigitized": "2002:05:22 21:18:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "12033/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 496, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010174", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12033"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "03d75dfab4fcf8410da7b9d4fab7d2789eb56e42993eccf508a7e5b53d8e72fd", "phash": "9c1cf9f007eff001", "dhash": "2010202040000000", "phash_int": -7.197603295124263e+18, "collected_at": "2026-05-22T04:28:02.977607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0175_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0175_IMG.JPG", "file_name": "101-0175_IMG.JPG", "file_stem": "101-0175_IMG", "file_ext": ".jpg", "file_size": 151426.0, "mtime": "2002-05-22T21:18:56+00:00", "mtime_ts": 1022102336.0, "ctime": "2002-05-22T21:18:56+00:00", "sha256_file": "b46deaf5f2f77f7c80b7e384b9bd07fe0af0b99b53d1bd283b2db89bf3c33c63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:18:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4681", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:18:58", "EXIF DateTimeDigitized": "2002:05:22 21:18:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010175", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a030e66267429b4b86e924f7324088d6908574bf31f1af68ec6f39edf308b8c", "phash": "8538782bdb475659", "dhash": "30b6f6eadac6c6d6", "phash_int": -8.847189338211527e+18, "collected_at": "2026-05-22T04:28:02.996605+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0176_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0176_IMG.JPG", "file_name": "101-0176_IMG.JPG", "file_stem": "101-0176_IMG", "file_ext": ".jpg", "file_size": 152985.0, "mtime": "2002-05-22T21:19:00+00:00", "mtime_ts": 1022102340.0, "ctime": "2002-05-22T21:19:00+00:00", "sha256_file": "c417ed68a9a6e3dcb5929af99e39990a5c2c886046f6761eb49c673bc04180df", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:19:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4775", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:19:02", "EXIF DateTimeDigitized": "2002:05:22 21:19:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010176", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e24ac321bc891a3a059c654e52c3f6ec445cba8ebaf9457c6fc0de634ea3c66f", "phash": "85186a6bdb565671", "dhash": "f0f6f6eadac6c6c6", "phash_int": -8.856211655750167e+18, "collected_at": "2026-05-22T04:28:02.997607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0177_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0177_IMG.JPG", "file_name": "101-0177_IMG.JPG", "file_stem": "101-0177_IMG", "file_ext": ".jpg", "file_size": 157209.0, "mtime": "2002-05-22T21:19:10+00:00", "mtime_ts": 1022102350.0, "ctime": "2002-05-22T21:19:10+00:00", "sha256_file": "af4d9acbf77853c7d2e6ae648a9e8827adf56a43cf5c68f906e1565534cef88b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:19:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4936", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:19:12", "EXIF DateTimeDigitized": "2002:05:22 21:19:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010177", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4649a6c8ea35bd130a3d87d43812dd08183de722748a79ecae9c623ecfada1c", "phash": "916c7e2f0745495b", "dhash": "24bd9cdedddbd848", "phash_int": -7.967854900274706e+18, "collected_at": "2026-05-22T04:28:03.047720+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0178_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0178_IMG.JPG", "file_name": "101-0178_IMG.JPG", "file_stem": "101-0178_IMG", "file_ext": ".jpg", "file_size": 769219.0, "mtime": "2002-05-22T21:20:08+00:00", "mtime_ts": 1022102408.0, "ctime": "2002-05-22T21:20:08+00:00", "sha256_file": "be4c1ac86682c404a18aa418f8059a369db0514cf12423b2684f24a32c493320", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:20:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4915", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:20:10", "EXIF DateTimeDigitized": "2002:05:22 21:20:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "117/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010178", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "936"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83fa3652a8a2db487e259b3e74b4d12db7371a80a0afe60321b734ac5ac912c7", "phash": "f70b087af6e61838", "dhash": "1979fccc0c380c0a", "phash_int": -6.454127973762273e+17, "collected_at": "2026-05-22T04:28:03.110727+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0179_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0179_IMG.JPG", "file_name": "101-0179_IMG.JPG", "file_stem": "101-0179_IMG", "file_ext": ".jpg", "file_size": 713288.0, "mtime": "2002-05-22T21:20:16+00:00", "mtime_ts": 1022102416.0, "ctime": "2002-05-22T21:20:16+00:00", "sha256_file": "0a3e9503d8895ebcfd085b67bed486ba4869dc7bbcca1ffabc8d2a09b5214af3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:20:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4848", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:20:18", "EXIF DateTimeDigitized": "2002:05:22 21:20:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "381/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010179", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "762"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f081922c52e371a3b32131edde9a8a2a23a3f9f0a3e77a5303f882e797984a34", "phash": "f60b097ae6e61938", "dhash": "1979fccc0c382c92", "phash_int": -7.174692921709627e+17, "collected_at": "2026-05-22T04:28:03.157818+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0180_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0180_IMG.JPG", "file_name": "101-0180_IMG.JPG", "file_stem": "101-0180_IMG", "file_ext": ".jpg", "file_size": 689162.0, "mtime": "2002-05-22T21:20:36+00:00", "mtime_ts": 1022102436.0, "ctime": "2002-05-22T21:20:36+00:00", "sha256_file": "3a9f8d805c6115d5ac132f3680d6a337e8f758fe0077601564219f308cf79a3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:20:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4606", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:20:37", "EXIF DateTimeDigitized": "2002:05:22 21:20:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "401/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010180", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "802"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e168e0064409b316bed7e7f39041db130a0da6e9e33fb72063cc84829fce260f", "phash": "b7001919f6e217bd", "dhash": "f8fccccd0c7c4d4c", "phash_int": -5.26017676546185e+18, "collected_at": "2026-05-22T04:28:03.193819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0181_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0181_IMG.JPG", "file_name": "101-0181_IMG.JPG", "file_stem": "101-0181_IMG", "file_ext": ".jpg", "file_size": 679302.0, "mtime": "2002-05-22T21:20:52+00:00", "mtime_ts": 1022102452.0, "ctime": "2002-05-22T21:20:52+00:00", "sha256_file": "ddc8871b89bd378efaca44833441ba7f0f33e9afd29712db51aed7f8a3e9e64d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:20:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3473", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:20:54", "EXIF DateTimeDigitized": "2002:05:22 21:20:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "557/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010181", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2785"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ba808c88cd273290f101c9b3bd93cd39788cc6effe2bd5e10ed1d0e34121ced", "phash": "b7b94a043762d1cb", "dhash": "1838182c2c446d29", "phash_int": -5.208050112107721e+18, "collected_at": "2026-05-22T04:28:03.244819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0182_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0182_IMG.JPG", "file_name": "101-0182_IMG.JPG", "file_stem": "101-0182_IMG", "file_ext": ".jpg", "file_size": 454369.0, "mtime": "2002-05-22T21:21:38+00:00", "mtime_ts": 1022102498.0, "ctime": "2002-05-22T21:21:38+00:00", "sha256_file": "f0d3db526872587f27ed29dd12620bfe7b11e8cc426055767ff3eb70cd41360e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:21:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3422", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:21:39", "EXIF DateTimeDigitized": "2002:05:22 21:21:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1827/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010182", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1827"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f41656f503d1ee131747f309eb2c180efc322f51dea788a4260429b6bc1a9b9c", "phash": "ff6b356894608d34", "dhash": "4359517979713c3c", "phash_int": -4.188104824766126e+16, "collected_at": "2026-05-22T04:28:03.273911+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0183_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0183_IMG.JPG", "file_name": "101-0183_IMG.JPG", "file_stem": "101-0183_IMG", "file_ext": ".jpg", "file_size": 821580.0, "mtime": "2002-05-22T21:30:48+00:00", "mtime_ts": 1022103048.0, "ctime": "2002-05-22T21:30:48+00:00", "sha256_file": "3b2c7fd0377308262b2098bfdb999cbce35e3a2a91605d871640dbb648f5e98c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:30:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4906", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:30:49", "EXIF DateTimeDigitized": "2002:05:22 21:30:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010183", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "790d2d298e2f4602d58e4b6fe7e09b70869db94bf09da33d53089cd577c71959", "phash": "8b5c7266d9d61c62", "dhash": "b8b93373734d4dd1", "phash_int": -8.40471701851327e+18, "collected_at": "2026-05-22T04:28:03.308003+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0184_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0184_IMG.JPG", "file_name": "101-0184_IMG.JPG", "file_stem": "101-0184_IMG", "file_ext": ".jpg", "file_size": 773906.0, "mtime": "2002-05-22T21:31:26+00:00", "mtime_ts": 1022103086.0, "ctime": "2002-05-22T21:31:26+00:00", "sha256_file": "1a043f3392545c1a292c3218e3cd4540859c4c48eae0032ac6d04f37a81f4db4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:31:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5025", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:31:28", "EXIF DateTimeDigitized": "2002:05:22 21:31:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010184", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64c7d08f3b4cf5752bbe6888b1fa4bca69557d7cb8d8b4afceec5505309ab429", "phash": "fc786e84918593ec", "dhash": "26222a30b0e4a4a6", "phash_int": -2.5433186329024413e+17, "collected_at": "2026-05-22T04:28:03.357010+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0185_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0185_IMG.JPG", "file_name": "101-0185_IMG.JPG", "file_stem": "101-0185_IMG", "file_ext": ".jpg", "file_size": 706248.0, "mtime": "2002-05-22T21:31:36+00:00", "mtime_ts": 1022103096.0, "ctime": "2002-05-22T21:31:36+00:00", "sha256_file": "69b9ee3bb81c10404d32d2470f971a01ea8e9f4a37ad06cc1e5b54db64aacf00", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:31:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4819", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:31:38", "EXIF DateTimeDigitized": "2002:05:22 21:31:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010185", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47d0c3f20a0457c825af02e0d6a530c35e828d496b4e8b95cb121a708c50b585", "phash": "ec7c7ad8026623a7", "dhash": "262626a626a6a6e4", "phash_int": -1.4061139154746644e+18, "collected_at": "2026-05-22T04:28:03.397005+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0186_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0186_IMG.JPG", "file_name": "101-0186_IMG.JPG", "file_stem": "101-0186_IMG", "file_ext": ".jpg", "file_size": 727347.0, "mtime": "2002-05-22T21:32:00+00:00", "mtime_ts": 1022103120.0, "ctime": "2002-05-22T21:32:00+00:00", "sha256_file": "e3d432ebffb2d93da737a5a8e95bbcfcce90e06304d6b7ccc32b6856f203517f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:32:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4983", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:32:02", "EXIF DateTimeDigitized": "2002:05:22 21:32:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010186", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "122", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d7caa766b408a76594b49a0268941df3b179646f608d7450732a484fe36219c", "phash": "cecc2c6cf20e8d87", "dhash": "a5a1e169494145e0", "phash_int": -3.5454099602182927e+18, "collected_at": "2026-05-22T04:28:03.445009+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0187_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0187_IMG.JPG", "file_name": "101-0187_IMG.JPG", "file_stem": "101-0187_IMG", "file_ext": ".jpg", "file_size": 787181.0, "mtime": "2002-05-22T21:32:48+00:00", "mtime_ts": 1022103168.0, "ctime": "2002-05-22T21:32:48+00:00", "sha256_file": "c876e10faad32d171e59509fe8e3ef82384c1b7a69052608e8927c82fbdc95e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:32:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5633", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:32:50", "EXIF DateTimeDigitized": "2002:05:22 21:32:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 149, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010187", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6bc2ad4d87d99801c5127dd83682d1431e7b19bab6480eae6f873c1b9ee2210", "phash": "c878646c348d9f9e", "dhash": "17911999b3f3f34c", "phash_int": -4.0013378530177434e+18, "collected_at": "2026-05-22T04:28:03.484009+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0188_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0188_IMG.JPG", "file_name": "101-0188_IMG.JPG", "file_stem": "101-0188_IMG", "file_ext": ".jpg", "file_size": 770504.0, "mtime": "2002-05-22T21:32:54+00:00", "mtime_ts": 1022103174.0, "ctime": "2002-05-22T21:32:54+00:00", "sha256_file": "6533cf00a1eee5a6f5063b2b2ab396308e45263f1900ea125f4aca01296dda51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:32:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5618", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:32:56", "EXIF DateTimeDigitized": "2002:05:22 21:32:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[122, 141, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010188", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "002ef40027403d92ad91961f071998a6ad655713bfd35ee885c44d4cf8eb347a", "phash": "e8706ced179d96a0", "dhash": "12959998b1f3f366", "phash_int": -1.6977372939594243e+18, "collected_at": "2026-05-22T04:28:03.523107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0189_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0189_IMG.JPG", "file_name": "101-0189_IMG.JPG", "file_stem": "101-0189_IMG", "file_ext": ".jpg", "file_size": 1040926.0, "mtime": "2002-05-22T21:34:04+00:00", "mtime_ts": 1022103244.0, "ctime": "2002-05-22T21:34:04+00:00", "sha256_file": "6a078a0fbc0df5a8baa923a550a527879e577f587de9917abe2265ce9d58d678", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:34:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5589", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:34:05", "EXIF DateTimeDigitized": "2002:05:22 21:34:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 303, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010189", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "176789b833c3e318f384dbda86386f1d33e14e04afbf216dac3671e984067e6b", "phash": "d363675365b89690", "dhash": "cac09cd898b9b926", "phash_int": -3.21461210112586e+18, "collected_at": "2026-05-22T04:28:03.582112+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0190_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0190_IMG.JPG", "file_name": "101-0190_IMG.JPG", "file_stem": "101-0190_IMG", "file_ext": ".jpg", "file_size": 1052453.0, "mtime": "2002-05-22T21:34:08+00:00", "mtime_ts": 1022103248.0, "ctime": "2002-05-22T21:34:08+00:00", "sha256_file": "07a59961dad8f49149d7d72ff7edc43fd49f8b7e0b1d45b3ec5dcf5b4c4cb4c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:34:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5522", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:34:10", "EXIF DateTimeDigitized": "2002:05:22 21:34:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 322, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010190", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d59278d11e27e02cf8dc597f745c5cb8a4c7697ff4ddd1d3aa825604dceeeb36", "phash": "d3636dd365b89290", "dhash": "cac89cd898b9b926", "phash_int": -3.2146049543002803e+18, "collected_at": "2026-05-22T04:28:03.614113+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0191_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0191_IMG.JPG", "file_name": "101-0191_IMG.JPG", "file_stem": "101-0191_IMG", "file_ext": ".jpg", "file_size": 958917.0, "mtime": "2002-05-22T21:34:14+00:00", "mtime_ts": 1022103254.0, "ctime": "2002-05-22T21:34:14+00:00", "sha256_file": "e0b68ba284ca79dc1a4d552c1f8a73684a62d8c9a0fae3d349e72bce9f337aba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:34:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4747", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:34:16", "EXIF DateTimeDigitized": "2002:05:22 21:34:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010191", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2cafadecc9225b51d21726fa83e0a84f5a8b5fd31ab25f104efe647c5faf6d2a", "phash": "89cadde566523171", "dhash": "f3f33b7defdadafa", "phash_int": -8.51775176788396e+18, "collected_at": "2026-05-22T04:28:03.693246+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0192_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0192_IMG.JPG", "file_name": "101-0192_IMG.JPG", "file_stem": "101-0192_IMG", "file_ext": ".jpg", "file_size": 893261.0, "mtime": "2002-05-22T21:34:20+00:00", "mtime_ts": 1022103260.0, "ctime": "2002-05-22T21:34:20+00:00", "sha256_file": "947a9a7c5501937659c73a88f11d4220fbe8ae1cc9bff708fedd70cff9c1b37a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:34:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4095", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:34:21", "EXIF DateTimeDigitized": "2002:05:22 21:34:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010192", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fbde58d1e7108d53647c6fa8ba167450987cc9bff765ad6b7ca80cc57bd2934c", "phash": "c1c3333f5ec0c179", "dhash": "c2c2c28234849696", "phash_int": -4.484684456665235e+18, "collected_at": "2026-05-22T04:28:03.724249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0193_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0193_IMG.JPG", "file_name": "101-0193_IMG.JPG", "file_stem": "101-0193_IMG", "file_ext": ".jpg", "file_size": 960471.0, "mtime": "2002-05-22T21:34:24+00:00", "mtime_ts": 1022103264.0, "ctime": "2002-05-22T21:34:24+00:00", "sha256_file": "bde65cab40cb0be222139ae4be784cadf0048f6cd9ebf173ef45b9a567bf9ffe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:34:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4699", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:34:26", "EXIF DateTimeDigitized": "2002:05:22 21:34:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010193", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf762aa1e4e695db7ebc547c4f767719282646de4dfef3ed292bf89112c3b241", "phash": "d37b3c7469b46441", "dhash": "380949c9c1d09cd8", "phash_int": -3.207903838884044e+18, "collected_at": "2026-05-22T04:28:03.796249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0194_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0194_IMG.JPG", "file_name": "101-0194_IMG.JPG", "file_stem": "101-0194_IMG", "file_ext": ".jpg", "file_size": 717264.0, "mtime": "2002-05-22T21:35:00+00:00", "mtime_ts": 1022103300.0, "ctime": "2002-05-22T21:35:00+00:00", "sha256_file": "070ef6b61f42540f082006574a6dca321278827c3d12a9b05a598242201cea23", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:35:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4547", "EXIF ExposureTime": "1", "EXIF FNumber": "8", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:35:01", "EXIF DateTimeDigitized": "2002:05:22 21:35:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010194", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Slow Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "On", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55f315c30e6b14243b7ac792103f69a612359a07c6eb7b6eda7bdbc844e7e9df", "phash": "e1f068cd939cb668", "dhash": "939595d8d8525232", "phash_int": -2.1661161886111032e+18, "collected_at": "2026-05-22T04:28:03.845254+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0196_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0196_IMG.JPG", "file_name": "101-0196_IMG.JPG", "file_stem": "101-0196_IMG", "file_ext": ".jpg", "file_size": 123081.0, "mtime": "2002-05-23T18:59:34+00:00", "mtime_ts": 1022180374.0, "ctime": "2002-05-23T18:59:34+00:00", "sha256_file": "f65ef693b0844bed682e200df5df81ddd30426610fa6aa47de379baff3514cb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 18:59:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2858", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 18:59:35", "EXIF DateTimeDigitized": "2002:05:23 18:59:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 309, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010196", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2041a86f778ac0c9e752c3ca68cc727a13987af50803934b3c8541493f08a985", "phash": "954671c03d9f77c0", "dhash": "f0ecec78f0e0f0fc", "phash_int": -7.690334243207023e+18, "collected_at": "2026-05-22T04:28:03.880252+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0197_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0197_IMG.JPG", "file_name": "101-0197_IMG.JPG", "file_stem": "101-0197_IMG", "file_ext": ".jpg", "file_size": 157663.0, "mtime": "2002-05-23T18:59:40+00:00", "mtime_ts": 1022180380.0, "ctime": "2002-05-23T18:59:40+00:00", "sha256_file": "6836fb69516886a81c7e7ba021f2f704eadbf93cf3ad4e76746a78392af844aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 18:59:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4466", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 18:59:42", "EXIF DateTimeDigitized": "2002:05:23 18:59:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010197", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd5036fce560ae633d9ad8d279fc781aeb00eab8d8c4d64163f843903eeb1f86", "phash": "c1ef969c314f6891", "dhash": "ecc8c3c39233e4cc", "phash_int": -4.472190307369261e+18, "collected_at": "2026-05-22T04:28:03.895252+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0195_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0195_IMG.JPG", "file_name": "101-0195_IMG.JPG", "file_stem": "101-0195_IMG", "file_ext": ".jpg", "file_size": 747147.0, "mtime": "2002-05-22T21:35:16+00:00", "mtime_ts": 1022103316.0, "ctime": "2002-05-22T21:35:16+00:00", "sha256_file": "3428796b394b59c6dc29e13ae1c71d6c886736d73ba954ef4f8d6dc80496836c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:22 21:35:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4605", "EXIF ExposureTime": "1", "EXIF FNumber": "8", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:22 21:35:17", "EXIF DateTimeDigitized": "2002:05:22 21:35:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010195", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Slow Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "On", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5249357dcca3c927711d5fb9263852755228bded081f51929881d940f30ffbe", "phash": "d1ba7a6e68726c50", "dhash": "91989af6b6268c92", "phash_int": -3.3342179594971105e+18, "collected_at": "2026-05-22T04:28:03.903257+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\101-0200_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\101-0200_IMG.JPG", "file_name": "101-0200_IMG.JPG", "file_stem": "101-0200_IMG", "file_ext": ".jpg", "file_size": 202152.0, "mtime": "2002-05-23T19:00:42+00:00", "mtime_ts": 1022180442.0, "ctime": "2002-05-23T19:00:42+00:00", "sha256_file": "160b4841b4b2a0e1536dfc4e91866ae5c120082bbdbdc3592eae1aa803582926", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 19:00:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4364", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 19:00:44", "EXIF DateTimeDigitized": "2002:05:23 19:00:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 373, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010200", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65441", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09a7073cdb5b5edf32d38d470da3cdb0e08fa0a97f5739b353c088da905cfca3", "phash": "a533346d497b5a54", "dhash": "27eeccebe2e7e6e6", "phash_int": -6.542828189650298e+18, "collected_at": "2026-05-22T04:28:03.910256+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0203_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0203_IMG.JPG", "file_name": "102-0203_IMG.JPG", "file_stem": "102-0203_IMG", "file_ext": ".jpg", "file_size": 1290740.0, "mtime": "2002-05-23T23:43:56+00:00", "mtime_ts": 1022197436.0, "ctime": "2002-05-23T23:43:56+00:00", "sha256_file": "05fe892000d62211876931f475090fd1858095bf4503f96ba132975f26041e0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 23:43:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6611", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 23:43:57", "EXIF DateTimeDigitized": "2002:05:23 23:43:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020203", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f21100c3f2150b7ecae993942d676bde9821fd4e69b8d4b7e625234ec48ce9b3", "phash": "9c61451f2e197cd6", "dhash": "a2c085b13534b8b4", "phash_int": -7.178380330832135e+18, "collected_at": "2026-05-22T04:28:04.004794+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0202_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0202_IMG.JPG", "file_name": "102-0202_IMG.JPG", "file_stem": "102-0202_IMG", "file_ext": ".jpg", "file_size": 821455.0, "mtime": "2002-05-23T19:01:16+00:00", "mtime_ts": 1022180476.0, "ctime": "2002-05-23T19:01:16+00:00", "sha256_file": "053a8d5778b8247250cebe3fe2228d6e040716a04c9cb6c863ab8851be08de20", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:23 19:01:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4547", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:23 19:01:18", "EXIF DateTimeDigitized": "2002:05:23 19:01:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020202", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f08b878b12cb3a3cb44094a1e7536b828ed386c044aee2eae2f8f01f2f03977", "phash": "b2b54c5b46a46d5a", "dhash": "ac2c0c0c0d190d3c", "phash_int": -5.569461409262835e+18, "collected_at": "2026-05-22T04:28:04.012795+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0207_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0207_IMG.JPG", "file_name": "102-0207_IMG.JPG", "file_stem": "102-0207_IMG", "file_ext": ".jpg", "file_size": 1511300.0, "mtime": "2002-05-24T00:16:12+00:00", "mtime_ts": 1022199372.0, "ctime": "2002-05-24T00:16:12+00:00", "sha256_file": "216cdbe519cccab687a1d90efa441c376bc99fdb6736d288afc8b95cc00c20fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:16:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5773", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:16:13", "EXIF DateTimeDigitized": "2002:05:24 00:16:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020207", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "4", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2cf92a3d0c8b1a3f0b7f95f9d594357b2d2039fcc2a68de49312d3fff0254c47", "phash": "8552946552fbe33c", "dhash": "e4f4f179fad2f6f4", "phash_int": -8.839839955670015e+18, "collected_at": "2026-05-22T04:28:04.177068+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0208_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0208_IMG.JPG", "file_name": "102-0208_IMG.JPG", "file_stem": "102-0208_IMG", "file_ext": ".jpg", "file_size": 1586730.0, "mtime": "2002-05-24T00:16:24+00:00", "mtime_ts": 1022199384.0, "ctime": "2002-05-24T00:16:24+00:00", "sha256_file": "d633405564c1dd8168a92f3d86c27144eaae8d89f4014039f1f256f8a0f14348", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:16:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5898", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:16:17", "EXIF DateTimeDigitized": "2002:05:24 00:16:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020208", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54f15eb6ae0760ace7f0c13ccb569d599ca278c2adbfde9e46e2137f4b870a9b", "phash": "ec935b6a36905276", "dhash": "a8b2a2a60683a383", "phash_int": -1.3996745474420035e+18, "collected_at": "2026-05-22T04:28:04.179067+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0210_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0210_IMG.JPG", "file_name": "102-0210_IMG.JPG", "file_stem": "102-0210_IMG", "file_ext": ".jpg", "file_size": 1638693.0, "mtime": "2002-05-24T00:16:24+00:00", "mtime_ts": 1022199384.0, "ctime": "2002-05-24T00:16:24+00:00", "sha256_file": "36837d23aee5a2b547a802d5d8f0bbf39ad974807acd7378fca2283aa26be86e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:16:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6044", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:16:26", "EXIF DateTimeDigitized": "2002:05:24 00:16:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020210", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "3", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7438f075cc2fdd05a69e1ed2658e59eab824eb9713bd866a1715e516deaf6e3f", "phash": "ec95596a3690d276", "dhash": "b2b2a2a607a3a383", "phash_int": -1.399113796511805e+18, "collected_at": "2026-05-22T04:28:04.279072+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0209_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0209_IMG.JPG", "file_name": "102-0209_IMG.JPG", "file_stem": "102-0209_IMG", "file_ext": ".jpg", "file_size": 1625231.0, "mtime": "2002-05-24T00:16:24+00:00", "mtime_ts": 1022199384.0, "ctime": "2002-05-24T00:16:24+00:00", "sha256_file": "2578c33ca54de723c0f6e28156ef73c416f28dd61d242adfe3739257b9e6dfb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:16:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6069", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:16:21", "EXIF DateTimeDigitized": "2002:05:24 00:16:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020209", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "2", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "704ed16983bf5118e3c65f7e230bad9adac7efffef20d665b0cc653756be60ad", "phash": "ec91596a36905377", "dhash": "aab2a2a626a3a383", "phash_int": -1.40023969641868e+18, "collected_at": "2026-05-22T04:28:04.294073+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0212_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0212_IMG.JPG", "file_name": "102-0212_IMG.JPG", "file_stem": "102-0212_IMG", "file_ext": ".jpg", "file_size": 139145.0, "mtime": "2002-05-24T00:17:00+00:00", "mtime_ts": 1022199420.0, "ctime": "2002-05-24T00:17:00+00:00", "sha256_file": "4ade4e9e6020a9db422d394a866597c01bc69f46e2d56eb9eec1ce5d175480c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:17:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3318", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:17:01", "EXIF DateTimeDigitized": "2002:05:24 00:17:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2219/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "1747839/280", "EXIF FocalPlaneYResolution": "1310879/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020212", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2219"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "792a7c5b36fba0542a3f96fbb51923d268ecc3c5317e66ce591dd39cfd6e5460", "phash": "d5192e594b2b4f0b", "dhash": "dadcc88ac8cacce6", "phash_int": -3.091388708165038e+18, "collected_at": "2026-05-22T04:28:04.381444+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0213_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0213_IMG.JPG", "file_name": "102-0213_IMG.JPG", "file_stem": "102-0213_IMG", "file_ext": ".jpg", "file_size": 147434.0, "mtime": "2002-05-24T00:18:34+00:00", "mtime_ts": 1022199514.0, "ctime": "2002-05-24T00:18:34+00:00", "sha256_file": "b065883874459bc24f599ea424635be575030c4f0aace0daf65b3268ce5fa31b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:18:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4670", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:18:36", "EXIF DateTimeDigitized": "2002:05:24 00:18:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 372, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020213", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "25c2c3ef49f7d13d7e88d393bff348787e80e371adabdb511157fd054383b989", "phash": "cc0e996346a76f83", "dhash": "e060e4e4c001d898", "phash_int": -3.742885588632113e+18, "collected_at": "2026-05-22T04:28:04.395445+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0214_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0214_IMG.JPG", "file_name": "102-0214_IMG.JPG", "file_stem": "102-0214_IMG", "file_ext": ".jpg", "file_size": 124617.0, "mtime": "2002-05-24T00:18:46+00:00", "mtime_ts": 1022199526.0, "ctime": "2002-05-24T00:18:46+00:00", "sha256_file": "454b70813e1bc1f1abcfaaac84a7cc0011c0b69a30752069d1d09fb0ccd94d8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:18:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3163", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:18:48", "EXIF DateTimeDigitized": "2002:05:24 00:18:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020214", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49c1dce774dd609dbd303dc1d3422404a049dfbfcef57160661ce3165399f23b", "phash": "c2c60f9c7e1b9c70", "dhash": "e5c5cb8f83b2f266", "phash_int": -4.4118216201577687e+18, "collected_at": "2026-05-22T04:28:04.406451+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0215_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0215_IMG.JPG", "file_name": "102-0215_IMG.JPG", "file_stem": "102-0215_IMG", "file_ext": ".jpg", "file_size": 135113.0, "mtime": "2002-05-24T00:18:54+00:00", "mtime_ts": 1022199534.0, "ctime": "2002-05-24T00:18:54+00:00", "sha256_file": "0f584a4e1d2b94209a61b1fce303ad0c0f3499f54fe8d5fadeb7e0f4659c40ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:18:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:18:55", "EXIF DateTimeDigitized": "2002:05:24 00:18:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 403, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020215", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ab610d02c9420ec97a811e19dea960b255a24d2e2842f69e5f1e1cd32ac7558", "phash": "c6420f9c0fca1fe9", "dhash": "e4c8c88102b02060", "phash_int": -4.1607459427826975e+18, "collected_at": "2026-05-22T04:28:04.423446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0211_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0211_IMG.JPG", "file_name": "102-0211_IMG.JPG", "file_stem": "102-0211_IMG", "file_ext": ".jpg", "file_size": 1551888.0, "mtime": "2002-05-24T00:16:34+00:00", "mtime_ts": 1022199394.0, "ctime": "2002-05-24T00:16:34+00:00", "sha256_file": "cfdb1121f4a059969f6fcaecfe09b24abf29efd8c6c260fc02a97fb30c5543d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:16:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6031", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:16:36", "EXIF DateTimeDigitized": "2002:05:24 00:16:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020211", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14aa6849a9d191a2f2e7401553c84f0e6f6f2a74e73571e7fd38778e9b22ebc6", "phash": "ec15596a3690d373", "dhash": "b2b2a2a647a3a3a3", "phash_int": -1.4351425935307686e+18, "collected_at": "2026-05-22T04:28:04.436446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0216_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0216_IMG.JPG", "file_name": "102-0216_IMG.JPG", "file_stem": "102-0216_IMG", "file_ext": ".jpg", "file_size": 150386.0, "mtime": "2002-05-24T00:19:22+00:00", "mtime_ts": 1022199562.0, "ctime": "2002-05-24T00:19:22+00:00", "sha256_file": "c56b5898283ef72b7907fd7cf1e133059200a3492d53ca12aef6acb4061062c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:19:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4530", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:19:23", "EXIF DateTimeDigitized": "2002:05:24 00:19:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020216", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "134", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "342ec470cb04e5c6c18209148cc5bdfd0f8ff07a27eebd2d25f633c1c1ae6b14", "phash": "d2ff3f060c263f01", "dhash": "6c088c8c8c8cccc6", "phash_int": -3.242803911477281e+18, "collected_at": "2026-05-22T04:28:04.439449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0218_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0218_IMG.JPG", "file_name": "102-0218_IMG.JPG", "file_stem": "102-0218_IMG", "file_ext": ".jpg", "file_size": 142216.0, "mtime": "2002-05-24T00:19:40+00:00", "mtime_ts": 1022199580.0, "ctime": "2002-05-24T00:19:40+00:00", "sha256_file": "3a7e8bebc8c11a9d7be21a1e10206ac23f1381366acb273c014773d7a5ff500b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:19:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4706", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:19:41", "EXIF DateTimeDigitized": "2002:05:24 00:19:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020218", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68630d0747ef68aaffddbd762824efb5a09d8a3b57ebfce31e4f21dcaf2d2418", "phash": "d8270e21c765977c", "dhash": "c28280809090b220", "phash_int": -2.871310699183368e+18, "collected_at": "2026-05-22T04:28:04.469844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0217_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0217_IMG.JPG", "file_name": "102-0217_IMG.JPG", "file_stem": "102-0217_IMG", "file_ext": ".jpg", "file_size": 155071.0, "mtime": "2002-05-24T00:19:26+00:00", "mtime_ts": 1022199566.0, "ctime": "2002-05-24T00:19:26+00:00", "sha256_file": "265adc77cef3dac3c3e2e6854d12dc31ebf45feb888d135b867127022f939669", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:19:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:19:28", "EXIF DateTimeDigitized": "2002:05:24 00:19:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020217", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "136", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed4ee847c124d856f05c13175b8959d461775c93568bca5b94d5b08f31fb8c8d", "phash": "d0df3f0608263e2f", "dhash": "48888c8c8ccccc96", "phash_int": -3.395926298874987e+18, "collected_at": "2026-05-22T04:28:04.471842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0219_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0219_IMG.JPG", "file_name": "102-0219_IMG.JPG", "file_stem": "102-0219_IMG", "file_ext": ".jpg", "file_size": 960746.0, "mtime": "2002-05-24T00:20:40+00:00", "mtime_ts": 1022199640.0, "ctime": "2002-05-24T00:20:40+00:00", "sha256_file": "901686ce76a2cbd4bdbd3c51d20f5a1e14b9af80416f6198492c771dd771a6e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:20:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5554", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:20:42", "EXIF DateTimeDigitized": "2002:05:24 00:20:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "103/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020219", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "50", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2060"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cfce7b9f74c50a7ece754b99b91cbdf1fd30e4a3e67f86bffe8553ed5467f12d", "phash": "bf84ccda8442bf25", "dhash": "717a6a6a5a1b4d7f", "phash_int": -4.646363676645605e+18, "collected_at": "2026-05-22T04:28:04.550044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0220_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0220_IMG.JPG", "file_name": "102-0220_IMG.JPG", "file_stem": "102-0220_IMG", "file_ext": ".jpg", "file_size": 653319.0, "mtime": "2002-05-24T00:20:52+00:00", "mtime_ts": 1022199652.0, "ctime": "2002-05-24T00:20:52+00:00", "sha256_file": "db4fccd1ecf280d15cb3403127bcbdf7a35ee94f13bd4b5365258fcf76a6110b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:20:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3822", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:20:53", "EXIF DateTimeDigitized": "2002:05:24 00:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1609/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 64, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020220", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "50", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1609"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d036a7cd3fcd06ca5d14741d01e5bbbf4894bcc9c07ed2a172381eeaaf63d2e", "phash": "ee91c9530ea9a527", "dhash": "f395ce6f64246565", "phash_int": -1.2560014624941903e+18, "collected_at": "2026-05-22T04:28:04.562245+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0221_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0221_IMG.JPG", "file_name": "102-0221_IMG.JPG", "file_stem": "102-0221_IMG", "file_ext": ".jpg", "file_size": 272664.0, "mtime": "2002-05-24T00:21:04+00:00", "mtime_ts": 1022199664.0, "ctime": "2002-05-24T00:21:04+00:00", "sha256_file": "345a0bb7883cebd84146550d597471032ebc88952ed0b61d7eef04c5a9594576", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:21:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1277", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:21:05", "EXIF DateTimeDigitized": "2002:05:24 00:21:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "767/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020221", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "50", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Tv-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1534"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91f69c86b5416f8e3ae705e6561d5aad65eb59da56498c465d3c396a8a76827e", "phash": "9d9cc6656b612e26", "dhash": "4230349a0a828202", "phash_int": -7.089573574492475e+18, "collected_at": "2026-05-22T04:28:04.618232+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0224_STA.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0224_STA.JPG", "file_name": "102-0224_STA.JPG", "file_stem": "102-0224_STA", "file_ext": ".jpg", "file_size": 717501.0, "mtime": "2002-05-24T00:23:12+00:00", "mtime_ts": 1022199792.0, "ctime": "2002-05-24T00:23:12+00:00", "sha256_file": "436831ec09aa9547c573a991001587f3ba04c164ded77f7e1a3f5d0916bd077e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:23:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4575", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:23:13", "EXIF DateTimeDigitized": "2002:05:24 00:23:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1937/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 0, 0, 966, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020224", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1937"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc50e0e7b07ff7a0df008c51ab447f97f471fb9532d23ba8bd766f74379472ca", "phash": "a3989c8dbc1ee30b", "dhash": "1a1ac99bcbcb4bcf", "phash_int": -6.658399916506815e+18, "collected_at": "2026-05-22T04:28:04.641229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0225_STB.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0225_STB.JPG", "file_name": "102-0225_STB.JPG", "file_stem": "102-0225_STB", "file_ext": ".jpg", "file_size": 908607.0, "mtime": "2002-05-24T00:23:48+00:00", "mtime_ts": 1022199828.0, "ctime": "2002-05-24T00:23:48+00:00", "sha256_file": "5a9240b61404d254ac44813909ce4e9a4fda9fca02416854028049041b970ba9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:23:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5831", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:23:50", "EXIF DateTimeDigitized": "2002:05:24 00:23:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "231/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 256, 1, 966, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020225", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2310"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11be59bd5acdede39d9392cbcdc941295201f23cf9301310c3fed265b3277d90", "phash": "86e2ed67166c986c", "dhash": "49c9b9a8686866f4", "phash_int": -8.72715210087697e+18, "collected_at": "2026-05-22T04:28:04.695236+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0226_STC.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0226_STC.JPG", "file_name": "102-0226_STC.JPG", "file_stem": "102-0226_STC", "file_ext": ".jpg", "file_size": 962510.0, "mtime": "2002-05-24T00:24:06+00:00", "mtime_ts": 1022199846.0, "ctime": "2002-05-24T00:24:06+00:00", "sha256_file": "d6d71eff5c2f1778731754dba728c70a7e21c1679d5b64e6783c51facd7abdad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:24:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6466", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:24:07", "EXIF DateTimeDigitized": "2002:05:24 00:24:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2629/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 512, 2, 966, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020226", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2629"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7d856e0fd4bcd07af7dfe706e8d3250c4b5bcf6e4d7406c01b7445c1ea03b75", "phash": "d9f81e64264cf81e", "dhash": "b19093938393f1d9", "phash_int": -2.7404069577668055e+18, "collected_at": "2026-05-22T04:28:04.742233+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0227_STA.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0227_STA.JPG", "file_name": "102-0227_STA.JPG", "file_stem": "102-0227_STA", "file_ext": ".jpg", "file_size": 899709.0, "mtime": "2002-05-24T00:24:48+00:00", "mtime_ts": 1022199888.0, "ctime": "2002-05-24T00:24:48+00:00", "sha256_file": "5320ebe0fb56b73d871661434a9aa745ca15d3b1fb34efb481ec99ddfb664411", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:24:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5730", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:24:49", "EXIF DateTimeDigitized": "2002:05:24 00:24:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "304/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[256, 0, 0, 0, 698, 2]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020227", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2432"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8cce5d34cbb37403a5146f5cd38e9b8f8cfbb09e82dd4675252e86a0f16fc5aa", "phash": "9ce2ef2e3c489a49", "dhash": "25edb9acacacb7b6", "phash_int": -7.14188307719726e+18, "collected_at": "2026-05-22T04:28:04.788428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0228_STB.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0228_STB.JPG", "file_name": "102-0228_STB.JPG", "file_stem": "102-0228_STB", "file_ext": ".jpg", "file_size": 785165.0, "mtime": "2002-05-24T00:25:06+00:00", "mtime_ts": 1022199906.0, "ctime": "2002-05-24T00:25:06+00:00", "sha256_file": "057e4e0f576ad4fb8d6c968f7ae2d93dff7b828d0d512b2616c22c43b12701bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:25:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4199", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:25:07", "EXIF DateTimeDigitized": "2002:05:24 00:25:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "27/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[256, 1, 1, 0, 698, 2]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020228", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "675"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "03287c460c87cb2780a8996181e317311090397f69df8c90bc9aabfa188c7cc0", "phash": "8e3c778793153c68", "dhash": "6cecb7f0f372c058", "phash_int": -8.197545797549213e+18, "collected_at": "2026-05-22T04:28:04.829602+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0229_STA.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0229_STA.JPG", "file_name": "102-0229_STA.JPG", "file_stem": "102-0229_STA", "file_ext": ".jpg", "file_size": 828503.0, "mtime": "2002-05-24T00:25:36+00:00", "mtime_ts": 1022199936.0, "ctime": "2002-05-24T00:25:36+00:00", "sha256_file": "1353178dfea5b77dbbe875eca7f17f049ee0e3073a0e0a8948bacae41dcd637a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:25:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5084", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:25:37", "EXIF DateTimeDigitized": "2002:05:24 00:25:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "703/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 0, 0, 966, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020229", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2812"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "309687eb746c821fd0850af34919777116fddb3586e1ac748b42757361ceed92", "phash": "9cf6d349e3932941", "dhash": "392cac6cb737f0f1", "phash_int": -7.136284245217827e+18, "collected_at": "2026-05-22T04:28:04.865593+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0231_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0231_IMG.JPG", "file_name": "102-0231_IMG.JPG", "file_stem": "102-0231_IMG", "file_ext": ".jpg", "file_size": 833560.0, "mtime": "2002-05-24T00:28:56+00:00", "mtime_ts": 1022200136.0, "ctime": "2002-05-24T00:28:56+00:00", "sha256_file": "a336f252ab7222dda1f59e602a58e28d46c781b50b13fd1e9faf671bcab55f56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:28:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3753", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:28:58", "EXIF DateTimeDigitized": "2002:05:24 00:28:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1021/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020231", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2042"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41084158de0de55f87c2c779399d28c24d2ea8df83b2ad48809773f1860c0e54", "phash": "d6188b5655a2df91", "dhash": "78343c6474644c68", "phash_int": -3.0195103472317317e+18, "collected_at": "2026-05-22T04:28:04.947750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0230_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0230_IMG.JPG", "file_name": "102-0230_IMG.JPG", "file_stem": "102-0230_IMG", "file_ext": ".jpg", "file_size": 1838740.0, "mtime": "2002-05-24T00:28:24+00:00", "mtime_ts": 1022200104.0, "ctime": "2002-05-24T00:28:24+00:00", "sha256_file": "65b005f48767ab381c6f4952c2e0cd3575ac059c7f7dcb6ef1b34a44c45ef00f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:28:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5303", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:28:25", "EXIF DateTimeDigitized": "2002:05:24 00:28:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "266/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020230", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2128"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5441de7a9cf17a11b03c395d3c9de596a4c1f1a9075f7e6cd5b052169b9bcbc3", "phash": "cc93da758eaa2526", "dhash": "f1b8cee766262461", "phash_int": -3.705377869956242e+18, "collected_at": "2026-05-22T04:28:04.952742+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0248_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0248_IMG.JPG", "file_name": "102-0248_IMG.JPG", "file_stem": "102-0248_IMG", "file_ext": ".jpg", "file_size": 1935854.0, "mtime": "2002-05-24T19:30:32+00:00", "mtime_ts": 1022268632.0, "ctime": "2002-05-24T19:30:32+00:00", "sha256_file": "799882d22df6340ce445df9aa644101bb08c735389b30b71bb44a5c069ff05bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:30:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7970", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:30:34", "EXIF DateTimeDigitized": "2002:05:24 19:30:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "383/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020248", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1532"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56a721c6ab0a6a5c797a9e6b363e6679ad7ed69cb6a901efd00ba45375593002", "phash": "cb691ca462cdab56", "dhash": "9214514bcdd9f4f8", "phash_int": -3.7894661190977014e+18, "collected_at": "2026-05-22T04:28:05.021820+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-23\\102-0232_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-23\\102-0232_IMG.JPG", "file_name": "102-0232_IMG.JPG", "file_stem": "102-0232_IMG", "file_ext": ".jpg", "file_size": 1079094.0, "mtime": "2002-05-24T00:29:40+00:00", "mtime_ts": 1022200180.0, "ctime": "2002-05-24T00:29:40+00:00", "sha256_file": "e4a03370b264bf441d277debc30fb45ac02d4312e68ca20daea947a7cbdbe6fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 00:29:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3840", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 00:29:41", "EXIF DateTimeDigitized": "2002:05:24 00:29:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 433, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020232", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1b05764fb4a3ad3e96bf5339ce7b6a7b257a654ba3afbca58cee683e52fc5df", "phash": "d58da22a4cf72d8a", "dhash": "22233260739e0ce0", "phash_int": -3.058610269351105e+18, "collected_at": "2026-05-22T04:28:05.033928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0249_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0249_IMG.JPG", "file_name": "102-0249_IMG.JPG", "file_stem": "102-0249_IMG", "file_ext": ".jpg", "file_size": 2141182.0, "mtime": "2002-05-24T19:31:02+00:00", "mtime_ts": 1022268662.0, "ctime": "2002-05-24T19:31:02+00:00", "sha256_file": "e522b7b97716aa4be0b4df45816e38192d68077ae2ced912aeb7696e892eb013", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:31:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8000", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:31:04", "EXIF DateTimeDigitized": "2002:05:24 19:31:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020249", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "572b93109eefcd6bcd81f9ce6d63a9809767e41f0f314e4885769124f1ef23ad", "phash": "8cd5674e5631cb8a", "dhash": "e262faf4f173d3ef", "phash_int": -8.298613152209057e+18, "collected_at": "2026-05-22T04:28:05.120081+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0250_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0250_IMG.JPG", "file_name": "102-0250_IMG.JPG", "file_stem": "102-0250_IMG", "file_ext": ".jpg", "file_size": 1757071.0, "mtime": "2002-05-24T19:31:12+00:00", "mtime_ts": 1022268672.0, "ctime": "2002-05-24T19:31:12+00:00", "sha256_file": "b9a88a07e2d47541a303dd53306e84b7d9ce127568db07f1c1bd19c537483fed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:31:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6468", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:31:14", "EXIF DateTimeDigitized": "2002:05:24 19:31:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020250", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65459", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a36171350f31f64519cddca6d66c85c75aa491882fe9201b891b15e2774c30d", "phash": "d636e469976c930c", "dhash": "e4a46c6c78dba264", "phash_int": -3.0109681586874235e+18, "collected_at": "2026-05-22T04:28:05.137165+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0252_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0252_IMG.JPG", "file_name": "102-0252_IMG.JPG", "file_stem": "102-0252_IMG", "file_ext": ".jpg", "file_size": 1913234.0, "mtime": "2002-05-24T19:32:22+00:00", "mtime_ts": 1022268742.0, "ctime": "2002-05-24T19:32:22+00:00", "sha256_file": "10e900ef7d513c21b6b76f03f02e0a238b5999b73a90d0a6f31ea8edab088947", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:32:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5028", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:32:24", "EXIF DateTimeDigitized": "2002:05:24 19:32:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020252", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57a233497840e3c0c9d2444e87b59cf28e99d0da3f52ab90cf6d96c055ff34fa", "phash": "d91966266cc3b39c", "dhash": "34d8d9d0f0e0f0e0", "phash_int": -2.803096977841868e+18, "collected_at": "2026-05-22T04:28:05.227167+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0251_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0251_IMG.JPG", "file_name": "102-0251_IMG.JPG", "file_stem": "102-0251_IMG", "file_ext": ".jpg", "file_size": 1999352.0, "mtime": "2002-05-24T19:32:14+00:00", "mtime_ts": 1022268734.0, "ctime": "2002-05-24T19:32:14+00:00", "sha256_file": "7c5a42cf1e5ea1da57dd14740428d50569ee161716b3df0037798f0cb6a37763", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:32:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5165", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:32:16", "EXIF DateTimeDigitized": "2002:05:24 19:32:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020251", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65460", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26305807d9463cc030f3b49a5565d18ee2074c61d4bf55a143a4628c3a6b8f5f", "phash": "9b1964646dc0f6f1", "dhash": "b298f9f97260f0f0", "phash_int": -7.270669740912085e+18, "collected_at": "2026-05-22T04:28:05.277267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0253_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0253_IMG.JPG", "file_name": "102-0253_IMG.JPG", "file_stem": "102-0253_IMG", "file_ext": ".jpg", "file_size": 2037663.0, "mtime": "2002-05-24T19:32:52+00:00", "mtime_ts": 1022268772.0, "ctime": "2002-05-24T19:32:52+00:00", "sha256_file": "4f5ccc701c836bb2bf52267cced5509b62c79da52e0cff3051c0f539edbc4408", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:32:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7527", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:32:53", "EXIF DateTimeDigitized": "2002:05:24 19:32:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020253", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68a925811056118ab955db4260dddb675096d85025d5b16b7af431ad4f33b6d4", "phash": "dc7b916e907c720c", "dhash": "18d090b0e0e4e2f8", "phash_int": -2.55929205917349e+18, "collected_at": "2026-05-22T04:28:05.358762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0254_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0254_IMG.JPG", "file_name": "102-0254_IMG.JPG", "file_stem": "102-0254_IMG", "file_ext": ".jpg", "file_size": 1885833.0, "mtime": "2002-05-24T19:34:16+00:00", "mtime_ts": 1022268856.0, "ctime": "2002-05-24T19:34:16+00:00", "sha256_file": "222b8af8300ac8330bc753f519ab4e1d3585937436135e615193c25aad252dd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 19:34:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5048", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 19:34:18", "EXIF DateTimeDigitized": "2002:05:24 19:34:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 378, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020254", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65480", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0d0894ed4c79c872ab9cf714979f713300eca719637b39cc612cbc85fa9de74", "phash": "9ace6531643278ee", "dhash": "69686978f0f9d8f0", "phash_int": -7.291779483857422e+18, "collected_at": "2026-05-22T04:28:05.369028+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0255_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0255_IMG.JPG", "file_name": "102-0255_IMG.JPG", "file_stem": "102-0255_IMG", "file_ext": ".jpg", "file_size": 1506180.0, "mtime": "2002-05-24T20:34:00+00:00", "mtime_ts": 1022272440.0, "ctime": "2002-05-24T20:34:00+00:00", "sha256_file": "fa3fc804fb83003ba64885b73ed8836ae0492eed013f67aae270d149ed7c34d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:34:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5437", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:34:01", "EXIF DateTimeDigitized": "2002:05:24 20:34:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "869/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020255", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "76", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4345"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9cfe4ad25bc91fc0b087e3b6eda44c0951225bfe0c506ce8774cd5903cfdb7a2", "phash": "ae8f5112ee48aaae", "dhash": "656a63636537140d", "phash_int": -5.868382647691466e+18, "collected_at": "2026-05-22T04:28:05.472456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0256_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0256_IMG.JPG", "file_name": "102-0256_IMG.JPG", "file_stem": "102-0256_IMG", "file_ext": ".jpg", "file_size": 1529804.0, "mtime": "2002-05-24T20:34:12+00:00", "mtime_ts": 1022272452.0, "ctime": "2002-05-24T20:34:12+00:00", "sha256_file": "3b639f9b123a79713711de54c9892430fa511e4c34dd8112fdf21d8fb0ba8a41", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:34:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4754", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:34:13", "EXIF DateTimeDigitized": "2002:05:24 20:34:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "93/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020256", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2325"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22c806a9a331800097ff772a9aca0614994ae647453f6fe89d848bd252f818c0", "phash": "929b3a6e2d95c926", "dhash": "6969d8d8d5c9cdc9", "phash_int": -7.882642477896317e+18, "collected_at": "2026-05-22T04:28:05.491524+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0257_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0257_IMG.JPG", "file_name": "102-0257_IMG.JPG", "file_stem": "102-0257_IMG", "file_ext": ".jpg", "file_size": 1360441.0, "mtime": "2002-05-24T20:34:50+00:00", "mtime_ts": 1022272490.0, "ctime": "2002-05-24T20:34:50+00:00", "sha256_file": "a73d47ab46e9f5c43710054a5531888b2212b48a6bbb3875783702ffdfa7864a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:34:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5324", "EXIF ExposureTime": "1/5", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:34:52", "EXIF DateTimeDigitized": "2002:05:24 20:34:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "67/8", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[126, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020257", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8375"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95c3e6afb372af41ede5d83f23f8a0292043680c5dd5765e11790a0a7bfc08ae", "phash": "8c1d9982f0ba3f59", "dhash": "f07272aeedececd0", "phash_int": -8.350349346411495e+18, "collected_at": "2026-05-22T04:28:05.585730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0258_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0258_IMG.JPG", "file_name": "102-0258_IMG.JPG", "file_stem": "102-0258_IMG", "file_ext": ".jpg", "file_size": 1407726.0, "mtime": "2002-05-24T20:35:00+00:00", "mtime_ts": 1022272500.0, "ctime": "2002-05-24T20:35:00+00:00", "sha256_file": "ab293b7c146c7bb82c027b2df104b0f5bebac3ac6f0f2027210e6d02fdbe94ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:35:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5745", "EXIF ExposureTime": "1/4", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:35:02", "EXIF DateTimeDigitized": "2002:05:24 20:35:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6737/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 47, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020258", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6737"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4056550fc45f38c4ebf7aa609613ddfda58f3318e00af4b3eb8b6d81b3191b53", "phash": "9b1a9a93c1a4b63b", "dhash": "f9783f96587cf8f8", "phash_int": -7.270328689036577e+18, "collected_at": "2026-05-22T04:28:05.601730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0259_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0259_IMG.JPG", "file_name": "102-0259_IMG.JPG", "file_stem": "102-0259_IMG", "file_ext": ".jpg", "file_size": 1217810.0, "mtime": "2002-05-24T20:39:06+00:00", "mtime_ts": 1022272746.0, "ctime": "2002-05-24T20:39:06+00:00", "sha256_file": "f466e7aa9693f901dcf7f67b7de103dee8cd6f05e4a75a7410d76f22a0e6b5d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:39:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5641", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:39:08", "EXIF DateTimeDigitized": "2002:05:24 20:39:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 38, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020259", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a91e559507b851d176f9bb496225f5aa2fb81b090fa1f82b0fbb369c0a153e3", "phash": "ee3f150e31c3c117", "dhash": "2224030323a3c383", "phash_int": -1.2792806184412936e+18, "collected_at": "2026-05-22T04:28:05.695634+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0260_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0260_IMG.JPG", "file_name": "102-0260_IMG.JPG", "file_stem": "102-0260_IMG", "file_ext": ".jpg", "file_size": 1211433.0, "mtime": "2002-05-29T17:04:16+00:00", "mtime_ts": 1022691856.0, "ctime": "2002-05-29T17:04:16+00:00", "sha256_file": "576e0a44a37f523f3009c0e271c4e6b6dba82c10f343e27816dfd49e302c07d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:39:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5740", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:39:19", "EXIF DateTimeDigitized": "2002:05:24 20:39:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[74, 38, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020260", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3a384a18e2ee000ddd0b41af9540fd2ff355a0c40c42546763b54156c00f032", "phash": "d1d3dd3c85a484ba", "dhash": "dad889c01034c5c0", "phash_int": -3.327072447686737e+18, "collected_at": "2026-05-22T04:28:05.711781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0262_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0262_IMG.JPG", "file_name": "102-0262_IMG.JPG", "file_stem": "102-0262_IMG", "file_ext": ".jpg", "file_size": 1136803.0, "mtime": "2002-05-24T20:44:58+00:00", "mtime_ts": 1022273098.0, "ctime": "2002-05-24T20:44:58+00:00", "sha256_file": "8885acd282517babeb73f49c8c9aeb04d0db4e1fe289961c8daa54e74eafb633", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:45:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:45:00", "EXIF DateTimeDigitized": "2002:05:24 20:45:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 12, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020262", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9be334e2b8e016e6faeafac5fe2f635a90047ee75bbcce9905ee9716386700fe", "phash": "cbf8c9c1818b8e9b", "dhash": "930221554565cbc3", "phash_int": -3.74902485684666e+18, "collected_at": "2026-05-22T04:28:05.771790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0261_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0261_IMG.JPG", "file_name": "102-0261_IMG.JPG", "file_stem": "102-0261_IMG", "file_ext": ".jpg", "file_size": 1340954.0, "mtime": "2002-05-24T20:39:32+00:00", "mtime_ts": 1022272772.0, "ctime": "2002-05-24T20:39:32+00:00", "sha256_file": "c6a8fe7dcbd64f93f3083a9ecb673c82d08f57caa0d53747a4b50b853e0cec01", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:39:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6141", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:39:34", "EXIF DateTimeDigitized": "2002:05:24 20:39:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 55, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020261", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d367663845296544c76e31dd398ab0992a654b7743ccf01449846fbf823bfbc", "phash": "e55fb4f230199964", "dhash": "6c67f2f2c543c686", "phash_int": -1.9186159639544727e+18, "collected_at": "2026-05-22T04:28:05.786879+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0263_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0263_IMG.JPG", "file_name": "102-0263_IMG.JPG", "file_stem": "102-0263_IMG", "file_ext": ".jpg", "file_size": 1105249.0, "mtime": "2002-05-24T20:45:36+00:00", "mtime_ts": 1022273136.0, "ctime": "2002-05-24T20:45:36+00:00", "sha256_file": "9117d8af01072e9906b28ddd381b6c352161cf2791bf896c79e835293170a1ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:45:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4374", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:45:38", "EXIF DateTimeDigitized": "2002:05:24 20:45:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 12, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020263", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bacc3d5737da8735a881748c4a61e20ae81d03934525ed23b0641be2e7893bc1", "phash": "ebf8c9c2c181ce8b", "dhash": "910321554769c3c3", "phash_int": -1.4431818422648957e+18, "collected_at": "2026-05-22T04:28:05.822956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0264_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0264_IMG.JPG", "file_name": "102-0264_IMG.JPG", "file_stem": "102-0264_IMG", "file_ext": ".jpg", "file_size": 1103606.0, "mtime": "2002-05-24T20:45:50+00:00", "mtime_ts": 1022273150.0, "ctime": "2002-05-24T20:45:50+00:00", "sha256_file": "5be68344b8c7bff5e3b8a711cd21c39f58dd41a7e03017351995f3c13d65af2a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:45:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4352", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:45:52", "EXIF DateTimeDigitized": "2002:05:24 20:45:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 12, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020264", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0b2dc0c053a1fb83574af730b8aa535c0f50eab8637f434b6bb4a7d65bd13da", "phash": "eafcc9c0c081cf9b", "dhash": "910323154569c3c3", "phash_int": -1.5141135450026926e+18, "collected_at": "2026-05-22T04:28:05.899508+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0265_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0265_IMG.JPG", "file_name": "102-0265_IMG.JPG", "file_stem": "102-0265_IMG", "file_ext": ".jpg", "file_size": 850408.0, "mtime": "2002-05-24T20:46:32+00:00", "mtime_ts": 1022273192.0, "ctime": "2002-05-24T20:46:32+00:00", "sha256_file": "d866345b7fcb6fdaa5d424813854640a6a807c8e3162b49e16fc3a5a5291465b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:46:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3134", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:46:34", "EXIF DateTimeDigitized": "2002:05:24 20:46:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "822/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 26, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020265", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b03915a233da7938e9fe39f5e7345e2171db6f4682a74aadc3b215d7026b634", "phash": "8bcf7c7562228a36", "dhash": "6b7369c9e96b9393", "phash_int": -8.372336338659014e+18, "collected_at": "2026-05-22T04:28:05.914507+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0266_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0266_IMG.JPG", "file_name": "102-0266_IMG.JPG", "file_stem": "102-0266_IMG", "file_ext": ".jpg", "file_size": 842931.0, "mtime": "2002-05-24T20:46:44+00:00", "mtime_ts": 1022273204.0, "ctime": "2002-05-24T20:46:44+00:00", "sha256_file": "0bdcaa538333c77884975bc82ee05310e259ce68133a947d52dfec468f45a844", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:46:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3067", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:46:45", "EXIF DateTimeDigitized": "2002:05:24 20:46:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "757/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 26, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020266", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7570"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "923dacb0f42c6a58566b3c36f8c28e749f73cd7ae30685bd2bcf445fc7bb1c0b", "phash": "8aff7930229a9a99", "dhash": "1b3361e9ed693141", "phash_int": -8.43088672976833e+18, "collected_at": "2026-05-22T04:28:06.000778+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0267_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0267_IMG.JPG", "file_name": "102-0267_IMG.JPG", "file_stem": "102-0267_IMG", "file_ext": ".jpg", "file_size": 839955.0, "mtime": "2002-05-24T20:47:14+00:00", "mtime_ts": 1022273234.0, "ctime": "2002-05-24T20:47:14+00:00", "sha256_file": "f3b7483f79f2d6c911d1930e26300574e529a99f1db6a62dfc4f23f437b647e2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:47:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3029", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:47:15", "EXIF DateTimeDigitized": "2002:05:24 20:47:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "639/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 1039, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020267", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "248", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5112"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca09c4f3707c635ed95796d7a8d11483ca41004d232700bdb4bb91e993f2349c", "phash": "db292096f5db828d", "dhash": "2bb3795951693114", "phash_int": -2.65455467261621e+18, "collected_at": "2026-05-22T04:28:06.006840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0269_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0269_IMG.JPG", "file_name": "102-0269_IMG.JPG", "file_stem": "102-0269_IMG", "file_ext": ".jpg", "file_size": 960956.0, "mtime": "2002-05-24T20:47:42+00:00", "mtime_ts": 1022273262.0, "ctime": "2002-05-24T20:47:42+00:00", "sha256_file": "6444e5e1b0cbdfe7755c36f7f33a30ab9bab2946b6a75442456d85e3b8ed5291", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:47:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3975", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:47:44", "EXIF DateTimeDigitized": "2002:05:24 20:47:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "801/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 189, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020269", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "241", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8010"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99290fd5f57b97b5cd65edb3895e88f7ed1a3d390073f5e9b185cc2ad5a9aa22", "phash": "fc09c839d0ef82f8", "dhash": "3127260e0f2e2720", "phash_int": -2.854769507172672e+17, "collected_at": "2026-05-22T04:28:06.078167+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0268_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0268_IMG.JPG", "file_name": "102-0268_IMG.JPG", "file_stem": "102-0268_IMG", "file_ext": ".jpg", "file_size": 955698.0, "mtime": "2002-05-24T20:47:32+00:00", "mtime_ts": 1022273252.0, "ctime": "2002-05-24T20:47:32+00:00", "sha256_file": "804cc7adf86344903eb7e0b042c8908e106e5781698a043ac989adc598ad45e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 20:47:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3521", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 20:47:33", "EXIF DateTimeDigitized": "2002:05:24 20:47:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 189, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020268", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "241", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc4c56d2ada7b871c4239ee84829d2b2f053fdc115f4e26c0b0e469ef0382de3", "phash": "fb7e9172c0c198c3", "dhash": "880b1383071309c8", "phash_int": -3.2466220107788474e+17, "collected_at": "2026-05-22T04:28:06.099255+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0270_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0270_IMG.JPG", "file_name": "102-0270_IMG.JPG", "file_stem": "102-0270_IMG", "file_ext": ".jpg", "file_size": 1419727.0, "mtime": "2002-05-24T21:16:50+00:00", "mtime_ts": 1022275010.0, "ctime": "2002-05-24T21:16:50+00:00", "sha256_file": "501a627b64995840ce81f2f7207343185843ed114e6e1875e9ef32dbeac20cf5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:16:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6291", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:16:51", "EXIF DateTimeDigitized": "2002:05:24 21:16:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 957, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020270", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ec94c1497bca163062e3a8c8b4ccd79be78131b26412401a736b0d0fe3fa713", "phash": "cd3137a34e2c5c5a", "dhash": "d654323333534761", "phash_int": -3.6610838475447757e+18, "collected_at": "2026-05-22T04:28:06.196261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0271_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0271_IMG.JPG", "file_name": "102-0271_IMG.JPG", "file_stem": "102-0271_IMG", "file_ext": ".jpg", "file_size": 1423785.0, "mtime": "2002-05-24T21:17:08+00:00", "mtime_ts": 1022275028.0, "ctime": "2002-05-24T21:17:08+00:00", "sha256_file": "8484a2130fa908fc42f52e79e21ed5f9d8c6d70ddc812cd3e2f446a6fafaeb55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:09", "EXIF DateTimeDigitized": "2002:05:24 21:17:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 960, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020271", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b38bbc0ed4442017824ad383360f11e92e551090e62cf220ce6f280fb879e196", "phash": "cd7c10b10f2d744f", "dhash": "9494226363d6c3e0", "phash_int": -3.6400160461723105e+18, "collected_at": "2026-05-22T04:28:06.223257+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0272_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0272_IMG.JPG", "file_name": "102-0272_IMG.JPG", "file_stem": "102-0272_IMG", "file_ext": ".jpg", "file_size": 1321236.0, "mtime": "2002-05-24T21:17:30+00:00", "mtime_ts": 1022275050.0, "ctime": "2002-05-24T21:17:30+00:00", "sha256_file": "3d33b80eab76e3da756b01e6ac8ffd41bdd7bdd42ad02d001fcff44c589a416d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6506", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:29", "EXIF DateTimeDigitized": "2002:05:24 21:17:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020272", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "279ccd2d448bbd3b83a9deb9492abb1b1fbe00e04e0777c11b84555741b4054a", "phash": "818157272f667d5a", "dhash": "96d6b2b2b396cee0", "phash_int": -9.114908345010587e+18, "collected_at": "2026-05-22T04:28:06.323859+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0273_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0273_IMG.JPG", "file_name": "102-0273_IMG.JPG", "file_stem": "102-0273_IMG", "file_ext": ".jpg", "file_size": 976699.0, "mtime": "2002-05-24T21:17:30+00:00", "mtime_ts": 1022275050.0, "ctime": "2002-05-24T21:17:30+00:00", "sha256_file": "a6b8991a6d953b46ff452b2472eb3257b21ee919d9c505f93bec44b73ee274f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4318", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:30", "EXIF DateTimeDigitized": "2002:05:24 21:17:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020273", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ad83b8081d47ab7048098d3f4f34cc8cfd341a9c3ad3d58a68b64a1c7da9d6c", "phash": "898857232f67765a", "dhash": "9696b2b3b3968ce0", "phash_int": -8.536477285049993e+18, "collected_at": "2026-05-22T04:28:06.345947+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0274_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0274_IMG.JPG", "file_name": "102-0274_IMG.JPG", "file_stem": "102-0274_IMG", "file_ext": ".jpg", "file_size": 1050929.0, "mtime": "2002-05-24T21:17:30+00:00", "mtime_ts": 1022275050.0, "ctime": "2002-05-24T21:17:30+00:00", "sha256_file": "d432a85fac7830580d0ce9fe47e0a1d97c3a2600a134fab1c54a93d14af64302", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2903", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:31", "EXIF DateTimeDigitized": "2002:05:24 21:17:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020274", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 3)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fee76fc04bb84a34859a06f6fd824e47dc43f6b5a3e0bd9a19c0c760fed03c7", "phash": "b8f8889ed6077ce0", "dhash": "b090130e1e3efefc", "phash_int": -5.118190760729544e+18, "collected_at": "2026-05-22T04:28:06.447170+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0275_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0275_IMG.JPG", "file_name": "102-0275_IMG.JPG", "file_stem": "102-0275_IMG", "file_ext": ".jpg", "file_size": 1026182.0, "mtime": "2002-05-24T21:17:44+00:00", "mtime_ts": 1022275064.0, "ctime": "2002-05-24T21:17:44+00:00", "sha256_file": "07bd99f888b33634ffd3944636ee7a63aee70ad784f742ceaeb6d845a4c15cee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5063", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:43", "EXIF DateTimeDigitized": "2002:05:24 21:17:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020275", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c51a5b93f050af21b4910fe15c78e7a87ec891d4beb103a1d9f8f8dd31e9cb67", "phash": "998963594996b379", "dhash": "f8eaf4f0f2f8ecf0", "phash_int": -7.383260878959365e+18, "collected_at": "2026-05-22T04:28:06.454168+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0276_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0276_IMG.JPG", "file_name": "102-0276_IMG.JPG", "file_stem": "102-0276_IMG", "file_ext": ".jpg", "file_size": 691132.0, "mtime": "2002-05-24T21:17:44+00:00", "mtime_ts": 1022275064.0, "ctime": "2002-05-24T21:17:44+00:00", "sha256_file": "fd1061b2eadb8f5945090d97fa474b5b27572d6ff4471402f894ec26197ab912", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3105", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:45", "EXIF DateTimeDigitized": "2002:05:24 21:17:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020276", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fcbd5128b243c685673fa0bcf64d9523607af1a6a65fce35d312ac4e70e43da", "phash": "ced9716dcc989c30", "dhash": "f250e8e06062e8e0", "phash_int": -3.541674915552257e+18, "collected_at": "2026-05-22T04:28:06.547665+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0277_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0277_IMG.JPG", "file_name": "102-0277_IMG.JPG", "file_stem": "102-0277_IMG", "file_ext": ".jpg", "file_size": 1050974.0, "mtime": "2002-05-24T21:17:44+00:00", "mtime_ts": 1022275064.0, "ctime": "2002-05-24T21:17:44+00:00", "sha256_file": "06b338cb1fafa79257f2be8a897d828d4572f5fbb24d46323cf66523190ac22f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:17:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2810", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:17:46", "EXIF DateTimeDigitized": "2002:05:24 21:17:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020277", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 3)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a719b2affe13adb9d6d67e8ecc8fbedec2667fc3bae9b78394b491c027740e4d", "phash": "9dbc60c4dcf1c991", "dhash": "f46c783870e2d8b0", "phash_int": -7.080678115496573e+18, "collected_at": "2026-05-22T04:28:06.566213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0278_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0278_IMG.JPG", "file_name": "102-0278_IMG.JPG", "file_stem": "102-0278_IMG", "file_ext": ".jpg", "file_size": 1151908.0, "mtime": "2002-05-24T21:18:12+00:00", "mtime_ts": 1022275092.0, "ctime": "2002-05-24T21:18:12+00:00", "sha256_file": "c296f5fb62dd57f99e92bcf81ee8ac8b751dfcecfe752d70ebced3df1c7daa08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:18:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5474", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:18:11", "EXIF DateTimeDigitized": "2002:05:24 21:18:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020278", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce1adc9472044e3d893f3ad748d837418afe8aba25682914db17dd9b3605ec9e", "phash": "c01bf30ede912ce9", "dhash": "68e894f431f1c080", "phash_int": -4.6038189488670525e+18, "collected_at": "2026-05-22T04:28:06.681998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0279_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0279_IMG.JPG", "file_name": "102-0279_IMG.JPG", "file_stem": "102-0279_IMG", "file_ext": ".jpg", "file_size": 826872.0, "mtime": "2002-05-24T21:18:12+00:00", "mtime_ts": 1022275092.0, "ctime": "2002-05-24T21:18:12+00:00", "sha256_file": "b0510dd8eb078db646d44f6afcc10bb34da412653677f34ac4109895e7441beb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:18:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3318", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:18:12", "EXIF DateTimeDigitized": "2002:05:24 21:18:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020279", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d66fbbe5d6e1fcfa3485e3393b5fc5cec14f38cf1e92cd8389ed96accccf49a2", "phash": "c81be30fde912ce8", "dhash": "68e894f471f4c080", "phash_int": -4.027375784454706e+18, "collected_at": "2026-05-22T04:28:06.684994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0280_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0280_IMG.JPG", "file_name": "102-0280_IMG.JPG", "file_stem": "102-0280_IMG", "file_ext": ".jpg", "file_size": 1111027.0, "mtime": "2002-05-24T21:18:12+00:00", "mtime_ts": 1022275092.0, "ctime": "2002-05-24T21:18:12+00:00", "sha256_file": "f961e2e1531718e52dff3257d127d3a4fb2dc5404c0cadc702ffa4ccd3803741", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:18:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5159", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:18:13", "EXIF DateTimeDigitized": "2002:05:24 21:18:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020280", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 3)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45ba3f6deee607e7f1fd171cc2cf7294dd645e6bb75b3007b406e003ffb76c92", "phash": "c01bf3425ed710de", "dhash": "e8d8d4f1f1c0c080", "phash_int": -4.6038187276716564e+18, "collected_at": "2026-05-22T04:28:06.793371+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0281_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0281_IMG.JPG", "file_name": "102-0281_IMG.JPG", "file_stem": "102-0281_IMG", "file_ext": ".jpg", "file_size": 1482899.0, "mtime": "2002-05-24T21:18:32+00:00", "mtime_ts": 1022275112.0, "ctime": "2002-05-24T21:18:32+00:00", "sha256_file": "87e316aac44a2b73724617400440fa7117d7306cf8add6fb10913b8f07ed31c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:18:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6841", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:18:34", "EXIF DateTimeDigitized": "2002:05:24 21:18:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[136, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020281", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b7efc1e1f1245a4225bc4285b40f398b5cd674f0d57bb5907a982ddb1bd39cb", "phash": "91cb52069c757b78", "dhash": "d9d91836b6e49c99", "phash_int": -7.941163329589511e+18, "collected_at": "2026-05-22T04:28:06.802378+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0283_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0283_IMG.JPG", "file_name": "102-0283_IMG.JPG", "file_stem": "102-0283_IMG", "file_ext": ".jpg", "file_size": 1423674.0, "mtime": "2002-05-24T21:19:18+00:00", "mtime_ts": 1022275158.0, "ctime": "2002-05-24T21:19:18+00:00", "sha256_file": "9566f32e105e80e4de0c195a8371528cd4a4751c2592a9c01a4fe3802d88afa3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:19:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6348", "EXIF ExposureTime": "3/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:19:19", "EXIF DateTimeDigitized": "2002:05:24 21:19:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[162, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020283", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "24", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7ad4c57cd09fec0af3f44ef2f12a461471676aa980c3210356338c6c502ff30", "phash": "dcbd477244bf2302", "dhash": "34323232b51930a0", "phash_int": -2.5407960586618706e+18, "collected_at": "2026-05-22T04:28:06.900061+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0282_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0282_IMG.JPG", "file_name": "102-0282_IMG.JPG", "file_stem": "102-0282_IMG", "file_ext": ".jpg", "file_size": 1523574.0, "mtime": "2002-05-24T21:18:50+00:00", "mtime_ts": 1022275130.0, "ctime": "2002-05-24T21:18:50+00:00", "sha256_file": "6b10b7e3b96492441817e8ad6bc2f7a00ea5cb0b650c86022f6e6857f5c87253", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:18:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6903", "EXIF ExposureTime": "3/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:18:52", "EXIF DateTimeDigitized": "2002:05:24 21:18:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[183, 83, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020282", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "24", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9cb8a6f17da8631110edbb65fbac97642b89ce32f08eb8d65570a099aedb6dbd", "phash": "93da76569f910856", "dhash": "ec0c9b5b79e0cc8e", "phash_int": -7.792786090794875e+18, "collected_at": "2026-05-22T04:28:06.985479+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0284_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0284_IMG.JPG", "file_name": "102-0284_IMG.JPG", "file_stem": "102-0284_IMG", "file_ext": ".jpg", "file_size": 1047159.0, "mtime": "2002-05-24T21:19:50+00:00", "mtime_ts": 1022275190.0, "ctime": "2002-05-24T21:19:50+00:00", "sha256_file": "558b61b96882ceb658553504120de723bec9705434ffbde682cb3b73aeb74880", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:19:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5049", "EXIF ExposureTime": "2/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:19:51", "EXIF DateTimeDigitized": "2002:05:24 21:19:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020284", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d81f875db1210f934a7e5b9d9097463f0863a9b81f4643f58fc87352bb2d3c69", "phash": "8dcf7441a3669969", "dhash": "7272736bd3d2e23e", "phash_int": -8.228230168919501e+18, "collected_at": "2026-05-22T04:28:07.002483+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0285_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0285_IMG.JPG", "file_name": "102-0285_IMG.JPG", "file_stem": "102-0285_IMG", "file_ext": ".jpg", "file_size": 1141453.0, "mtime": "2002-05-24T21:19:56+00:00", "mtime_ts": 1022275196.0, "ctime": "2002-05-24T21:19:56+00:00", "sha256_file": "d31492f32d4662f8c1571d26af6d46f784017d25e0a4d828996df377f4613385", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:19:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5351", "EXIF ExposureTime": "2/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:19:58", "EXIF DateTimeDigitized": "2002:05:24 21:19:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020285", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a90137777aea62c6fb9db907d2070551b980d61e45693a89ea9c56b6f77a5425", "phash": "8b8e7c41a76691d9", "dhash": "72726b695bda232e", "phash_int": -8.39063243432142e+18, "collected_at": "2026-05-22T04:28:07.088139+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0286_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0286_IMG.JPG", "file_name": "102-0286_IMG.JPG", "file_stem": "102-0286_IMG", "file_ext": ".jpg", "file_size": 1109550.0, "mtime": "2002-05-24T21:20:24+00:00", "mtime_ts": 1022275224.0, "ctime": "2002-05-24T21:20:24+00:00", "sha256_file": "7e31f18dddd86d92211e4a7a8a54bb8183deee098b2d8e12e7b7539561cde084", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:20:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4541", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:20:25", "EXIF DateTimeDigitized": "2002:05:24 21:20:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020286", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f1023ac1f38d805af2e123aec0d30ffddbcd06436050f96c8af6a0c37046d0e", "phash": "b499499959d5e1c3", "dhash": "d236963496a624b5", "phash_int": -5.43323055245978e+18, "collected_at": "2026-05-22T04:28:07.104194+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0287_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0287_IMG.JPG", "file_name": "102-0287_IMG.JPG", "file_stem": "102-0287_IMG", "file_ext": ".jpg", "file_size": 1532471.0, "mtime": "2002-05-24T21:20:44+00:00", "mtime_ts": 1022275244.0, "ctime": "2002-05-24T21:20:44+00:00", "sha256_file": "be8016bcacd643ce6e708b6a24fc006b12abf12ce4cc52114e4c6b6e6f68cf39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:20:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5425", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:20:46", "EXIF DateTimeDigitized": "2002:05:24 21:20:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[64, 202, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020287", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ddf3165d5d191c6972b0ef09726adc6e55b18efc9f25059f6edc2ec6b661e68", "phash": "b6dd480c51e0d9af", "dhash": "b46ccccc5cdccccc", "phash_int": -5.269976771203115e+18, "collected_at": "2026-05-22T04:28:07.252756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0288_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0288_IMG.JPG", "file_name": "102-0288_IMG.JPG", "file_stem": "102-0288_IMG", "file_ext": ".jpg", "file_size": 1287224.0, "mtime": "2002-05-24T21:29:52+00:00", "mtime_ts": 1022275792.0, "ctime": "2002-05-24T21:29:52+00:00", "sha256_file": "fec56df0c9e68123c6d91369c1f2277457530801eec8c23631bb6081a49936cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:29:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5943", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:29:53", "EXIF DateTimeDigitized": "2002:05:24 21:29:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[133, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020288", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e1135e9fbd1c634ed9afffe2c4ecae11c9319a59fe53b5aa9acf543e7c345ae", "phash": "ab86d9219ef9414e", "dhash": "5be3e3af4fd39331", "phash_int": -6.086939107920364e+18, "collected_at": "2026-05-22T04:28:07.261757+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0289_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0289_IMG.JPG", "file_name": "102-0289_IMG.JPG", "file_stem": "102-0289_IMG", "file_ext": ".jpg", "file_size": 1504817.0, "mtime": "2002-05-24T21:30:02+00:00", "mtime_ts": 1022275802.0, "ctime": "2002-05-24T21:30:02+00:00", "sha256_file": "6fed43404ce6f40ef7db87794f98b97979ad1b3d1f2ecea46f24173f09dc4e5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:30:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5254", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:30:04", "EXIF DateTimeDigitized": "2002:05:24 21:30:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020289", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "19", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed8353107bd1fae96729a80d943891a24455d2256b5b85f4114ba9af370ff120", "phash": "aaa6d9619ebb118a", "dhash": "4ba7ed2f6fdb7131", "phash_int": -6.149989227829719e+18, "collected_at": "2026-05-22T04:28:07.379467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0290_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0290_IMG.JPG", "file_name": "102-0290_IMG.JPG", "file_stem": "102-0290_IMG", "file_ext": ".jpg", "file_size": 1412075.0, "mtime": "2002-05-24T21:30:18+00:00", "mtime_ts": 1022275818.0, "ctime": "2002-05-24T21:30:18+00:00", "sha256_file": "e172af77c661ac9def26493e3c69451f5a03b505e62d0561522f9c1ff4a86fc1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:30:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4909", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:30:20", "EXIF DateTimeDigitized": "2002:05:24 21:30:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1561/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 197, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020290", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6244"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8453e63b19e9cce4105901609d3253af8ce6556a42694fa137a95f224168118", "phash": "82f5d43a3047cbda", "dhash": "0da449cd99296dcc", "phash_int": -9.010062133101606e+18, "collected_at": "2026-05-22T04:28:07.382474+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0292_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0292_IMG.JPG", "file_name": "102-0292_IMG.JPG", "file_stem": "102-0292_IMG", "file_ext": ".jpg", "file_size": 1820611.0, "mtime": "2002-05-24T21:30:44+00:00", "mtime_ts": 1022275844.0, "ctime": "2002-05-24T21:30:44+00:00", "sha256_file": "0e4e2c3f583c59a7827175247b01eee28f4c86c0688659dda3028dc104c25bc3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:30:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4939", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:30:46", "EXIF DateTimeDigitized": "2002:05:24 21:30:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "677/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020292", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2708"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3eb3f4fda3f58ba5c22c6d65ef08a33884adbdabdc4037817fe800408a93376", "phash": "abb95c8c99d15c2c", "dhash": "131f5bdbcbedcdb1", "phash_int": -6.072720863586592e+18, "collected_at": "2026-05-22T04:28:07.491172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0291_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0291_IMG.JPG", "file_name": "102-0291_IMG.JPG", "file_stem": "102-0291_IMG", "file_ext": ".jpg", "file_size": 1835757.0, "mtime": "2002-05-24T21:30:34+00:00", "mtime_ts": 1022275834.0, "ctime": "2002-05-24T21:30:34+00:00", "sha256_file": "dc3ccb1898abb24fe194a9c17c42f18ed124719c4bf0ebaef58155796fe8203a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:24 21:30:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5219", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:24 21:30:35", "EXIF DateTimeDigitized": "2002:05:24 21:30:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "323/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020291", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3230"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7cea01c821f3d63bf3354fb47a692edfe2c9e4fdb4f856bf2672e2f1f0adcde", "phash": "a4ae5bc98d8ddd10", "dhash": "d31d6c66f6333208", "phash_int": -6.580221084320278e+18, "collected_at": "2026-05-22T04:28:07.497287+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0293_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0293_IMG.JPG", "file_name": "102-0293_IMG.JPG", "file_stem": "102-0293_IMG", "file_ext": ".jpg", "file_size": 2180622.0, "mtime": "2002-05-25T11:30:52+00:00", "mtime_ts": 1022326252.0, "ctime": "2002-05-25T11:30:52+00:00", "sha256_file": "181d78f412ab1a46a30e58af717ae201ba0e4539900382ad19f36de5ca32140f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:30:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6056", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:30:53", "EXIF DateTimeDigitized": "2002:05:25 11:30:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020293", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8e77dbcc3ff69e1a04eb1f1ff1d5db5e066d97a0c6a7e9ca6d0d9dfbd69bfc1", "phash": "d692e9a424361fe9", "dhash": "f4f07874f4e5c2b0", "phash_int": -2.9850667118017823e+18, "collected_at": "2026-05-22T04:28:07.579383+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0294_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0294_IMG.JPG", "file_name": "102-0294_IMG.JPG", "file_stem": "102-0294_IMG", "file_ext": ".jpg", "file_size": 2167869.0, "mtime": "2002-05-25T11:31:04+00:00", "mtime_ts": 1022326264.0, "ctime": "2002-05-25T11:31:04+00:00", "sha256_file": "054822dd284441ead78e01389a6737a36d7f2a86695111ab0c0ce37a9eb73e5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:31:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5863", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:31:05", "EXIF DateTimeDigitized": "2002:05:25 11:31:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020294", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8cb657edab38eeca13d5cc2ba7e6752cb82fb6914697531c13801725a9cc5ea", "phash": "d493eba435261bc9", "dhash": "f4f07874f4e4e590", "phash_int": -3.128898225593509e+18, "collected_at": "2026-05-22T04:28:07.597381+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0295_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0295_IMG.JPG", "file_name": "102-0295_IMG.JPG", "file_stem": "102-0295_IMG", "file_ext": ".jpg", "file_size": 2074680.0, "mtime": "2002-05-25T11:31:12+00:00", "mtime_ts": 1022326272.0, "ctime": "2002-05-25T11:31:12+00:00", "sha256_file": "92aa38dc8f121d45e0261425b21d69fc7ecbe3b0fd22a21571fb2d8f3b2885ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:31:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5721", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:31:14", "EXIF DateTimeDigitized": "2002:05:25 11:31:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020295", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d4fb5bcd8bdcc9a01a94a9a3378cced80e81e405284e19c8d74fa22fdccd0169", "phash": "d593ca0d353e5ac1", "dhash": "f2f0f83cf2f2e4d1", "phash_int": -3.0568775639777705e+18, "collected_at": "2026-05-22T04:28:07.668707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0296_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0296_IMG.JPG", "file_name": "102-0296_IMG.JPG", "file_stem": "102-0296_IMG", "file_ext": ".jpg", "file_size": 2054110.0, "mtime": "2002-05-25T11:31:22+00:00", "mtime_ts": 1022326282.0, "ctime": "2002-05-25T11:31:22+00:00", "sha256_file": "bf9c27a145b09d830b61983c487b5272692fba86e3d75f8e149ef2295bdc21a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:31:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5712", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:31:24", "EXIF DateTimeDigitized": "2002:05:25 11:31:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020296", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32289c9812fdeb51125e87b8e69e12f91da1ccaf2ca6cde760370a0881329066", "phash": "d4d3c8ad252c3be8", "dhash": "f4f0f874f4f2b1f0", "phash_int": -3.1109222716043274e+18, "collected_at": "2026-05-22T04:28:07.711948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0297_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0297_IMG.JPG", "file_name": "102-0297_IMG.JPG", "file_stem": "102-0297_IMG", "file_ext": ".jpg", "file_size": 2275691.0, "mtime": "2002-05-25T11:31:34+00:00", "mtime_ts": 1022326294.0, "ctime": "2002-05-25T11:31:34+00:00", "sha256_file": "ad65fc3e9818b46756dcc4523e4400d01bf8673be47056dbd48a6cf7529ac20f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:31:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6540", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:31:36", "EXIF DateTimeDigitized": "2002:05:25 11:31:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020297", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a23c5f2f612fc70f54542d029ce4b937ac53c4b10ea9dc9d220beb011d2c0c0", "phash": "a5e4da0b0d1cfae1", "dhash": "968e0e66f663f8f0", "phash_int": -6.492825021761914e+18, "collected_at": "2026-05-22T04:28:07.779029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\102-0300_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\102-0300_IMG.JPG", "file_name": "102-0300_IMG.JPG", "file_stem": "102-0300_IMG", "file_ext": ".jpg", "file_size": 2224587.0, "mtime": "2002-05-25T11:32:10+00:00", "mtime_ts": 1022326330.0, "ctime": "2002-05-25T11:32:10+00:00", "sha256_file": "8d63b253808c3c5d3b71f7b155a58c5fc35f5de62084f4a012ae69181ff19906", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:32:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:32:11", "EXIF DateTimeDigitized": "2002:05:25 11:32:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020300", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "66", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39b75493223ea6d8a835bb413ae4350de2c09085889d3ddc055891d26660c863", "phash": "95d2dcca690d2e3c", "dhash": "e0c8f6dadad8f2b2", "phash_int": -7.650810055045075e+18, "collected_at": "2026-05-22T04:28:07.808153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0301_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0301_IMG.JPG", "file_name": "103-0301_IMG.JPG", "file_stem": "103-0301_IMG", "file_ext": ".jpg", "file_size": 2222222.0, "mtime": "2002-05-25T11:32:14+00:00", "mtime_ts": 1022326334.0, "ctime": "2002-05-25T11:32:14+00:00", "sha256_file": "133decee9e7f373dbf1540b3b92f5e4b11ab41d04fc0f13fd7a0118be1b33582", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:32:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5896", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:32:15", "EXIF DateTimeDigitized": "2002:05:25 11:32:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030301", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "66", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e94f5d97b9bf8fcef152fbbc3dfa8a7a926866b7cc4997dda95b01e3f36ab212", "phash": "95cadccae9052e3c", "dhash": "e0c8f6dadad8f6f2", "phash_int": -7.653061852711801e+18, "collected_at": "2026-05-22T04:28:07.871325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0302_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0302_IMG.JPG", "file_name": "103-0302_IMG.JPG", "file_stem": "103-0302_IMG", "file_ext": ".jpg", "file_size": 2223846.0, "mtime": "2002-05-25T11:32:18+00:00", "mtime_ts": 1022326338.0, "ctime": "2002-05-25T11:32:18+00:00", "sha256_file": "a4e8ce516146ae1bbbe8185a70b8e9d4a3a068c98962cc3a6039553999e8c7f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:32:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5816", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:32:19", "EXIF DateTimeDigitized": "2002:05:25 11:32:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030302", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "66", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd2cdcd1b014ab1bb33973a0012d5809fa0e0263d7707939d6d1d1512e36eed3", "phash": "95eadcda430d2a3c", "dhash": "e0c8f2dadaf8f6fa", "phash_int": -7.644054587522078e+18, "collected_at": "2026-05-22T04:28:07.925000+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0303_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0303_IMG.JPG", "file_name": "103-0303_IMG.JPG", "file_stem": "103-0303_IMG", "file_ext": ".jpg", "file_size": 2268404.0, "mtime": "2002-05-25T11:32:24+00:00", "mtime_ts": 1022326344.0, "ctime": "2002-05-25T11:32:24+00:00", "sha256_file": "24cd1ea6b82cbee6bfe0eb677769bb8b21b8afcaa5d2925881e0767754b46cba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 11:32:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5989", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 11:32:26", "EXIF DateTimeDigitized": "2002:05:25 11:32:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 274, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030303", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "72", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "099f4b183f6f86f5be65e72b217714ed96dcf253d72321c59b5918ec44091c3c", "phash": "95ebd4dac1150b3c", "dhash": "c0e8f2dadaf8f4f4", "phash_int": -7.643781906523944e+18, "collected_at": "2026-05-22T04:28:07.970777+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0304_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0304_IMG.JPG", "file_name": "103-0304_IMG.JPG", "file_stem": "103-0304_IMG", "file_ext": ".jpg", "file_size": 1817682.0, "mtime": "2002-05-25T13:35:56+00:00", "mtime_ts": 1022333756.0, "ctime": "2002-05-25T13:35:56+00:00", "sha256_file": "8c6fa3c3ae243146aeb131548ae553122f30a472bcdefc1cd5aaf2877dec35fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:35:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8288", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:35:58", "EXIF DateTimeDigitized": "2002:05:25 13:35:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "141/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030304", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "705"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4560d9fd3ff1413c28e39694bdb93225c3bf5ceb4f55159ddeed6af44701d944", "phash": "fd9481666c6878d5", "dhash": "b6543823072f5792", "phash_int": -1.743722086551734e+17, "collected_at": "2026-05-22T04:28:07.989961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0305_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0305_IMG.JPG", "file_name": "103-0305_IMG.JPG", "file_stem": "103-0305_IMG", "file_ext": ".jpg", "file_size": 1665514.0, "mtime": "2002-05-25T13:36:08+00:00", "mtime_ts": 1022333768.0, "ctime": "2002-05-25T13:36:08+00:00", "sha256_file": "ec1b78ea2e8cc954ad2c384b121f3c55ce2ee6d6be1b9ab35f892a4f74f7a5f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:36:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6948", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:36:10", "EXIF DateTimeDigitized": "2002:05:25 13:36:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "141/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 303, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030305", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "705"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a59adc4e9e98dd9a48f7fb4cb567eff06b755c32a46d3c0309b0780d27f4a7d3", "phash": "f989a9e4a8929a37", "dhash": "129219300aaa0a12", "phash_int": -4.65654286910318e+17, "collected_at": "2026-05-22T04:28:08.084963+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0306_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0306_IMG.JPG", "file_name": "103-0306_IMG.JPG", "file_stem": "103-0306_IMG", "file_ext": ".jpg", "file_size": 2427482.0, "mtime": "2002-05-25T13:36:22+00:00", "mtime_ts": 1022333782.0, "ctime": "2002-05-25T13:36:22+00:00", "sha256_file": "f3a94d8d03a180b73c2067761151962fd2fb346125af2d882c38ead0e015de39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:36:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8295", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:36:24", "EXIF DateTimeDigitized": "2002:05:25 13:36:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "261/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030306", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "151", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "522"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0bcce91ecd981fea8f58698d874705cdb1046386745dbc091b1f9767235e16f", "phash": "fcd0a462ad188d3f", "dhash": "369733330f053536", "phash_int": -2.2950283727807763e+17, "collected_at": "2026-05-22T04:28:08.104965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0307_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0307_IMG.JPG", "file_name": "103-0307_IMG.JPG", "file_stem": "103-0307_IMG", "file_ext": ".jpg", "file_size": 2621388.0, "mtime": "2002-05-25T13:36:42+00:00", "mtime_ts": 1022333802.0, "ctime": "2002-05-25T13:36:42+00:00", "sha256_file": "27f037a48fb1cd11fe899a804ae889a6bc9fbcfae5013eba27e19ad8c69b7570", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:36:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8694", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:36:43", "EXIF DateTimeDigitized": "2002:05:25 13:36:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "531/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030307", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "151", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "531"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fed9d239bc7c9a48157dd9c1d7b9f9257c43a4206b37c63556ecd3eb4a14e67a", "phash": "be949469c2b17b13", "dhash": "a6243e2733172f6c", "phash_int": -4.713979727991178e+18, "collected_at": "2026-05-22T04:28:08.249483+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0308_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0308_IMG.JPG", "file_name": "103-0308_IMG.JPG", "file_stem": "103-0308_IMG", "file_ext": ".jpg", "file_size": 2458417.0, "mtime": "2002-05-25T13:36:52+00:00", "mtime_ts": 1022333812.0, "ctime": "2002-05-25T13:36:52+00:00", "sha256_file": "78061d90f1b4cfa47343482e9d4de4e8565886bb9990398000e24a53296a8ae0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:36:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:36:53", "EXIF DateTimeDigitized": "2002:05:25 13:36:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "511/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030308", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "151", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "511"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9340d8c9440e97a0783ef07d5daac0f3c0624fea99aeef0e93233638a79eda28", "phash": "e9c0851fd173e60d", "dhash": "9293831b3b0f1b93", "phash_int": -1.6031350956393825e+18, "collected_at": "2026-05-22T04:28:08.255480+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0310_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0310_IMG.JPG", "file_name": "103-0310_IMG.JPG", "file_stem": "103-0310_IMG", "file_ext": ".jpg", "file_size": 2681607.0, "mtime": "2002-05-25T13:37:18+00:00", "mtime_ts": 1022333838.0, "ctime": "2002-05-25T13:37:18+00:00", "sha256_file": "2d251777678b6f1f356ef8531cc33eaa386a441ca1a920f12c29b7574991bfb3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8097", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:19", "EXIF DateTimeDigitized": "2002:05:25 13:37:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "89/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 358, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030310", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "356"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6990facaac3220496b25ccac032b2c5581c5a61302868d81bbde9605c5ce7008", "phash": "866f2794368bb5c8", "dhash": "6e67e5e0b0b0f065", "phash_int": -8.759739232688557e+18, "collected_at": "2026-05-22T04:28:08.365887+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0309_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0309_IMG.JPG", "file_name": "103-0309_IMG.JPG", "file_stem": "103-0309_IMG", "file_ext": ".jpg", "file_size": 2806090.0, "mtime": "2002-05-25T13:37:06+00:00", "mtime_ts": 1022333826.0, "ctime": "2002-05-25T13:37:06+00:00", "sha256_file": "639d9bd35283236fe634c993fcc8fd1fb2924511f71bb729c06fc9b55b452d34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8736", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:07", "EXIF DateTimeDigitized": "2002:05:25 13:37:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "469/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030309", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "469"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e320a14faeafaff2db72dd00c6579e2d90ddf08a64acdb37d5ccebb2b317ea3", "phash": "9197904e5b6ed2a6", "dhash": "dcdacc73d3b3eb98", "phash_int": -7.955731550510853e+18, "collected_at": "2026-05-22T04:28:08.385951+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0311_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0311_IMG.JPG", "file_name": "103-0311_IMG.JPG", "file_stem": "103-0311_IMG", "file_ext": ".jpg", "file_size": 2633604.0, "mtime": "2002-05-25T13:37:24+00:00", "mtime_ts": 1022333844.0, "ctime": "2002-05-25T13:37:24+00:00", "sha256_file": "8b35f461ae15807bbbf7b947c1473d612c1d44c88928bb8fce8b8b59f33d8ec3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8075", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:25", "EXIF DateTimeDigitized": "2002:05:25 13:37:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "227/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030311", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "133", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "454"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f02dc773b39d92aff9eabb72d013f9b8cccd543974032d6ac0c48b61a6510cb4", "phash": "be6c3690366a993a", "dhash": "2c2e272b38706d2e", "phash_int": -4.725341916002347e+18, "collected_at": "2026-05-22T04:28:08.494956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0312_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0312_IMG.JPG", "file_name": "103-0312_IMG.JPG", "file_stem": "103-0312_IMG", "file_ext": ".jpg", "file_size": 2771076.0, "mtime": "2002-05-25T13:37:36+00:00", "mtime_ts": 1022333856.0, "ctime": "2002-05-25T13:37:36+00:00", "sha256_file": "89e87e62e2b3b620833d9b670fa0ba7b461dd4a7edc03ee5d11e566a0e3c6d2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8540", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:38", "EXIF DateTimeDigitized": "2002:05:25 13:37:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "449/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030312", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "449"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5538cdc8e34e166729783ee2c43808b45330fe2ba96f236d0b7aca428b7a8f64", "phash": "ee6834d96b30c3ca", "dhash": "9636078343432c6f", "phash_int": -1.267705186693889e+18, "collected_at": "2026-05-22T04:28:08.518956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0314_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0314_IMG.JPG", "file_name": "103-0314_IMG.JPG", "file_stem": "103-0314_IMG", "file_ext": ".jpg", "file_size": 2903278.0, "mtime": "2002-05-25T13:37:50+00:00", "mtime_ts": 1022333870.0, "ctime": "2002-05-25T13:37:50+00:00", "sha256_file": "5151e8253b32a81207f468d9733836eedac66c94b5f379be3ce13dbbc7c5a1e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8961", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:51", "EXIF DateTimeDigitized": "2002:05:25 13:37:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "209/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030314", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "136", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "418"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72417aed3ae12aec1d07d99c2979ab09ace20f9cc265f8ff5c0d1925ae4788ff", "phash": "bcb9a54a1a2fc10f", "dhash": "3636363535272626", "phash_int": -4.847661786202128e+18, "collected_at": "2026-05-22T04:28:08.632956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0313_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0313_IMG.JPG", "file_name": "103-0313_IMG.JPG", "file_stem": "103-0313_IMG", "file_ext": ".jpg", "file_size": 2637428.0, "mtime": "2002-05-25T13:37:42+00:00", "mtime_ts": 1022333862.0, "ctime": "2002-05-25T13:37:42+00:00", "sha256_file": "8529a5310ed3b623d57ea81cc41c9777aece547c02d156d877b6615637628dde", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "9212", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:44", "EXIF DateTimeDigitized": "2002:05:25 13:37:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "413/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030313", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "413"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dfe29ae09fdc10096cf52f7b0b49d225832cfa1a5e9e6b8e0a4d3aee663bcb33", "phash": "a9c3c0f31f7e5501", "dhash": "9393537573133736", "phash_int": -6.213910910403194e+18, "collected_at": "2026-05-22T04:28:08.643957+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0315_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0315_IMG.JPG", "file_name": "103-0315_IMG.JPG", "file_stem": "103-0315_IMG", "file_ext": ".jpg", "file_size": 2774984.0, "mtime": "2002-05-25T13:37:56+00:00", "mtime_ts": 1022333876.0, "ctime": "2002-05-25T13:37:56+00:00", "sha256_file": "faffa3ad66aeb52d2ffc50dba15210fc1adc1bff42fef79266514d060c1e69da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:37:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8676", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:37:58", "EXIF DateTimeDigitized": "2002:05:25 13:37:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "413/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030315", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "137", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "413"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41ee33aaa54f7198a52d074b3c5c6a69b5e5b8da377902efdfaaa3725dd66dfb", "phash": "aef8b434594362b5", "dhash": "2626677933276626", "phash_int": -5.83871877995696e+18, "collected_at": "2026-05-22T04:28:08.799544+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0316_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0316_IMG.JPG", "file_name": "103-0316_IMG.JPG", "file_stem": "103-0316_IMG", "file_ext": ".jpg", "file_size": 2972321.0, "mtime": "2002-05-25T13:38:06+00:00", "mtime_ts": 1022333886.0, "ctime": "2002-05-25T13:38:06+00:00", "sha256_file": "ed9038609f3a2f2e3373983046fbb038fe6ea17a8af9c26a8f81ff825851844f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:38:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8949", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:38:08", "EXIF DateTimeDigitized": "2002:05:25 13:38:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "413/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030316", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "139", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "413"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4357f582eb73ce2518fd531732da66698ec1206492a48cff20cf236fec9f501", "phash": "b676a4c966534cb1", "dhash": "6e2c4c4d487a7964", "phash_int": -5.298866726642693e+18, "collected_at": "2026-05-22T04:28:08.814598+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0317_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0317_IMG.JPG", "file_name": "103-0317_IMG.JPG", "file_stem": "103-0317_IMG", "file_ext": ".jpg", "file_size": 2995404.0, "mtime": "2002-05-25T13:38:24+00:00", "mtime_ts": 1022333904.0, "ctime": "2002-05-25T13:38:24+00:00", "sha256_file": "2e01cd039b17c02d3b3a7e07b2cf8b497b5bb2261421aaa6ee8749592261e42b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 13:38:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7483", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 13:38:25", "EXIF DateTimeDigitized": "2002:05:25 13:38:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "43/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030317", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "133", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "430"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "852649b6fc20988e812654007312d6a15cff030ded63a9481a7c264a891894d8", "phash": "9d6069916d9724f3", "dhash": "9313707078707832", "phash_int": -7.106564138660847e+18, "collected_at": "2026-05-22T04:28:08.935350+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-25\\103-0318_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-25\\103-0318_IMG.JPG", "file_name": "103-0318_IMG.JPG", "file_stem": "103-0318_IMG", "file_ext": ".jpg", "file_size": 2366956.0, "mtime": "2002-05-25T16:54:56+00:00", "mtime_ts": 1022345696.0, "ctime": "2002-05-25T16:54:56+00:00", "sha256_file": "e08e4421ed8f431f6bc871a681a83969de0c132f58763e7b45231f9c35a859bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:25 16:54:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7890", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:25 16:54:58", "EXIF DateTimeDigitized": "2002:05:25 16:54:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030318", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4122689a661b113e2efa7e51837babeac3423cf23c3929792928a1534014ac92", "phash": "d5672ada1a1225ed", "dhash": "e0c6c6f8b8d4d4f4", "phash_int": -3.0694375048010696e+18, "collected_at": "2026-05-22T04:28:08.938352+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0354_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0354_IMG.JPG", "file_name": "103-0354_IMG.JPG", "file_stem": "103-0354_IMG", "file_ext": ".jpg", "file_size": 914134.0, "mtime": "2002-05-28T19:17:46+00:00", "mtime_ts": 1022613466.0, "ctime": "2002-05-28T19:17:46+00:00", "sha256_file": "1af3ab2e8d61649715390d44af1883aa239c2461959a47c22411048579553a56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:28 19:17:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4849", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:28 19:17:48", "EXIF DateTimeDigitized": "2002:05:28 19:17:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 1070, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030354", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "200", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "192", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4690744a9de9bc5f2a18712574fca4949dbc29be9fc7bcabd304a5f345e020b", "phash": "bc6a9be4354b02bc", "dhash": "232b2b97b685743e", "phash_int": -4.869908642598813e+18, "collected_at": "2026-05-22T04:28:09.057023+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0355_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0355_IMG.JPG", "file_name": "103-0355_IMG.JPG", "file_stem": "103-0355_IMG", "file_ext": ".jpg", "file_size": 1680815.0, "mtime": "2002-05-29T20:30:44+00:00", "mtime_ts": 1022704244.0, "ctime": "2002-05-29T20:30:44+00:00", "sha256_file": "cbb719757aeffa79736cd355e5ce8e8776263c25b94f02879c2c2208e5231ac9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:29 20:30:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5645", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:29 20:30:46", "EXIF DateTimeDigitized": "2002:05:29 20:30:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "283/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030355", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1415"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d8056ff6b0272d42fb979bc18e4f64299d55cfb5ebe88115bae2ca49bed6845", "phash": "877c69c2bd675086", "dhash": "7474744ecccccbcb", "phash_int": -8.683949696354922e+18, "collected_at": "2026-05-22T04:28:09.091025+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0356_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0356_IMG.JPG", "file_name": "103-0356_IMG.JPG", "file_stem": "103-0356_IMG", "file_ext": ".jpg", "file_size": 1919586.0, "mtime": "2002-05-29T20:30:54+00:00", "mtime_ts": 1022704254.0, "ctime": "2002-05-29T20:30:54+00:00", "sha256_file": "c3020062f27335144ee33be214a40a9a3558822153bed3cb2435b38fde4e8769", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:05:29 20:30:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6401", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:05:29 20:30:55", "EXIF DateTimeDigitized": "2002:05:29 20:30:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030356", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2254b58fc7dcf8f4b8dd880e48bd9834f22dda31e9c5faf3864b77bab3ab4ab", "phash": "992de666929d249d", "dhash": "2cd0b270706c70d8", "phash_int": -7.409012483733773e+18, "collected_at": "2026-05-22T04:28:09.184025+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0375_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0375_IMG.JPG", "file_name": "103-0375_IMG.JPG", "file_stem": "103-0375_IMG", "file_ext": ".jpg", "file_size": 1984850.0, "mtime": "2002-06-01T12:27:26+00:00", "mtime_ts": 1022934446.0, "ctime": "2002-06-01T12:27:26+00:00", "sha256_file": "e20fad237a840ddf911a850d03853180f5229693c10363b27a7983dc397352d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 12:27:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5900", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 12:27:27", "EXIF DateTimeDigitized": "2002:06:01 12:27:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030375", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "297", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2c0e5419e7b2bb246109aafc0c5d821af9d06e068f6676359758786aad570d5", "phash": "f37b1d2e46864651", "dhash": "451b98cdc8c5e4e4", "phash_int": -9.020952157687464e+17, "collected_at": "2026-05-22T04:28:09.196024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0378_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0378_IMG.JPG", "file_name": "103-0378_IMG.JPG", "file_stem": "103-0378_IMG", "file_ext": ".jpg", "file_size": 1653253.0, "mtime": "2002-06-01T12:28:34+00:00", "mtime_ts": 1022934514.0, "ctime": "2002-06-01T12:28:34+00:00", "sha256_file": "8d204c84e399f6ab816c21fd785ed3b8feaaaacc456b9abf9494fd7707500973", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 12:28:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7707", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 12:28:35", "EXIF DateTimeDigitized": "2002:06:01 12:28:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030378", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84fbfbc42f9da90738c2c7ef23c36a56ae60e8c16e6b2b1df0c501fb540a2078", "phash": "cea1934a95d6d0da", "dhash": "9e339526b3616170", "phash_int": -3.557400282095235e+18, "collected_at": "2026-05-22T04:28:09.319704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0376_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0376_IMG.JPG", "file_name": "103-0376_IMG.JPG", "file_stem": "103-0376_IMG", "file_ext": ".jpg", "file_size": 2842559.0, "mtime": "2002-06-01T12:27:58+00:00", "mtime_ts": 1022934478.0, "ctime": "2002-06-01T12:27:58+00:00", "sha256_file": "f5240aa82ce2c49d0fe226cb0011ad05d07f71ceee0d2f85009e4951ac04ebb8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 12:28:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6499", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 12:28:00", "EXIF DateTimeDigitized": "2002:06:01 12:28:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030376", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77f692c08881a3a8aeab218e6353f373d7a226af6291dfa9488e2e154ae49429", "phash": "a80d8dbdf8e03791", "dhash": "7777df991d2dc4c8", "phash_int": -6.33725325357664e+18, "collected_at": "2026-05-22T04:28:09.334328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0383_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0383_IMG.JPG", "file_name": "103-0383_IMG.JPG", "file_stem": "103-0383_IMG", "file_ext": ".jpg", "file_size": 1605461.0, "mtime": "2002-06-01T19:12:00+00:00", "mtime_ts": 1022958720.0, "ctime": "2002-06-01T19:12:00+00:00", "sha256_file": "385717e6d18997d8fc58f28681bdf9969a98a6b2e54087d2d38e3b9c59a2ed84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:12:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4149", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:12:01", "EXIF DateTimeDigitized": "2002:06:01 19:12:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030383", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c26e8c50c1e94f65937f2ef591a1358779261fa03026dfb079dcfc20b8f0d2f", "phash": "81cd1e1ed3716cd1", "dhash": "f8d4d6d4d8ee9ec8", "phash_int": -9.093578954845885e+18, "collected_at": "2026-05-22T04:28:09.422723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0382_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0382_IMG.JPG", "file_name": "103-0382_IMG.JPG", "file_stem": "103-0382_IMG", "file_ext": ".jpg", "file_size": 1680896.0, "mtime": "2002-06-01T19:11:52+00:00", "mtime_ts": 1022958712.0, "ctime": "2002-06-01T19:11:52+00:00", "sha256_file": "93616c9dd237e347c6c5cbd8f954ac0790cfaee73723d0d8097bcbc329971ad2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:11:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4766", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:11:53", "EXIF DateTimeDigitized": "2002:06:01 19:11:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030382", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e45d94cf550cf612cde0d548561ed5f095036cb6a4783cf7c81fcfd53c6a84ed", "phash": "a0e964113e9fd933", "dhash": "96d4dcee9ed88cae", "phash_int": -6.851835332839614e+18, "collected_at": "2026-05-22T04:28:09.425721+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0385_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0385_IMG.JPG", "file_name": "103-0385_IMG.JPG", "file_stem": "103-0385_IMG", "file_ext": ".jpg", "file_size": 1762064.0, "mtime": "2002-06-01T19:13:24+00:00", "mtime_ts": 1022958804.0, "ctime": "2002-06-01T19:13:24+00:00", "sha256_file": "76ef32a7450ee29f9f66a614389e83f69e0bc78609a0555415fa3ad64687902b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:13:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6676", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:13:26", "EXIF DateTimeDigitized": "2002:06:01 19:13:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030385", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2d1d743a57961a87f0846c803a03694ab6cf421f02de02422ad434ad63ee91e5", "phash": "ebb4580fb112da8d", "dhash": "f16727cf43616193", "phash_int": -1.462447154570012e+18, "collected_at": "2026-05-22T04:28:09.539405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0386_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0386_IMG.JPG", "file_name": "103-0386_IMG.JPG", "file_stem": "103-0386_IMG", "file_ext": ".jpg", "file_size": 1643608.0, "mtime": "2002-06-01T19:13:34+00:00", "mtime_ts": 1022958814.0, "ctime": "2002-06-01T19:13:34+00:00", "sha256_file": "41db42f40712eba50bd0f12407f991d46dc081d7c8ea0bb4a147ed879216cd1b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:13:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6712", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:13:36", "EXIF DateTimeDigitized": "2002:06:01 19:13:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030386", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "66e33c09b5b34205e5461786c4a544cf2769ff64e04715d400e70835f2a02a1a", "phash": "cba4d80f9310daeb", "dhash": "f1a38ecf43617189", "phash_int": -3.772653026426169e+18, "collected_at": "2026-05-22T04:28:09.559406+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0388_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0388_IMG.JPG", "file_name": "103-0388_IMG.JPG", "file_stem": "103-0388_IMG", "file_ext": ".jpg", "file_size": 1620647.0, "mtime": "2002-06-01T19:13:54+00:00", "mtime_ts": 1022958834.0, "ctime": "2002-06-01T19:13:54+00:00", "sha256_file": "52d0593177e758feddfa8a4fcfc024e32c5b867eb4116fd6b0f1d3e3333a24a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:13:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6265", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:13:55", "EXIF DateTimeDigitized": "2002:06:01 19:13:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030388", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "306bb6106465bd30e2dfa4a581cf3e15d107f005a607edd41b668a310c73133b", "phash": "d16fc65818e61f52", "dhash": "d1c14f199818c490", "phash_int": -3.355245115690574e+18, "collected_at": "2026-05-22T04:28:09.640641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0387_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0387_IMG.JPG", "file_name": "103-0387_IMG.JPG", "file_stem": "103-0387_IMG", "file_ext": ".jpg", "file_size": 1694066.0, "mtime": "2002-06-01T19:13:46+00:00", "mtime_ts": 1022958826.0, "ctime": "2002-06-01T19:13:46+00:00", "sha256_file": "d8e4d80f2ecfa881d3dd92a9cc1712b9a94bf70c11e32e8a89ccdba6f4e42655", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:13:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6321", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:13:47", "EXIF DateTimeDigitized": "2002:06:01 19:13:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030387", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64c80c9ed9a7cb8a26c520bfb77d06303772e70ddf09c6ede0073880a29791b4", "phash": "d86767c81ce22795", "dhash": "a3839f31309198b8", "phash_int": -2.8531977297402163e+18, "collected_at": "2026-05-22T04:28:09.647642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0391_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0391_IMG.JPG", "file_name": "103-0391_IMG.JPG", "file_stem": "103-0391_IMG", "file_ext": ".jpg", "file_size": 1993876.0, "mtime": "2002-06-01T19:14:46+00:00", "mtime_ts": 1022958886.0, "ctime": "2002-06-01T19:14:46+00:00", "sha256_file": "f775e6769f51ee48806e4a9b9c07cb85844eeb5c529ad645526677ec8cb0c754", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:14:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7227", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:14:48", "EXIF DateTimeDigitized": "2002:06:01 19:14:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030391", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be38348fd430672eb752f07c73c90b410c35931dd5eabb473fea450b773f0de4", "phash": "9f6e2495f1813696", "dhash": "3273659338d0f4dc", "phash_int": -6.958584147820333e+18, "collected_at": "2026-05-22T04:28:09.754918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0389_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0389_IMG.JPG", "file_name": "103-0389_IMG.JPG", "file_stem": "103-0389_IMG", "file_ext": ".jpg", "file_size": 1770333.0, "mtime": "2002-06-01T19:14:04+00:00", "mtime_ts": 1022958844.0, "ctime": "2002-06-01T19:14:04+00:00", "sha256_file": "b4ff3d1ab25e6c79cb4ae8fcb513d59420ed239bc2b27105bea0915c58373ae2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:14:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7279", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:14:05", "EXIF DateTimeDigitized": "2002:06:01 19:14:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030389", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "acc159436ab44faf30fbd5a2d87a7ee746c19c45fe27c65af97e7de7b1538251", "phash": "a23f5d6041bf31c5", "dhash": "8effffcfc5cfa1a1", "phash_int": -6.755578248031162e+18, "collected_at": "2026-05-22T04:28:09.759920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0392_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0392_IMG.JPG", "file_name": "103-0392_IMG.JPG", "file_stem": "103-0392_IMG", "file_ext": ".jpg", "file_size": 1749279.0, "mtime": "2002-06-01T19:15:06+00:00", "mtime_ts": 1022958906.0, "ctime": "2002-06-01T19:15:06+00:00", "sha256_file": "89af762c432b0e566970f1b03be8a4ce6da7b85d9a321569aef993eaa4330ea2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:15:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6501", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:15:08", "EXIF DateTimeDigitized": "2002:06:01 19:15:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030392", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e09526c09ead93259d9e01601c57fd8f3ccca257ef91f1c04a979971f45b931", "phash": "b54c4f8a072dd26d", "dhash": "e4e6aeae869c1654", "phash_int": -5.38284000037006e+18, "collected_at": "2026-05-22T04:28:09.839031+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0393_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0393_IMG.JPG", "file_name": "103-0393_IMG.JPG", "file_stem": "103-0393_IMG", "file_ext": ".jpg", "file_size": 1534711.0, "mtime": "2002-06-01T19:15:42+00:00", "mtime_ts": 1022958942.0, "ctime": "2002-06-01T19:15:42+00:00", "sha256_file": "44a2ed1c055e86940e021c957c9107f321e0ce39b1c84959389732d24202c546", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:15:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3957", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:15:44", "EXIF DateTimeDigitized": "2002:06:01 19:15:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "681/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030393", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1362"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e720f65d39df15231ab8bd78f89c95d1a338af7f5cb85a09cf59081ae65f913", "phash": "ce9f19e121a6be81", "dhash": "633124678303c389", "phash_int": -3.558096725876491e+18, "collected_at": "2026-05-22T04:28:09.872189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0395_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0395_IMG.JPG", "file_name": "103-0395_IMG.JPG", "file_stem": "103-0395_IMG", "file_ext": ".jpg", "file_size": 2422576.0, "mtime": "2002-06-01T19:17:46+00:00", "mtime_ts": 1022959066.0, "ctime": "2002-06-01T19:17:46+00:00", "sha256_file": "c74bc732fbef0632c95249184b34a38feecd66df821c17af71fcba7787b381ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:17:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6996", "EXIF ExposureTime": "1/250", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:17:47", "EXIF DateTimeDigitized": "2002:06:01 19:17:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3641/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030395", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3641"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5d32ead6edbe3f5c183867ba60f71c927bda29f6528e760232512dc1d97ffe8", "phash": "df6a1085e4b63517", "dhash": "477139014052480c", "phash_int": -2.348046088466451e+18, "collected_at": "2026-05-22T04:28:09.960191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0394_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0394_IMG.JPG", "file_name": "103-0394_IMG.JPG", "file_stem": "103-0394_IMG", "file_ext": ".jpg", "file_size": 1763728.0, "mtime": "2002-06-01T19:16:22+00:00", "mtime_ts": 1022958982.0, "ctime": "2002-06-01T19:16:22+00:00", "sha256_file": "901ed39438d7044528b9550b398c89012b2f0b58ea696dcbe3dcae90a705e04f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:16:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6546", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:16:23", "EXIF DateTimeDigitized": "2002:06:01 19:16:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1961/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030394", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "46", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1961"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a291e27f33e86eddeca8ee7385e88ca9923f835cf63161db6da09240ac91129", "phash": "c3349d13156798de", "dhash": "9c9e858ec9d9c9d0", "phash_int": -4.3807038322356e+18, "collected_at": "2026-05-22T04:28:09.988347+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0397_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0397_IMG.JPG", "file_name": "103-0397_IMG.JPG", "file_stem": "103-0397_IMG", "file_ext": ".jpg", "file_size": 2368507.0, "mtime": "2002-06-01T19:18:14+00:00", "mtime_ts": 1022959094.0, "ctime": "2002-06-01T19:18:14+00:00", "sha256_file": "14cd05bef464bad85d37116283db7ddbbbe9709e99d78c71213faba39a5c1dc0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:18:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5865", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:18:15", "EXIF DateTimeDigitized": "2002:06:01 19:18:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030397", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ee89870c5c1d5fdf4db8a9df6b6fb4a7308b0bf8c2f87442f95c6a8885152b8", "phash": "c7ba85c8ff1d4064", "dhash": "e0cf8c6145c0d0c6", "phash_int": -4.05478141617365e+18, "collected_at": "2026-05-22T04:28:10.113360+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0396_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0396_IMG.JPG", "file_name": "103-0396_IMG.JPG", "file_stem": "103-0396_IMG", "file_ext": ".jpg", "file_size": 2988513.0, "mtime": "2002-06-01T19:17:56+00:00", "mtime_ts": 1022959076.0, "ctime": "2002-06-01T19:17:56+00:00", "sha256_file": "139ec8364a56842bde19d08b4c8a8c23c84cdad1e6b23669ec9cf8d6e04f7c6a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:17:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7507", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:17:57", "EXIF DateTimeDigitized": "2002:06:01 19:17:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6387/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030396", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12774"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bfc02c1e73a1e34ea3a4e837d114338e74153b4de37153273d343ac57eebee66", "phash": "d2af85b03b9f2388", "dhash": "1e02c919998cf0c8", "phash_int": -3.265244212859297e+18, "collected_at": "2026-05-22T04:28:10.147353+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0398_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0398_IMG.JPG", "file_name": "103-0398_IMG.JPG", "file_stem": "103-0398_IMG", "file_ext": ".jpg", "file_size": 2166601.0, "mtime": "2002-06-01T19:18:28+00:00", "mtime_ts": 1022959108.0, "ctime": "2002-06-01T19:18:28+00:00", "sha256_file": "1671f345d258d33ca348884443a236c3a37d4e3301424c4e21774fc0e8dcd8e8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:18:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5711", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:18:30", "EXIF DateTimeDigitized": "2002:06:01 19:18:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030398", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f10e5713312b39cd60c4d8f02b494cf7ffb397bb476e01fd06cd93817fa1f9b", "phash": "cd9396ed55603a0d", "dhash": "00f0f8d05203a620", "phash_int": -3.633394528274073e+18, "collected_at": "2026-05-22T04:28:10.229358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0399_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0399_IMG.JPG", "file_name": "103-0399_IMG.JPG", "file_stem": "103-0399_IMG", "file_ext": ".jpg", "file_size": 2041894.0, "mtime": "2002-06-01T19:33:06+00:00", "mtime_ts": 1022959986.0, "ctime": "2002-06-01T19:33:06+00:00", "sha256_file": "3ce1ab2c4bf856c3654f138242e541176f77edb4d8045b1caf08eb9a7f696102", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:33:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6406", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:33:08", "EXIF DateTimeDigitized": "2002:06:01 19:33:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030399", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "201fab5161e17255e3dcf486cf9ea62270f464a20d01659bbf403e67be5a54ae", "phash": "95f9501b4a75494f", "dhash": "9818528e697c6ce4", "phash_int": -7.639987214713797e+18, "collected_at": "2026-05-22T04:28:10.295362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\103-0400_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\103-0400_IMG.JPG", "file_name": "103-0400_IMG.JPG", "file_stem": "103-0400_IMG", "file_ext": ".jpg", "file_size": 1826150.0, "mtime": "2002-06-01T19:33:16+00:00", "mtime_ts": 1022959996.0, "ctime": "2002-06-01T19:33:16+00:00", "sha256_file": "a9754bdd56db2e522149137f1e5bb36691233615c43cdfb912af305f3dd57935", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:33:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6055", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:33:18", "EXIF DateTimeDigitized": "2002:06:01 19:33:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030400", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "254bd812fd3591a56ae5f81e7cadf1c023b53a6f79efaed7f8280918fdad3d14", "phash": "bdc8079605bf4867", "dhash": "b4b9b33594346e66", "phash_int": -4.77155546427613e+18, "collected_at": "2026-05-22T04:28:10.324359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0401_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0401_IMG.JPG", "file_name": "104-0401_IMG.JPG", "file_stem": "104-0401_IMG", "file_ext": ".jpg", "file_size": 1834540.0, "mtime": "2002-06-01T19:33:24+00:00", "mtime_ts": 1022960004.0, "ctime": "2002-06-01T19:33:24+00:00", "sha256_file": "fe65ae50895e4ffe28d2e2d91ee0ab8d5672ee68a0e0f413304536e5df4c7ce1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:33:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5962", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:33:26", "EXIF DateTimeDigitized": "2002:06:01 19:33:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040401", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a72dfb2c1896b36c212df78d5c4843250ce01058b9baca7ae6baac39c408d5ad", "phash": "9cc8079637b74867", "dhash": "b4b9b33514346c66", "phash_int": -7.149456066689415e+18, "collected_at": "2026-05-22T04:28:10.370517+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0402_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0402_IMG.JPG", "file_name": "104-0402_IMG.JPG", "file_stem": "104-0402_IMG", "file_ext": ".jpg", "file_size": 1762759.0, "mtime": "2002-06-01T19:33:50+00:00", "mtime_ts": 1022960030.0, "ctime": "2002-06-01T19:33:50+00:00", "sha256_file": "0385eb9290c50c8121fdbb7f444522da040bd63a052665a89c64fb683c5ddb6a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:33:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6374", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:33:51", "EXIF DateTimeDigitized": "2002:06:01 19:33:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040402", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f89cec140696fdf8c3d326afae8ae2b786a8c5a2b465a6c51d56e4793c221555", "phash": "e3ca1d3ce3875849", "dhash": "9411c1cdd73c5ed6", "phash_int": -2.0327801344518164e+18, "collected_at": "2026-05-22T04:28:10.440520+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0403_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0403_IMG.JPG", "file_name": "104-0403_IMG.JPG", "file_stem": "104-0403_IMG", "file_ext": ".jpg", "file_size": 1725194.0, "mtime": "2002-06-01T19:34:24+00:00", "mtime_ts": 1022960064.0, "ctime": "2002-06-01T19:34:24+00:00", "sha256_file": "b2026316b268cd4c77f450b97394a849e6629026b9ac4427b2ae8969a1e1a9cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:34:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5844", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:34:26", "EXIF DateTimeDigitized": "2002:06:01 19:34:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040403", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4915baba11b9cb237c1047c8f73851e3484b65baefb33ef5d0a21d4c311a80de", "phash": "e7c23c3c47ae4166", "dhash": "3858c1cbc612365a", "phash_int": -1.7467674758680246e+18, "collected_at": "2026-05-22T04:28:10.490516+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0404_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0404_IMG.JPG", "file_name": "104-0404_IMG.JPG", "file_stem": "104-0404_IMG", "file_ext": ".jpg", "file_size": 1568747.0, "mtime": "2002-06-01T19:34:32+00:00", "mtime_ts": 1022960072.0, "ctime": "2002-06-01T19:34:32+00:00", "sha256_file": "1f22ec941ac1d8827de1233edb31e8c260ea9a43c4b610364d77b2f01c6de55f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:34:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6071", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:34:33", "EXIF DateTimeDigitized": "2002:06:01 19:34:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040404", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71745f2377619b08d8725f9c242187e8279a962943d5695e932197f0a13c444c", "phash": "f5c81f34c1af49e0", "dhash": "70b8c1c794146e56", "phash_int": -7.363042276268252e+17, "collected_at": "2026-05-22T04:28:10.524565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0406_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0406_IMG.JPG", "file_name": "104-0406_IMG.JPG", "file_stem": "104-0406_IMG", "file_ext": ".jpg", "file_size": 1881382.0, "mtime": "2002-06-01T19:35:02+00:00", "mtime_ts": 1022960102.0, "ctime": "2002-06-01T19:35:02+00:00", "sha256_file": "320531c0c97c9721f8be5af2269981bc09aaa2f326484b75a158907a5dde0b32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:35:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5434", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:35:03", "EXIF DateTimeDigitized": "2002:06:01 19:35:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040406", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "19", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3b5184539f7dbf10cc4000bdcd077a90b8e95fa1cd8b851ccc0d34ee2663361", "phash": "cce8175f481e3c59", "dhash": "22c3b3a3916676f6", "phash_int": -3.6816669973761075e+18, "collected_at": "2026-05-22T04:28:10.594205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0405_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0405_IMG.JPG", "file_name": "104-0405_IMG.JPG", "file_stem": "104-0405_IMG", "file_ext": ".jpg", "file_size": 1807310.0, "mtime": "2002-06-01T19:34:40+00:00", "mtime_ts": 1022960080.0, "ctime": "2002-06-01T19:34:40+00:00", "sha256_file": "02abc721e6eef846f075f5e2a4cc0fe033239cf88563aa7c61c0088859a20145", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:34:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6296", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:34:41", "EXIF DateTimeDigitized": "2002:06:01 19:34:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040405", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8ae36b5030cc44ae2cda39fae11c7507f28822b613383dd21bffc33e28e9b38f", "phash": "bcc90717f09748e3", "dhash": "f038b3b6bdb46ca6", "phash_int": -4.843332124858169e+18, "collected_at": "2026-05-22T04:28:10.597208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0408_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0408_IMG.JPG", "file_name": "104-0408_IMG.JPG", "file_stem": "104-0408_IMG", "file_ext": ".jpg", "file_size": 2042673.0, "mtime": "2002-06-01T19:35:38+00:00", "mtime_ts": 1022960138.0, "ctime": "2002-06-01T19:35:38+00:00", "sha256_file": "03e292756a2950eef827010d21ab65df0d7a969ba827accddd3e49dbb1c24b1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:35:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5078", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:35:40", "EXIF DateTimeDigitized": "2002:06:01 19:35:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040408", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c657fe868e38b340b3e1278c30542cddb19333f88b9384748ee2959bcde5152b", "phash": "8dcf18742f514d6c", "dhash": "b260e358eea8b8fb", "phash_int": -8.228331106893477e+18, "collected_at": "2026-05-22T04:28:10.681556+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0407_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0407_IMG.JPG", "file_name": "104-0407_IMG.JPG", "file_stem": "104-0407_IMG", "file_ext": ".jpg", "file_size": 1923211.0, "mtime": "2002-06-01T19:35:14+00:00", "mtime_ts": 1022960114.0, "ctime": "2002-06-01T19:35:14+00:00", "sha256_file": "ef70f679b35f61b595a6a95ef2e9094b74a4933886e8a9b3067ed5e2754b8151", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:35:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5745", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:35:15", "EXIF DateTimeDigitized": "2002:06:01 19:35:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040407", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c6c51a2b77046768535404062ae187e2ee52294b4844262b966e83d60eb52db", "phash": "c9c92c7e421f3879", "dhash": "b3d29251502632f5", "phash_int": -3.906542280980351e+18, "collected_at": "2026-05-22T04:28:10.699719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0409_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0409_IMG.JPG", "file_name": "104-0409_IMG.JPG", "file_stem": "104-0409_IMG", "file_ext": ".jpg", "file_size": 1860387.0, "mtime": "2002-06-01T19:36:10+00:00", "mtime_ts": 1022960170.0, "ctime": "2002-06-01T19:36:10+00:00", "sha256_file": "eb2b2d8a1c140e22edddc2891851a91ebc68d7e6ece1de12425762fa3d4a6ea6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:36:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5420", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:36:11", "EXIF DateTimeDigitized": "2002:06:01 19:36:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040409", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71415bbc72f7594f6597b62d8a438887f3f279a18425f40a6400dddc02900529", "phash": "c29c1429dbeb2537", "dhash": "f0b4e4c9d1d3c9e0", "phash_int": -4.423638563968834e+18, "collected_at": "2026-05-22T04:28:10.774786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0410_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0410_IMG.JPG", "file_name": "104-0410_IMG.JPG", "file_stem": "104-0410_IMG", "file_ext": ".jpg", "file_size": 1921104.0, "mtime": "2002-06-01T19:36:18+00:00", "mtime_ts": 1022960178.0, "ctime": "2002-06-01T19:36:18+00:00", "sha256_file": "aba24b2121bfefafda62ba93cafbf32d17c5c7066a54b45b527e381f1f25bc43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:36:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5660", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:36:20", "EXIF DateTimeDigitized": "2002:06:01 19:36:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040410", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb76a2336b160c1726e77e9e2ddb14189c865f335e8232aaa41bc6f7f29929f3", "phash": "c89e16321dfff900", "dhash": "e8a9c3d39381c150", "phash_int": -3.9907278152961905e+18, "collected_at": "2026-05-22T04:28:10.781914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0411_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0411_IMG.JPG", "file_name": "104-0411_IMG.JPG", "file_stem": "104-0411_IMG", "file_ext": ".jpg", "file_size": 1859433.0, "mtime": "2002-06-01T19:36:56+00:00", "mtime_ts": 1022960216.0, "ctime": "2002-06-01T19:36:56+00:00", "sha256_file": "50768b72e38d1c56f1c562bdbae6614602ec0beeebcf630e447887ca0db23f85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:36:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5834", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:36:58", "EXIF DateTimeDigitized": "2002:06:01 19:36:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040411", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54e60d3c5729cb02079c7ff515ebe03d634ec7904337dfb940554c56b75e7cf4", "phash": "d0bf392711b6c236", "dhash": "1a32e46de9c1a092", "phash_int": -3.404939953305108e+18, "collected_at": "2026-05-22T04:28:10.878058+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0412_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0412_IMG.JPG", "file_name": "104-0412_IMG.JPG", "file_stem": "104-0412_IMG", "file_ext": ".jpg", "file_size": 1869625.0, "mtime": "2002-06-01T19:37:06+00:00", "mtime_ts": 1022960226.0, "ctime": "2002-06-01T19:37:06+00:00", "sha256_file": "2af930aaa7208900d139d4b94c67513a59ffc05f7a96f52d7e3251efbc5b9b28", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:37:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:37:08", "EXIF DateTimeDigitized": "2002:06:01 19:37:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040412", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cfc181ab77b7d47d0302340603a80b6be3c747bdcb0abdf85ed46268bcb6bdf1", "phash": "c8971274c9fd3623", "dhash": "e0e9e99393a39381", "phash_int": -3.992702251826334e+18, "collected_at": "2026-05-22T04:28:10.896300+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0413_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0413_IMG.JPG", "file_name": "104-0413_IMG.JPG", "file_stem": "104-0413_IMG", "file_ext": ".jpg", "file_size": 1870906.0, "mtime": "2002-06-01T19:37:12+00:00", "mtime_ts": 1022960232.0, "ctime": "2002-06-01T19:37:12+00:00", "sha256_file": "ff26efb41aebbbefb7284d9db66e50f45439bae9664c7a20eb4382db4bd9a6a1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:37:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5469", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:37:13", "EXIF DateTimeDigitized": "2002:06:01 19:37:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040413", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9175a76a7f2a72305b7b0b887b3fe20d69cb6c9395feed6e80108818acca3761", "phash": "c8961674c9fd3623", "dhash": "e0e9e9d393a39381", "phash_int": -3.992979328756534e+18, "collected_at": "2026-05-22T04:28:10.965683+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0414_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0414_IMG.JPG", "file_name": "104-0414_IMG.JPG", "file_stem": "104-0414_IMG", "file_ext": ".jpg", "file_size": 1439866.0, "mtime": "2002-06-01T19:42:50+00:00", "mtime_ts": 1022960570.0, "ctime": "2002-06-01T19:42:50+00:00", "sha256_file": "b60bb1aa771a4368640418b94026c079063991c5c1189f457c0503a051aa181d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:42:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4781", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:42:51", "EXIF DateTimeDigitized": "2002:06:01 19:42:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[38, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040414", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "103", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86df26229e4fdf52998e950137bf826fb8749764eb48c2a3cb0f7102e7ddaf88", "phash": "cfac5fc0b148321f", "dhash": "646664624ec65058", "phash_int": -3.482303130651578e+18, "collected_at": "2026-05-22T04:28:10.967685+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0416_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0416_IMG.JPG", "file_name": "104-0416_IMG.JPG", "file_stem": "104-0416_IMG", "file_ext": ".jpg", "file_size": 1342424.0, "mtime": "2002-06-01T19:43:12+00:00", "mtime_ts": 1022960592.0, "ctime": "2002-06-01T19:43:12+00:00", "sha256_file": "00a381ab90c5800e59a805ee0db293da07eba3abdec5b8b1a96aeabb8367fffd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:43:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4092", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:43:14", "EXIF DateTimeDigitized": "2002:06:01 19:43:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[58, 221, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040416", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "085af1e6006b40b620cb8d469a590e0fa1a5768b081f2cf90311c9de5c1ad3e3", "phash": "c3992e0e24aabde9", "dhash": "f0d8d8c8c8c8c9ce", "phash_int": -4.3523969265972844e+18, "collected_at": "2026-05-22T04:28:11.051815+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0417_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0417_IMG.JPG", "file_name": "104-0417_IMG.JPG", "file_stem": "104-0417_IMG", "file_ext": ".jpg", "file_size": 1488255.0, "mtime": "2002-06-01T19:44:50+00:00", "mtime_ts": 1022960690.0, "ctime": "2002-06-01T19:44:50+00:00", "sha256_file": "598906159627c0a05f28888f4783e0dc1855cd90c9aacd92f1f125dfec8a1a24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:44:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5314", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:44:51", "EXIF DateTimeDigitized": "2002:06:01 19:44:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040417", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9435982435f45cca31ecbb212b082a0f02e4174e3c833a4836fabab5396e43c5", "phash": "9186c8da37353ccb", "dhash": "c8c0c4ced8d050d8", "phash_int": -7.960454451776112e+18, "collected_at": "2026-05-22T04:28:11.062819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0418_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0418_IMG.JPG", "file_name": "104-0418_IMG.JPG", "file_stem": "104-0418_IMG", "file_ext": ".jpg", "file_size": 1568068.0, "mtime": "2002-06-01T19:45:56+00:00", "mtime_ts": 1022960756.0, "ctime": "2002-06-01T19:45:56+00:00", "sha256_file": "3394fb4bce9bffd97bb470a46c729d6e84e22d5b54e4b5eaf6f24ddb8d289b98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:45:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5082", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:45:58", "EXIF DateTimeDigitized": "2002:06:01 19:45:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040418", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fba781fd96295f584b98894d6723b1f56203d5eedbdd410396aa0376286b96aa", "phash": "9ba71c7043b4c32f", "dhash": "db3a5aca4b983851", "phash_int": -7.230779408222207e+18, "collected_at": "2026-05-22T04:28:11.194046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0419_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0419_IMG.JPG", "file_name": "104-0419_IMG.JPG", "file_stem": "104-0419_IMG", "file_ext": ".jpg", "file_size": 1584215.0, "mtime": "2002-06-01T19:46:04+00:00", "mtime_ts": 1022960764.0, "ctime": "2002-06-01T19:46:04+00:00", "sha256_file": "6a43423ff4cd7fd7eeafe3188b05bf765921ab39b549d5baea2c63ffc999ec73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:46:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5335", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:46:05", "EXIF DateTimeDigitized": "2002:06:01 19:46:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040419", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "034d5931cdc9d198f35d5a9f44d8a6094c3cd48017fbecc903f223c8d05b61f2", "phash": "99a71e3e492df442", "dhash": "7a5ade5a993870f1", "phash_int": -7.374892611931344e+18, "collected_at": "2026-05-22T04:28:11.209128+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0420_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0420_IMG.JPG", "file_name": "104-0420_IMG.JPG", "file_stem": "104-0420_IMG", "file_ext": ".jpg", "file_size": 1681200.0, "mtime": "2002-06-01T19:46:18+00:00", "mtime_ts": 1022960778.0, "ctime": "2002-06-01T19:46:18+00:00", "sha256_file": "5f8357be068dc5457ecb56ff7b9f7557f78da24b5e50936283595ff549eb93d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:46:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5612", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:46:20", "EXIF DateTimeDigitized": "2002:06:01 19:46:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040420", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "181", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65dc4a5089bef55f75fdb5198c0dc5c02183de53237ce99e9ec69708644595be", "phash": "95b48f3f202e96c9", "dhash": "765cd6d698785af2", "phash_int": -7.659339564964735e+18, "collected_at": "2026-05-22T04:28:11.341383+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0422_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0422_IMG.JPG", "file_name": "104-0422_IMG.JPG", "file_stem": "104-0422_IMG", "file_ext": ".jpg", "file_size": 1840964.0, "mtime": "2002-06-01T19:46:56+00:00", "mtime_ts": 1022960816.0, "ctime": "2002-06-01T19:46:56+00:00", "sha256_file": "dd1f4eea72a20ee2a8a5f5b8f4d36c068637246c83f00c46d65989868cfe4480", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:46:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6759", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:46:57", "EXIF DateTimeDigitized": "2002:06:01 19:46:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11291/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040422", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11291"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b18baa07c062dcdaf1ce969e2084187c5f9f522e6a0489ed2e5ae35d5f63869", "phash": "c595fa1a06d59d29", "dhash": "384622c6d599c903", "phash_int": -4.209183287017104e+18, "collected_at": "2026-05-22T04:28:11.353380+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0424_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0424_IMG.JPG", "file_name": "104-0424_IMG.JPG", "file_stem": "104-0424_IMG", "file_ext": ".jpg", "file_size": 1642870.0, "mtime": "2002-06-01T19:47:36+00:00", "mtime_ts": 1022960856.0, "ctime": "2002-06-01T19:47:36+00:00", "sha256_file": "9df0d4461576039711a0a78f1eb6abcdf44771e00e4bb9b4a7a37e0345caede4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:47:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5211", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:47:37", "EXIF DateTimeDigitized": "2002:06:01 19:47:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2789/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040424", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5578"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c34982864260ad35a10243b5cf2bfec92ff66b76a5a38688aacee6a3cd9296f", "phash": "e8b593ca0f54e0a7", "dhash": "c20e96e663a393da", "phash_int": -1.678272790075744e+18, "collected_at": "2026-05-22T04:28:11.466335+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0423_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0423_IMG.JPG", "file_name": "104-0423_IMG.JPG", "file_stem": "104-0423_IMG", "file_ext": ".jpg", "file_size": 1712789.0, "mtime": "2002-06-01T19:47:04+00:00", "mtime_ts": 1022960824.0, "ctime": "2002-06-01T19:47:04+00:00", "sha256_file": "d124b2aeda6c3c8269239a249db4f80d847ffe12bb5ae66b6120fe9da8262e40", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:47:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:47:06", "EXIF DateTimeDigitized": "2002:06:01 19:47:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "15769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 47, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040423", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "156", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "15769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d395c310de86a4ded989bb006129ab3b75825891712df5f129a9bbc884996ca2", "phash": "90b0b79c3c4b7969", "dhash": "3c8c99b1b6b4c4c6", "phash_int": -8.020709054692493e+18, "collected_at": "2026-05-22T04:28:11.473465+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0425_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0425_IMG.JPG", "file_name": "104-0425_IMG.JPG", "file_stem": "104-0425_IMG", "file_ext": ".jpg", "file_size": 1904554.0, "mtime": "2002-06-01T19:47:48+00:00", "mtime_ts": 1022960868.0, "ctime": "2002-06-01T19:47:48+00:00", "sha256_file": "3c42c050ee93e47302dc42c7604d8abf9ccc87584533e72410b6aae04c7ad34d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:47:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5921", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:47:50", "EXIF DateTimeDigitized": "2002:06:01 19:47:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "567/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[57, 84, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040425", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "14175"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7f689c002bfb209ee1e1d20088b58d2efedcf6a5e5b5bb5e1be75e87b1c684f", "phash": "b7dbcaa4c46921e1", "dhash": "35785b9e96567f7f", "phash_int": -5.198338535850435e+18, "collected_at": "2026-05-22T04:28:11.589778+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0427_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0427_IMG.JPG", "file_name": "104-0427_IMG.JPG", "file_stem": "104-0427_IMG", "file_ext": ".jpg", "file_size": 1934840.0, "mtime": "2002-06-01T19:49:50+00:00", "mtime_ts": 1022960990.0, "ctime": "2002-06-01T19:49:50+00:00", "sha256_file": "e2d7b85ac582de6239a5cfd90ed28a4cf6161eab6772f1bbc8616b86a260405c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:49:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7071", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:49:52", "EXIF DateTimeDigitized": "2002:06:01 19:49:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040427", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9da87657922d61f363ca77572cba8cb335502f926fbb874355928abb4ec79002", "phash": "baca86d1d3e66215", "dhash": "71313159939fbedc", "phash_int": -4.987025401598025e+18, "collected_at": "2026-05-22T04:28:11.605863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0428_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0428_IMG.JPG", "file_name": "104-0428_IMG.JPG", "file_stem": "104-0428_IMG", "file_ext": ".jpg", "file_size": 1947575.0, "mtime": "2002-06-01T19:49:58+00:00", "mtime_ts": 1022960998.0, "ctime": "2002-06-01T19:49:58+00:00", "sha256_file": "737772d3d5c8967d510f89e9ea2a2d76b01bf72fd7de49ee04bad2612f09c267", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:49:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7036", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:49:59", "EXIF DateTimeDigitized": "2002:06:01 19:49:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040428", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "498da6bae3ff3617a81011ac60f3d67db60f0118fa73bd3bf005303659c0ccfc", "phash": "baca86f1d3e67005", "dhash": "313131499b9fd6ec", "phash_int": -4.987025264159068e+18, "collected_at": "2026-05-22T04:28:11.675986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0430_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0430_IMG.JPG", "file_name": "104-0430_IMG.JPG", "file_stem": "104-0430_IMG", "file_ext": ".jpg", "file_size": 2331229.0, "mtime": "2002-06-01T19:50:52+00:00", "mtime_ts": 1022961052.0, "ctime": "2002-06-01T19:50:52+00:00", "sha256_file": "0c6b333755d55e35cf1ea09474b8e336836eb7ed60fc6a201aae8c73ac7688f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:50:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6322", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:50:54", "EXIF DateTimeDigitized": "2002:06:01 19:50:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040430", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef8f4529b36a6921169e19d3db22fe6dfcb6e7285940e84cd911451e0244fda2", "phash": "c892d10fdbcf4e24", "dhash": "f090a4f0e262d2d0", "phash_int": -3.993900053481698e+18, "collected_at": "2026-05-22T04:28:11.731375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0432_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0432_IMG.JPG", "file_name": "104-0432_IMG.JPG", "file_stem": "104-0432_IMG", "file_ext": ".jpg", "file_size": 2226760.0, "mtime": "2002-06-01T19:51:30+00:00", "mtime_ts": 1022961090.0, "ctime": "2002-06-01T19:51:30+00:00", "sha256_file": "08608e83e009e7cb1c657a18bdc4486a9b3e5a6a6a9f9e98b2f55d7a576c01a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:51:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5989", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:51:32", "EXIF DateTimeDigitized": "2002:06:01 19:51:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040432", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "765343bbade8347fe6157a27d124e91c46a72a9e7b3574155e4e127fc511508d", "phash": "dbebe0889b99a581", "dhash": "9b814a787838bc74", "phash_int": -2.5997374825456174e+18, "collected_at": "2026-05-22T04:28:11.783529+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0433_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0433_IMG.JPG", "file_name": "104-0433_IMG.JPG", "file_stem": "104-0433_IMG", "file_ext": ".jpg", "file_size": 2680092.0, "mtime": "2002-06-01T19:51:40+00:00", "mtime_ts": 1022961100.0, "ctime": "2002-06-01T19:51:40+00:00", "sha256_file": "395135dd66665f19bdbc0df45b6de5a4ab36f6b9e5bab1fbb8d3ad2cf6b23b4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:51:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6648", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:51:41", "EXIF DateTimeDigitized": "2002:06:01 19:51:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040433", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bde65b43ab829705391f48ff6f687d35f884061bcfbb74c3585abb03bc03c893", "phash": "de1b9d8d90d6aa82", "dhash": "3371698c88c3e484", "phash_int": -2.442185141572425e+18, "collected_at": "2026-05-22T04:28:11.846990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0434_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0434_IMG.JPG", "file_name": "104-0434_IMG.JPG", "file_stem": "104-0434_IMG", "file_ext": ".jpg", "file_size": 1502178.0, "mtime": "2002-06-01T19:52:06+00:00", "mtime_ts": 1022961126.0, "ctime": "2002-06-01T19:52:06+00:00", "sha256_file": "58674abeb9889f5108346cc380af4a5d020bfc30cdd2206aaa9df45481d1dabd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:52:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4951", "EXIF ExposureTime": "1/125", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:52:07", "EXIF DateTimeDigitized": "2002:06:01 19:52:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040434", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3704"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71b15cea473a75489d8b3f41ec0374727658230746fd26c1e2a34a28bcc7fb2d", "phash": "aeb22c16d2ea325b", "dhash": "2d26a34968262323", "phash_int": -5.858571688716127e+18, "collected_at": "2026-05-22T04:28:11.870986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0436_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0436_IMG.JPG", "file_name": "104-0436_IMG.JPG", "file_stem": "104-0436_IMG", "file_ext": ".jpg", "file_size": 1633386.0, "mtime": "2002-06-01T19:52:38+00:00", "mtime_ts": 1022961158.0, "ctime": "2002-06-01T19:52:38+00:00", "sha256_file": "f309edfb579e95746386e77b36da510ab970bd25cd62374a6e88e4897fc62bdb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:52:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:52:39", "EXIF DateTimeDigitized": "2002:06:01 19:52:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2443/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040436", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "207", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4886"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "963ed1919124ff12fbf4516b44ffd1d3d4df352e63c27dff5165dd06b38a21e4", "phash": "c249c837d8cb37d8", "dhash": "f8c8c8cccc4cc8f8", "phash_int": -4.446803014865701e+18, "collected_at": "2026-05-22T04:28:11.941992+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0440_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0440_IMG.JPG", "file_name": "104-0440_IMG.JPG", "file_stem": "104-0440_IMG", "file_ext": ".jpg", "file_size": 1429828.0, "mtime": "2002-06-01T19:54:46+00:00", "mtime_ts": 1022961286.0, "ctime": "2002-06-01T19:54:46+00:00", "sha256_file": "1ff2b54630a96c85c72cffbc8e30ee8ea0615fc365fd83c9a24046757afd8cff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:54:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5224", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:54:47", "EXIF DateTimeDigitized": "2002:06:01 19:54:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 227, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040440", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d16d3de997a3e242497ca2b562606eb200ccac2c5354f810a5ec0d5fe85196a1", "phash": "b786192df6e0b0f0", "dhash": "ee7ccc4c6e565ebc", "phash_int": -5.222459032683368e+18, "collected_at": "2026-05-22T04:28:11.950987+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0441_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0441_IMG.JPG", "file_name": "104-0441_IMG.JPG", "file_stem": "104-0441_IMG", "file_ext": ".jpg", "file_size": 1454367.0, "mtime": "2002-06-01T19:55:42+00:00", "mtime_ts": 1022961342.0, "ctime": "2002-06-01T19:55:42+00:00", "sha256_file": "a551f94fe91bc3e4b044255ee45450c1d908e1aaab23623d31303b089b5b909a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:55:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4288", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:55:43", "EXIF DateTimeDigitized": "2002:06:01 19:55:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040441", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d216c09f34d95c1886ae819d9df6ce48b835b37b0f77214d757441e72453742", "phash": "9bb0a58e4b8f42f1", "dhash": "7058587979787858", "phash_int": -7.228095371358027e+18, "collected_at": "2026-05-22T04:28:12.009994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0442_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0442_IMG.JPG", "file_name": "104-0442_IMG.JPG", "file_stem": "104-0442_IMG", "file_ext": ".jpg", "file_size": 1971224.0, "mtime": "2002-06-01T19:59:00+00:00", "mtime_ts": 1022961540.0, "ctime": "2002-06-01T19:59:00+00:00", "sha256_file": "3289c3d3ef3db197448c72d7803f08b715b9ae32b1a892ba5e14c0074ef3fd33", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:59:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6786", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:59:02", "EXIF DateTimeDigitized": "2002:06:01 19:59:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040442", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44d2ca3a0b737a7bb73e45163a573d6ca21b73fa09217ec2db874a1a120f483e", "phash": "e06a2da533ce8e8d", "dhash": "8787818c8c8d8484", "phash_int": -2.2759564741203356e+18, "collected_at": "2026-05-22T04:28:12.065993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0443_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0443_IMG.JPG", "file_name": "104-0443_IMG.JPG", "file_stem": "104-0443_IMG", "file_ext": ".jpg", "file_size": 1595640.0, "mtime": "2002-06-01T19:59:16+00:00", "mtime_ts": 1022961556.0, "ctime": "2002-06-01T19:59:16+00:00", "sha256_file": "09d22ff9a118f3499239ce43cd34c833bfdf18c42790f117e2efd9b73b91b628", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 19:59:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6204", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 19:59:18", "EXIF DateTimeDigitized": "2002:06:01 19:59:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1867/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[76, 77, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040443", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7468"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fb6787f3cdca4f73fa97b250b095ca7cecded400d3ccbe4b3c682816a7f093b", "phash": "b6c78c61ca922c7b", "dhash": "d1466c6d4906ba37", "phash_int": -5.276094086802953e+18, "collected_at": "2026-05-22T04:28:12.085994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0444_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0444_IMG.JPG", "file_name": "104-0444_IMG.JPG", "file_stem": "104-0444_IMG", "file_ext": ".jpg", "file_size": 1292830.0, "mtime": "2002-06-01T20:13:34+00:00", "mtime_ts": 1022962414.0, "ctime": "2002-06-01T20:13:34+00:00", "sha256_file": "63b6950aec7ee25bc24ff8ae9844a1b543441002523d6c84016fd09bead54300", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:13:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2491", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:13:36", "EXIF DateTimeDigitized": "2002:06:01 20:13:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040444", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6ba139673dc17c9e1f19a823286392181962fc6b05b07acf90635b5bc88b8650", "phash": "8d12354bb6726d9a", "dhash": "f0f2f6c4e3f3f3d6", "phash_int": -8.281498165481149e+18, "collected_at": "2026-05-22T04:28:12.139997+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0445_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0445_IMG.JPG", "file_name": "104-0445_IMG.JPG", "file_stem": "104-0445_IMG", "file_ext": ".jpg", "file_size": 1359847.0, "mtime": "2002-06-01T20:13:44+00:00", "mtime_ts": 1022962424.0, "ctime": "2002-06-01T20:13:44+00:00", "sha256_file": "e0959e6fb07841743d6c5c46d287a9e6217d10178c4b40ab15d47d9a5640b037", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:13:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3894", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:13:46", "EXIF DateTimeDigitized": "2002:06:01 20:13:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040445", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "103", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f43e75dddf4a65224535dbe35c9b6d438eaba4988c07a647cd60e66034550c7c", "phash": "9d484d4f48ab25f5", "dhash": "b2b0b2bdfc7c78b0", "phash_int": -7.113350608514768e+18, "collected_at": "2026-05-22T04:28:12.180116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0446_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0446_IMG.JPG", "file_name": "104-0446_IMG.JPG", "file_stem": "104-0446_IMG", "file_ext": ".jpg", "file_size": 1553808.0, "mtime": "2002-06-01T20:21:48+00:00", "mtime_ts": 1022962908.0, "ctime": "2002-06-01T20:21:48+00:00", "sha256_file": "78624e4907c47a50906e713a052424627e51a058a9b25a055a5ce3ce304cf50c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:21:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5179", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:21:49", "EXIF DateTimeDigitized": "2002:06:01 20:21:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040446", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24507df9bf24b549e9746a821fc07d365ef0455bd7bbb0e9d61639b349e5bc87", "phash": "9cdf3131593ac09b", "dhash": "3a30243030b63c30", "phash_int": -7.142936395966136e+18, "collected_at": "2026-05-22T04:28:12.238217+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0447_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0447_IMG.JPG", "file_name": "104-0447_IMG.JPG", "file_stem": "104-0447_IMG", "file_ext": ".jpg", "file_size": 1596753.0, "mtime": "2002-06-01T20:22:00+00:00", "mtime_ts": 1022962920.0, "ctime": "2002-06-01T20:22:00+00:00", "sha256_file": "2db46c6dbb652cfb7f93e09010341767682edc90ef1e7f181e49e3c9e88f06fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:22:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4992", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:22:02", "EXIF DateTimeDigitized": "2002:06:01 20:22:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040447", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95e3e842ce87aceda3014c9b85be88ca3cf869324420671409bd597f75f9f835", "phash": "9ec807f448e9d07b", "dhash": "f0ecb03334bc6870", "phash_int": -7.005340474598109e+18, "collected_at": "2026-05-22T04:28:12.289468+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0448_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0448_IMG.JPG", "file_name": "104-0448_IMG.JPG", "file_stem": "104-0448_IMG", "file_ext": ".jpg", "file_size": 1606798.0, "mtime": "2002-06-01T20:22:20+00:00", "mtime_ts": 1022962940.0, "ctime": "2002-06-01T20:22:20+00:00", "sha256_file": "d28c96411ca1534084eec5c3580dfbf4d23e3c0c0fa9aa15a7e1b578d03a530c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:22:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5122", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:22:21", "EXIF DateTimeDigitized": "2002:06:01 20:22:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040448", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddecda9d11dc5bc082b37b217bbe197f7dd8ca16990f0bb7340fd155862f0d16", "phash": "a5bc4c335f673904", "dhash": "be3f3f7f7f0fcfc2", "phash_int": -6.504239978302196e+18, "collected_at": "2026-05-22T04:28:12.331274+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0449_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0449_IMG.JPG", "file_name": "104-0449_IMG.JPG", "file_stem": "104-0449_IMG", "file_ext": ".jpg", "file_size": 1588354.0, "mtime": "2002-06-01T20:23:04+00:00", "mtime_ts": 1022962984.0, "ctime": "2002-06-01T20:23:04+00:00", "sha256_file": "b015345e83b540138e352b01016329c3987ac7976d842911a03e8898a3567003", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:23:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4663", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:23:05", "EXIF DateTimeDigitized": "2002:06:01 20:23:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[76, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040449", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea5efa884750669aa1e56960b28a5f9d55f1090a0ff0349e6e8d34c3ace880e7", "phash": "c2934f5e355a55c2", "dhash": "e0e1c18b8da1a1c3", "phash_int": -4.426106742734433e+18, "collected_at": "2026-05-22T04:28:12.394400+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0450_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0450_IMG.JPG", "file_name": "104-0450_IMG.JPG", "file_stem": "104-0450_IMG", "file_ext": ".jpg", "file_size": 1845340.0, "mtime": "2002-06-01T20:24:56+00:00", "mtime_ts": 1022963096.0, "ctime": "2002-06-01T20:24:56+00:00", "sha256_file": "543f85baea317441c0a726422ca78de5335b803f81da8b91254e6c65be7156fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:24:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:24:57", "EXIF DateTimeDigitized": "2002:06:01 20:24:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040450", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4fe1800550c66513ca7d86833fc9d513a57f3a96d08a880be0d47d46972dea0", "phash": "8f97920aba8e5555", "dhash": "647c666373e2632c", "phash_int": -8.09984483002533e+18, "collected_at": "2026-05-22T04:28:12.459396+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0451_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0451_IMG.JPG", "file_name": "104-0451_IMG.JPG", "file_stem": "104-0451_IMG", "file_ext": ".jpg", "file_size": 1708141.0, "mtime": "2002-06-01T20:25:04+00:00", "mtime_ts": 1022963104.0, "ctime": "2002-06-01T20:25:04+00:00", "sha256_file": "ad5b36acb996e26f64527a7f113235229392ebb97386f3f5435feeac428879b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:25:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5100", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:25:05", "EXIF DateTimeDigitized": "2002:06:01 20:25:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040451", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5158036e7a1868a06182037d404bce7bd922b9e17f538e66e8024b139fe9c2a4", "phash": "8390d165b5e37a6a", "dhash": "d8f9c9d5e6cdcfcb", "phash_int": -8.966436623321171e+18, "collected_at": "2026-05-22T04:28:12.517409+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0452_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0452_IMG.JPG", "file_name": "104-0452_IMG.JPG", "file_stem": "104-0452_IMG", "file_ext": ".jpg", "file_size": 1835588.0, "mtime": "2002-06-01T20:25:40+00:00", "mtime_ts": 1022963140.0, "ctime": "2002-06-01T20:25:40+00:00", "sha256_file": "582ec01cac8b68f0846f27095aced668354b1fee7c79e48f6cf5c765deda4b48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:25:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4791", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:25:42", "EXIF DateTimeDigitized": "2002:06:01 20:25:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040452", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ceb8c396c326717818517f0dbc4df8a8245e2f8463ceeb486b9d698b7ad305a2", "phash": "fcb00c6b21db5359", "dhash": "34343c2c1c2c2434", "phash_int": -2.3867712598158045e+17, "collected_at": "2026-05-22T04:28:12.554536+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0453_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0453_IMG.JPG", "file_name": "104-0453_IMG.JPG", "file_stem": "104-0453_IMG", "file_ext": ".jpg", "file_size": 1671861.0, "mtime": "2002-06-01T20:26:02+00:00", "mtime_ts": 1022963162.0, "ctime": "2002-06-01T20:26:02+00:00", "sha256_file": "c48d5af8b59cd4d227ea39218f6ac056a2d6a6fe199a0873afcd1f976c07b9c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:26:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4586", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:26:04", "EXIF DateTimeDigitized": "2002:06:01 20:26:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040453", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "47", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "609c7d295e156dcd1cc83cc55309d5aa6b27b0498e4abcbf11215f3347552d4e", "phash": "e7cc0c41ad730e37", "dhash": "c6a60bcdc6cfc8c3", "phash_int": -1.7440054794768184e+18, "collected_at": "2026-05-22T04:28:12.637539+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0454_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0454_IMG.JPG", "file_name": "104-0454_IMG.JPG", "file_stem": "104-0454_IMG", "file_ext": ".jpg", "file_size": 2730861.0, "mtime": "2002-06-01T20:35:52+00:00", "mtime_ts": 1022963752.0, "ctime": "2002-06-01T20:35:52+00:00", "sha256_file": "9bf1b34a9c0e0a4c227ae7a7c931981e6a5538a387aa37f45d09bfdf9820dc10", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:35:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7679", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:35:53", "EXIF DateTimeDigitized": "2002:06:01 20:35:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040454", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c70976c66b256bcf56505c4152ec76d7332243ce2916283233f5ed56183dd37", "phash": "9059d4c6d39195b7", "dhash": "d0909e99e7e6fcfe", "phash_int": -8.045165308902534e+18, "collected_at": "2026-05-22T04:28:12.670540+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0455_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0455_IMG.JPG", "file_name": "104-0455_IMG.JPG", "file_stem": "104-0455_IMG", "file_ext": ".jpg", "file_size": 2160783.0, "mtime": "2002-06-01T20:36:04+00:00", "mtime_ts": 1022963764.0, "ctime": "2002-06-01T20:36:04+00:00", "sha256_file": "c4695a5c0611c7db64d66ca7e464f0cdd8c971c3b6dbd6e2d6dd6b806bc70bdc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:36:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6086", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:36:06", "EXIF DateTimeDigitized": "2002:06:01 20:36:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040455", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "433e7e0ef3ffb30a58df998b0ae22f11b5fb6667b1544732872ddc879efadf9e", "phash": "8eb3938e9bce41c8", "dhash": "f8eee4a4e5e66765", "phash_int": -8.164019458783953e+18, "collected_at": "2026-05-22T04:28:12.741542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\104-0457_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\104-0457_IMG.JPG", "file_name": "104-0457_IMG.JPG", "file_stem": "104-0457_IMG", "file_ext": ".jpg", "file_size": 168528.0, "mtime": "2002-06-02T11:28:42+00:00", "mtime_ts": 1023017322.0, "ctime": "2002-06-02T11:28:42+00:00", "sha256_file": "a826da0547a9bec41a08443b8e6817893ef3d7a9c0b718602d069ca8b398c1c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:02 11:28:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5293", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:02 11:28:43", "EXIF DateTimeDigitized": "2002:06:02 11:28:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040457", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd887f1bda284064f80a7eaf02f1f704db28933c927c8c0e3a594a70b0ce68a9", "phash": "d6f74d20b133192e", "dhash": "84e4ecaca4b56570", "phash_int": -2.956809827538233e+18, "collected_at": "2026-05-22T04:28:12.757544+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\104-0458_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\104-0458_IMG.JPG", "file_name": "104-0458_IMG.JPG", "file_stem": "104-0458_IMG", "file_ext": ".jpg", "file_size": 168770.0, "mtime": "2002-06-02T11:28:46+00:00", "mtime_ts": 1023017326.0, "ctime": "2002-06-02T11:28:46+00:00", "sha256_file": "3b74033611089d812b5074b6696e0e6bf4705818a38dc1e5e9082f4778604bcf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:02 11:28:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:02 11:28:48", "EXIF DateTimeDigitized": "2002:06:02 11:28:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040458", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd479529b7679ab19adfcaf3f8dd27df352c80b1e0a23c29d925c53542ebd76c", "phash": "d4f24f48b125333b", "dhash": "84e4ecacb5b17570", "phash_int": -3.1023300196766054e+18, "collected_at": "2026-05-22T04:28:12.779543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\104-0459_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\104-0459_IMG.JPG", "file_name": "104-0459_IMG.JPG", "file_stem": "104-0459_IMG", "file_ext": ".jpg", "file_size": 170342.0, "mtime": "2002-06-02T11:28:50+00:00", "mtime_ts": 1023017330.0, "ctime": "2002-06-02T11:28:50+00:00", "sha256_file": "91078f34a86aa7e8f7f3f33bed1ac50d9f101169fe81f43af65960345ecddae0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:02 11:28:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5320", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:02 11:28:52", "EXIF DateTimeDigitized": "2002:06:02 11:28:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040459", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d740c4f11f51e5702fdf33fd2ee49d41836e993f48d2162e78ff3b00d06a2b0", "phash": "c4f24fc8b325333a", "dhash": "84e4ecaaa9b17570", "phash_int": -4.255250974494084e+18, "collected_at": "2026-05-22T04:28:12.804543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0531_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0531_IMG.JPG", "file_name": "105-0531_IMG.JPG", "file_stem": "105-0531_IMG", "file_ext": ".jpg", "file_size": 192492.0, "mtime": "2002-06-03T23:23:50+00:00", "mtime_ts": 1023146630.0, "ctime": "2002-06-03T23:23:50+00:00", "sha256_file": "fc62b5b0505295f6c21c7370ac26a03309d9017bd28dc4cc3a5dda375157ec1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:03 23:23:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5926", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:03 23:23:52", "EXIF DateTimeDigitized": "2002:06:03 23:23:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "182/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050531", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1456"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1dc9e587f380dbf6abc6464223aa9af92977a0cac752c5bb6dc45d2b6abb6ab", "phash": "e1d70aed6d651312", "dhash": "c3ada886969683b1", "phash_int": -2.1732562803241075e+18, "collected_at": "2026-05-22T04:28:12.921137+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\05\\05-31\\104-0456_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\05\\05-31\\104-0456_IMG.JPG", "file_name": "104-0456_IMG.JPG", "file_stem": "104-0456_IMG", "file_ext": ".jpg", "file_size": 2319238.0, "mtime": "2002-06-01T20:36:28+00:00", "mtime_ts": 1022963788.0, "ctime": "2002-06-01T20:36:28+00:00", "sha256_file": "0e4444e2e2678a5c295fd588912e671861ec076f8948812f62583f5cb71cf818", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:01 20:36:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6575", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:01 20:36:29", "EXIF DateTimeDigitized": "2002:06:01 20:36:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[37, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1040456", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "584254cede2ff581aed74897b167c987962a3b1549e892517065539f989b445b", "phash": "86b23386b1998f57", "dhash": "cdad23e7e667ebcb", "phash_int": -8.740867273174446e+18, "collected_at": "2026-05-22T04:28:13.081480+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0532_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0532_IMG.JPG", "file_name": "105-0532_IMG.JPG", "file_stem": "105-0532_IMG", "file_ext": ".jpg", "file_size": 192867.0, "mtime": "2002-06-03T23:24:10+00:00", "mtime_ts": 1023146650.0, "ctime": "2002-06-03T23:24:10+00:00", "sha256_file": "43f7c56ec5b82b02a1289462ca1a7c4823278c819b1e7b5cd461d3f8976fab3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:03 23:24:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5866", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:03 23:24:12", "EXIF DateTimeDigitized": "2002:06:03 23:24:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1493/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050532", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1493"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0148e5887e80f62e37a846622502f14c6bdbeafc55a66b113439e5d11a59914b", "phash": "d3968f36c56a3825", "dhash": "48099989c299c3d3", "phash_int": -3.20021301979708e+18, "collected_at": "2026-05-22T04:28:13.240591+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0533_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0533_IMG.JPG", "file_name": "105-0533_IMG.JPG", "file_stem": "105-0533_IMG", "file_ext": ".jpg", "file_size": 199986.0, "mtime": "2002-06-03T23:24:16+00:00", "mtime_ts": 1023146656.0, "ctime": "2002-06-03T23:24:16+00:00", "sha256_file": "b5357679967f40518dbea0d6e817e45b3f87ba99e36d7f661b31b8991c98a3cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:03 23:24:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6063", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:03 23:24:18", "EXIF DateTimeDigitized": "2002:06:03 23:24:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "981/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050533", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1962"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54a6fce0cfeac3dfed97b09147316074d256aa59f4f36cde7d8e39ab59740e6e", "phash": "c9d68f8a85e33ac4", "dhash": "480989889299c3d2", "phash_int": -3.902774201955436e+18, "collected_at": "2026-05-22T04:28:13.289591+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0534_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0534_IMG.JPG", "file_name": "105-0534_IMG.JPG", "file_stem": "105-0534_IMG", "file_ext": ".jpg", "file_size": 196221.0, "mtime": "2002-06-03T23:24:24+00:00", "mtime_ts": 1023146664.0, "ctime": "2002-06-03T23:24:24+00:00", "sha256_file": "0b53f1968cc481742ecfa443ba7752d3aba41551c5c6a518e99cd0be1b247caa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:03 23:24:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5825", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:03 23:24:25", "EXIF DateTimeDigitized": "2002:06:03 23:24:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1461/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050534", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1461"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cca24f7df8c9bea4ab0af6a4483625e47e3326633e27d253c698c3d24c821f9", "phash": "e9da9fad12452a38", "dhash": "51939b919393d2e0", "phash_int": -1.5957875522647383e+18, "collected_at": "2026-05-22T04:28:13.307592+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0575_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0575_IMG.JPG", "file_name": "105-0575_IMG.JPG", "file_stem": "105-0575_IMG", "file_ext": ".jpg", "file_size": 2238675.0, "mtime": "2002-06-06T15:19:04+00:00", "mtime_ts": 1023376744.0, "ctime": "2002-06-06T15:19:04+00:00", "sha256_file": "6e6f14b3d68ae5e94c5bbde88c96a04ad83050d5be6f61506bfcb7f15de93cad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:19:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5343", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:19:06", "EXIF DateTimeDigitized": "2002:06:06 15:19:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050575", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86d90fa2a150c028b897a00c14d99dff0f37dcb13fa9ad9a10283872d30e2174", "phash": "c6b3dd6922061e75", "dhash": "e0f0ededcde1e7e4", "phash_int": -4.128712989756482e+18, "collected_at": "2026-05-22T04:28:13.404127+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0576_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0576_IMG.JPG", "file_name": "105-0576_IMG.JPG", "file_stem": "105-0576_IMG", "file_ext": ".jpg", "file_size": 2201694.0, "mtime": "2002-06-06T15:19:10+00:00", "mtime_ts": 1023376750.0, "ctime": "2002-06-06T15:19:10+00:00", "sha256_file": "3a150d3c5c3cb3e9a38160a329a67f2825bce94ed350edb9303cea396e5226c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:19:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5198", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:19:12", "EXIF DateTimeDigitized": "2002:06:06 15:19:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[55, 235, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050576", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b213aca48feaacfe85ea22fe42540408f6f5d9b83b319c8fe8e2ca088747c960", "phash": "83d8fe41376b0317", "dhash": "e0e0dada5ada5b5d", "phash_int": -8.946121103715401e+18, "collected_at": "2026-05-22T04:28:13.606775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0577_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0577_IMG.JPG", "file_name": "105-0577_IMG.JPG", "file_stem": "105-0577_IMG", "file_ext": ".jpg", "file_size": 2147675.0, "mtime": "2002-06-06T15:19:16+00:00", "mtime_ts": 1023376756.0, "ctime": "2002-06-06T15:19:16+00:00", "sha256_file": "aa28eaf9a067e755fa2b7e5f2bcb1eaff7da517061366c3c8d4ccd44db3cfcf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:19:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5613", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:19:17", "EXIF DateTimeDigitized": "2002:06:06 15:19:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050577", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "90b44bc10e71adbc322af002fa8b6b158f3ff6b7243b367b3672ad758f823f28", "phash": "c3d326c89897b1ec", "dhash": "4cc5c9f9b1cb66a6", "phash_int": -4.3360793732322627e+18, "collected_at": "2026-05-22T04:28:13.741782+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0578_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0578_IMG.JPG", "file_name": "105-0578_IMG.JPG", "file_stem": "105-0578_IMG", "file_ext": ".jpg", "file_size": 2138557.0, "mtime": "2002-06-06T15:19:22+00:00", "mtime_ts": 1023376762.0, "ctime": "2002-06-06T15:19:22+00:00", "sha256_file": "717b1c750efb74674802c85915ca1c3e0ce449e61f852682df4b5eef9116943a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:19:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5444", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:19:24", "EXIF DateTimeDigitized": "2002:06:06 15:19:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050578", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82bd7de54f8a22c8e2f669425b3bc1dc9d5139641206e7f1e62dcab18750ba37", "phash": "83b766c8989e61bc", "dhash": "ccc6caf8b1c961a7", "phash_int": -8.955576322262934e+18, "collected_at": "2026-05-22T04:28:13.750787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0579_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0579_IMG.JPG", "file_name": "105-0579_IMG.JPG", "file_stem": "105-0579_IMG", "file_ext": ".jpg", "file_size": 2336612.0, "mtime": "2002-06-06T15:19:50+00:00", "mtime_ts": 1023376790.0, "ctime": "2002-06-06T15:19:50+00:00", "sha256_file": "05334d2ad652fb3e3914629fa41f6a233d12ccc8b74f5467580fafe0973ddd3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:19:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5280", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:19:52", "EXIF DateTimeDigitized": "2002:06:06 15:19:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[95, 194, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050579", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "663210bca13f3d3686767228b251b097eb064c98aa2f00fbb3b8d6a6a7281160", "phash": "9fdd60e4c965390c", "dhash": "362c7c78707c2439", "phash_int": -6.927274116078291e+18, "collected_at": "2026-05-22T04:28:13.852785+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0580_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0580_IMG.JPG", "file_name": "105-0580_IMG.JPG", "file_stem": "105-0580_IMG", "file_ext": ".jpg", "file_size": 2071406.0, "mtime": "2002-06-06T15:20:04+00:00", "mtime_ts": 1023376804.0, "ctime": "2002-06-06T15:20:04+00:00", "sha256_file": "50593022a8b655a06fa5d051a48d960a7cb0194b5cbd8a69df37ed752c6c6a9f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:20:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7379", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:20:05", "EXIF DateTimeDigitized": "2002:06:06 15:20:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[120, 296, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050580", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ac483ea61899949cd06f8688b06d74f7e83ef029351aa481bc9705bdcac7db1", "phash": "c33343f2d0b5f194", "dhash": "58f9d8b23445e6e0", "phash_int": -4.381083302338629e+18, "collected_at": "2026-05-22T04:28:13.874786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0581_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0581_IMG.JPG", "file_name": "105-0581_IMG.JPG", "file_stem": "105-0581_IMG", "file_ext": ".jpg", "file_size": 2249677.0, "mtime": "2002-06-06T15:20:10+00:00", "mtime_ts": 1023376810.0, "ctime": "2002-06-06T15:20:10+00:00", "sha256_file": "bc86265956d0de85c095feb2f06d407dfe08d797434b1bff4a6c9d8083ff59fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:20:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6641", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:20:11", "EXIF DateTimeDigitized": "2002:06:06 15:20:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[126, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050581", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d35604ea4b5411db4a94f59ac21d851b0313a325da037771a35439269ed775b", "phash": "ec3c54d20f494fe1", "dhash": "34243773435593e2", "phash_int": -1.4241701209795912e+18, "collected_at": "2026-05-22T04:28:14.022937+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0582_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0582_IMG.JPG", "file_name": "105-0582_IMG.JPG", "file_stem": "105-0582_IMG", "file_ext": ".jpg", "file_size": 2259864.0, "mtime": "2002-06-06T15:27:36+00:00", "mtime_ts": 1023377256.0, "ctime": "2002-06-06T15:27:36+00:00", "sha256_file": "418da6e05d702a64cb96171627c0f2d5b5991401217d830009816a3f3126f7a1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:27:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6774", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:27:37", "EXIF DateTimeDigitized": "2002:06:06 15:27:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[135, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050582", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc0ec5d58e0b75c8abd9645cbee41f747575b1f790927609eaab9fd415fa0544", "phash": "8da75fde49944a30", "dhash": "e2e6d6e2b2393c10", "phash_int": -8.239511584929199e+18, "collected_at": "2026-05-22T04:28:14.033934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0583_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0583_IMG.JPG", "file_name": "105-0583_IMG.JPG", "file_stem": "105-0583_IMG", "file_ext": ".jpg", "file_size": 2241379.0, "mtime": "2002-06-06T15:27:40+00:00", "mtime_ts": 1023377260.0, "ctime": "2002-06-06T15:27:40+00:00", "sha256_file": "bc063072df7b913bd3a74e44d29c0bf2dfa7d61c9a3326af7e0c012360b27a13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:27:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6670", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:27:42", "EXIF DateTimeDigitized": "2002:06:06 15:27:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[115, 151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050583", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a27ee3f3c0ffeef6bae2ca446c7646bd17023cd7bbce02c9a9e26a29e395dfb", "phash": "a9ac12d669718ff0", "dhash": "76e23393834c889b", "phash_int": -6.220576273204146e+18, "collected_at": "2026-05-22T04:28:14.142941+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0584_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0584_IMG.JPG", "file_name": "105-0584_IMG.JPG", "file_stem": "105-0584_IMG", "file_ext": ".jpg", "file_size": 2256544.0, "mtime": "2002-06-06T15:27:50+00:00", "mtime_ts": 1023377270.0, "ctime": "2002-06-06T15:27:50+00:00", "sha256_file": "55c5088a4659344ab28bdf3011adc937500dbd748f0cd2c51e4758b6c7fb4d8a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:27:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6098", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:27:52", "EXIF DateTimeDigitized": "2002:06:06 15:27:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[126, 138, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050584", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "98", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4675a6e04f0d530b18fc0699a23f4625b196b55bb7ecf1d62500259ef437bb6d", "phash": "f868453ecf519896", "dhash": "12859c1139398cc0", "phash_int": -5.471112186569952e+17, "collected_at": "2026-05-22T04:28:14.149940+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0585_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0585_IMG.JPG", "file_name": "105-0585_IMG.JPG", "file_stem": "105-0585_IMG", "file_ext": ".jpg", "file_size": 2264573.0, "mtime": "2002-06-06T15:27:56+00:00", "mtime_ts": 1023377276.0, "ctime": "2002-06-06T15:27:56+00:00", "sha256_file": "2c01cba98712aa8d3035c14fbce800105a60bc4416a5ef0ca5c9e420b52760cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:27:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5791", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:27:57", "EXIF DateTimeDigitized": "2002:06:06 15:27:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[120, 144, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050585", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dfd57de8c34e1e36b9e48a476e0db338d43e20255fe5cf0051a516012883d65d", "phash": "da6c053bdd929247", "dhash": "22038d113119c8e4", "phash_int": -2.707783521277931e+18, "collected_at": "2026-05-22T04:28:14.274646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0586_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0586_IMG.JPG", "file_name": "105-0586_IMG.JPG", "file_stem": "105-0586_IMG", "file_ext": ".jpg", "file_size": 2267699.0, "mtime": "2002-06-06T15:28:02+00:00", "mtime_ts": 1023377282.0, "ctime": "2002-06-06T15:28:02+00:00", "sha256_file": "cb27d281749580ecf6e5ac84e9cd9ad7d272c0a8c4a6bdc0035e319a5ac51733", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:28:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6080", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:28:04", "EXIF DateTimeDigitized": "2002:06:06 15:28:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[139, 162, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050586", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "98", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dafb3dfa4be677bada336cd146b7bf0a849b7be92ac28fd0117ac2c4ad92f7ef", "phash": "def1809bd5ba4162", "dhash": "f0703978717175f4", "phash_int": -2.381981321108242e+18, "collected_at": "2026-05-22T04:28:14.287645+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0588_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0588_IMG.JPG", "file_name": "105-0588_IMG.JPG", "file_stem": "105-0588_IMG", "file_ext": ".jpg", "file_size": 2292534.0, "mtime": "2002-06-06T15:28:18+00:00", "mtime_ts": 1023377298.0, "ctime": "2002-06-06T15:28:18+00:00", "sha256_file": "8cc4a4cda373e3c3071fc2f90fc4263eeb6674e1f0b8a27fa2fe9c25bcf831aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:28:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4140", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:28:20", "EXIF DateTimeDigitized": "2002:06:06 15:28:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1119/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050588", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2238"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b595e86726e72253fa957fef39c7adcf8f2cd1a76d2518334099868940ffa582", "phash": "e5337cc8cbfb9002", "dhash": "88cccccceab23636", "phash_int": -1.9310626133542461e+18, "collected_at": "2026-05-22T04:28:14.409736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0587_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0587_IMG.JPG", "file_name": "105-0587_IMG.JPG", "file_stem": "105-0587_IMG", "file_ext": ".jpg", "file_size": 2262215.0, "mtime": "2002-06-06T15:28:12+00:00", "mtime_ts": 1023377292.0, "ctime": "2002-06-06T15:28:12+00:00", "sha256_file": "f4ea90f57d0ff9845880e5ce405e1f60efc316054a03fc4a63c9073921d83ce9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:28:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5381", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:28:13", "EXIF DateTimeDigitized": "2002:06:06 15:28:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "363/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050587", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2904"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc74f88c963d45f90a6b3b58b0647ccf8f2faed110ff322ba316dcaaf56ee55b", "phash": "872378fd86a0c93e", "dhash": "e04cccec6a523464", "phash_int": -8.708984224123664e+18, "collected_at": "2026-05-22T04:28:14.413739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0590_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0590_IMG.JPG", "file_name": "105-0590_IMG.JPG", "file_stem": "105-0590_IMG", "file_ext": ".jpg", "file_size": 2325477.0, "mtime": "2002-06-06T15:56:58+00:00", "mtime_ts": 1023379018.0, "ctime": "2002-06-06T15:56:58+00:00", "sha256_file": "04cf81af5349e0566ec2dae7da97b457b9cc488a1b33479b32a06473b40771ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6560", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:00", "EXIF DateTimeDigitized": "2002:06:06 15:57:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[130, 136, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050590", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb1603b08fc4830dbe420822214ad3e1d755e09439811e3c54acee9d4fabaaca", "phash": "8fe9d4ca51dc3b20", "dhash": "e0e3cbea6169f4fc", "phash_int": -8.076690491290404e+18, "collected_at": "2026-05-22T04:28:14.493990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0589_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0589_IMG.JPG", "file_name": "105-0589_IMG.JPG", "file_stem": "105-0589_IMG", "file_ext": ".jpg", "file_size": 2303675.0, "mtime": "2002-06-06T15:28:26+00:00", "mtime_ts": 1023377306.0, "ctime": "2002-06-06T15:28:26+00:00", "sha256_file": "fd4cefb67a3e7b2fbf12ee6fac01e5c4d99de7fdfed36274f3c3c7cb5bd81ffd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:28:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3994", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:28:27", "EXIF DateTimeDigitized": "2002:06:06 15:28:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "292/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050589", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2336"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c35816510b9666470a268b29966bdf385195d8f4a9e54a9cd79ca89805cb0f5a", "phash": "e4627d88d7f89423", "dhash": "80cccccce8e23636", "phash_int": -1.9898900586519214e+18, "collected_at": "2026-05-22T04:28:14.518988+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0591_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0591_IMG.JPG", "file_name": "105-0591_IMG.JPG", "file_stem": "105-0591_IMG", "file_ext": ".jpg", "file_size": 2363621.0, "mtime": "2002-06-06T15:57:04+00:00", "mtime_ts": 1023379024.0, "ctime": "2002-06-06T15:57:04+00:00", "sha256_file": "d91c0fa0c56994b13a29190dbbf951f8329725bc5c9e44b0d82cc0aa66c810c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6707", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:05", "EXIF DateTimeDigitized": "2002:06:06 15:57:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[130, 159, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050591", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec978b81e50f12200b02035f62f68219e0585d815b4b2a809623572be0e1b3b8", "phash": "8ee9c5de4ac09da2", "dhash": "e1c3ebf16978fcfc", "phash_int": -8.148764492222653e+18, "collected_at": "2026-05-22T04:28:14.592992+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0592_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0592_IMG.JPG", "file_name": "105-0592_IMG.JPG", "file_stem": "105-0592_IMG", "file_ext": ".jpg", "file_size": 2279134.0, "mtime": "2002-06-06T15:57:08+00:00", "mtime_ts": 1023379028.0, "ctime": "2002-06-06T15:57:08+00:00", "sha256_file": "0c21f046ee647e7b429af5ed38dd7d77ee27e26db7c110264820b2c3f307aef4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6153", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:10", "EXIF DateTimeDigitized": "2002:06:06 15:57:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[122, 143, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050592", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "923f2419f72ede4bf01d09e2a54f364acea8c13dfed900aaede1cb52f0501b8b", "phash": "f48762c9655c5aa5", "dhash": "c8481c3cba98840c", "phash_int": -8.265833894706968e+17, "collected_at": "2026-05-22T04:28:14.620998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0593_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0593_IMG.JPG", "file_name": "105-0593_IMG.JPG", "file_stem": "105-0593_IMG", "file_ext": ".jpg", "file_size": 2273414.0, "mtime": "2002-06-06T15:57:16+00:00", "mtime_ts": 1023379036.0, "ctime": "2002-06-06T15:57:16+00:00", "sha256_file": "3bee46edeb4e1ac01112b833533cb962429087ec47164976cefb18391e9a9f93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7582", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:17", "EXIF DateTimeDigitized": "2002:06:06 15:57:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[120, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050593", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "486349fae43d7385397926ba27dd8e82670ad39f55cdc0b503966f158cc2de1b", "phash": "820b9dcdb47449bd", "dhash": "f65949cce462649c", "phash_int": -9.075987117213727e+18, "collected_at": "2026-05-22T04:28:14.691125+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0594_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0594_IMG.JPG", "file_name": "105-0594_IMG.JPG", "file_stem": "105-0594_IMG", "file_ext": ".jpg", "file_size": 2309192.0, "mtime": "2002-06-06T15:57:22+00:00", "mtime_ts": 1023379042.0, "ctime": "2002-06-06T15:57:22+00:00", "sha256_file": "9116227142e53e1ed6eee35493462ba2a5a4c36ecea7214ac2de5047ccda2833", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6591", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:24", "EXIF DateTimeDigitized": "2002:06:06 15:57:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[119, 165, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050594", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0e15a81128703290b99a92a97374e7b0db4e56b939970b65b25398a5c11a47c", "phash": "c17bc4ce0ba1bd4a", "dhash": "c2cc9ddde9e4e4f6", "phash_int": -4.504790613016593e+18, "collected_at": "2026-05-22T04:28:14.737128+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0595_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0595_IMG.JPG", "file_name": "105-0595_IMG.JPG", "file_stem": "105-0595_IMG", "file_ext": ".jpg", "file_size": 2087206.0, "mtime": "2002-06-06T15:57:30+00:00", "mtime_ts": 1023379050.0, "ctime": "2002-06-06T15:57:30+00:00", "sha256_file": "9f195b92d40ee1101b100e5f775e69d4fab2e8a85630ce53f1b57c607c85b0a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7097", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:32", "EXIF DateTimeDigitized": "2002:06:06 15:57:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[174, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050595", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96f74e376b0031df830555120ebdf7d51c1a189f305e30fe60695a12f11ab1b7", "phash": "ca6c9790bff0b086", "dhash": "e163239381b9ed6c", "phash_int": -3.860544132612051e+18, "collected_at": "2026-05-22T04:28:14.788487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0596_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0596_IMG.JPG", "file_name": "105-0596_IMG.JPG", "file_stem": "105-0596_IMG", "file_ext": ".jpg", "file_size": 1958427.0, "mtime": "2002-06-06T15:57:36+00:00", "mtime_ts": 1023379056.0, "ctime": "2002-06-06T15:57:36+00:00", "sha256_file": "bbb5b3180df822f90dd850c77455d690cf8724d057ea07e9001a9dff844dca5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6482", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:37", "EXIF DateTimeDigitized": "2002:06:06 15:57:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[137, 210, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050596", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "902e4b540deceeba3cb6753cd43e1a7d6d722eccb1560ed8dee6188a37601b86", "phash": "da4d84d7b9f28186", "dhash": "f1311111018c0c95", "phash_int": -2.716368938162028e+18, "collected_at": "2026-05-22T04:28:14.836548+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0597_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0597_IMG.JPG", "file_name": "105-0597_IMG.JPG", "file_stem": "105-0597_IMG", "file_ext": ".jpg", "file_size": 2349393.0, "mtime": "2002-06-06T15:57:48+00:00", "mtime_ts": 1023379068.0, "ctime": "2002-06-06T15:57:48+00:00", "sha256_file": "9019c1bf6ce73d741aeeb8d3eeb33fee153658723e3835a2bb9b1614dccbb056", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5946", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:49", "EXIF DateTimeDigitized": "2002:06:06 15:57:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "979/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[125, 137, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050597", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "94", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26a03934fddf5e9e117705e30b06184837ccc942490f703a52ef2a83e08a268e", "phash": "84637ed98780d5f1", "dhash": "e08ce4e272b2ab6e", "phash_int": -8.907136165262339e+18, "collected_at": "2026-05-22T04:28:14.880727+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0598_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0598_IMG.JPG", "file_name": "105-0598_IMG.JPG", "file_stem": "105-0598_IMG", "file_ext": ".jpg", "file_size": 2333690.0, "mtime": "2002-06-06T15:57:50+00:00", "mtime_ts": 1023379070.0, "ctime": "2002-06-06T15:57:50+00:00", "sha256_file": "aadec52944278a4c52743a8b77ff5a04c9e157b7a623b58c7fc8088a927e40b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:57:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5713", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:57:52", "EXIF DateTimeDigitized": "2002:06:06 15:57:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2217/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[121, 147, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050598", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2217"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fb365384002e5cdd87a22d36bffb0f05c07732fd761629f42aea5ce4d600af2", "phash": "8771fcc887f0a136", "dhash": "c0c8cce8eaf0356e", "phash_int": -8.686884268016624e+18, "collected_at": "2026-05-22T04:28:14.940889+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0599_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0599_IMG.JPG", "file_name": "105-0599_IMG.JPG", "file_stem": "105-0599_IMG", "file_ext": ".jpg", "file_size": 2304777.0, "mtime": "2002-06-06T15:58:00+00:00", "mtime_ts": 1023379080.0, "ctime": "2002-06-06T15:58:00+00:00", "sha256_file": "f898b8c00ccb8a613499655025965c8bf9fa5b49b47bbd60ba38255e04665f32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:58:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5452", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:58:01", "EXIF DateTimeDigitized": "2002:06:06 15:58:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[117, 149, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050599", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "245af6cf11943267836efd031a1df38d1a1ec293e5d9d490f4e8e3cf1b40047c", "phash": "8573788987f1752a", "dhash": "e0c8cce86af2b2ac", "phash_int": -8.83058191225681e+18, "collected_at": "2026-05-22T04:28:14.984887+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\105-0600_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\105-0600_IMG.JPG", "file_name": "105-0600_IMG.JPG", "file_stem": "105-0600_IMG", "file_ext": ".jpg", "file_size": 2327981.0, "mtime": "2002-06-06T15:58:06+00:00", "mtime_ts": 1023379086.0, "ctime": "2002-06-06T15:58:06+00:00", "sha256_file": "3dda51c56a1b1cb9bed11ce68d444745d912c93ece17e99031edc44d93c800fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 15:58:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5183", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 15:58:08", "EXIF DateTimeDigitized": "2002:06:06 15:58:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1887/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[110, 156, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050600", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1887"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9fedc13c96ba92e7614b8a3f528e6a9cd5c55b0b49356c00ff9a57527be938f4", "phash": "86f11f88cab3b04f", "dhash": "d0e0ccc8a9b4ee67", "phash_int": -8.723156330863153e+18, "collected_at": "2026-05-22T04:28:15.053890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0601_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0601_IMG.JPG", "file_name": "106-0601_IMG.JPG", "file_stem": "106-0601_IMG", "file_ext": ".jpg", "file_size": 2349709.0, "mtime": "2002-06-06T17:55:42+00:00", "mtime_ts": 1023386142.0, "ctime": "2002-06-06T17:55:42+00:00", "sha256_file": "1ac8963165badc2035651e0b316d438c15c08ea6491999e44dcce3b84015ba3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:55:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5597", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:55:43", "EXIF DateTimeDigitized": "2002:06:06 17:55:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2573/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060601", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2573"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d69861e88360a6d5a0852ac9821230270110e5a89cc2631ccf15d4eb5c03ed40", "phash": "d22a58ddea24abb4", "dhash": "8598cfcd89529c99", "phash_int": -3.302729666583549e+18, "collected_at": "2026-05-22T04:28:15.109894+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0602_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0602_IMG.JPG", "file_name": "106-0602_IMG.JPG", "file_stem": "106-0602_IMG", "file_ext": ".jpg", "file_size": 2383345.0, "mtime": "2002-06-06T17:55:44+00:00", "mtime_ts": 1023386144.0, "ctime": "2002-06-06T17:55:44+00:00", "sha256_file": "3f82e94296ba2154a6b53766960d50f8b4307a7c02dbcdb608caad59170737c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:55:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5555", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:55:46", "EXIF DateTimeDigitized": "2002:06:06 17:55:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2329/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060602", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2329"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f78645bedca5710e65e981a3a6a8308d719e631da799bb82a3560cbb4e347e20", "phash": "d20a59dda6a2a7a9", "dhash": "8418cdcd845498d2", "phash_int": -3.3117357674592563e+18, "collected_at": "2026-05-22T04:28:15.160976+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0603_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0603_IMG.JPG", "file_name": "106-0603_IMG.JPG", "file_stem": "106-0603_IMG", "file_ext": ".jpg", "file_size": 2334161.0, "mtime": "2002-06-06T17:55:50+00:00", "mtime_ts": 1023386150.0, "ctime": "2002-06-06T17:55:50+00:00", "sha256_file": "18fe02ce87b8a0c71cfc2b40b2e70834b981c228eb53b6daf1ac1e4b4bfb12f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:55:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5367", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:55:52", "EXIF DateTimeDigitized": "2002:06:06 17:55:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "293/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[46, 219, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060603", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2344"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3dd0803a4ae668d7493b6fc1174e45ed4c824784d7f44bf61142aca4bf262898", "phash": "d2ae11d9d66a065d", "dhash": "877e6d6d609199dc", "phash_int": -3.265653052494183e+18, "collected_at": "2026-05-22T04:28:15.209980+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0604_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0604_IMG.JPG", "file_name": "106-0604_IMG.JPG", "file_stem": "106-0604_IMG", "file_ext": ".jpg", "file_size": 2244889.0, "mtime": "2002-06-06T17:55:58+00:00", "mtime_ts": 1023386158.0, "ctime": "2002-06-06T17:55:58+00:00", "sha256_file": "4285ba3afc39e07bd2ff9e1ba33298cb62e5868daed7f1f80333828ee50eb63c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:55:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6312", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:55:59", "EXIF DateTimeDigitized": "2002:06:06 17:55:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[123, 179, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060604", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8953815e447bbf3368996f35ef4d671f64144128636e1f54abf0b642e2b7a389", "phash": "c3a8c7c5a4527d1b", "dhash": "c6cba9a9d3f048c4", "phash_int": -4.3480057885468595e+18, "collected_at": "2026-05-22T04:28:15.257981+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0605_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0605_IMG.JPG", "file_name": "106-0605_IMG.JPG", "file_stem": "106-0605_IMG", "file_ext": ".jpg", "file_size": 1092044.0, "mtime": "2002-06-06T17:56:06+00:00", "mtime_ts": 1023386166.0, "ctime": "2002-06-06T17:56:06+00:00", "sha256_file": "5078cd2968f9ab3edd98e3b577a167652b61cb1fb1e1642302fd6a250a646eb6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:56:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3574", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:56:08", "EXIF DateTimeDigitized": "2002:06:06 17:56:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2919/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060605", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2919"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "62110c11618b717cc7044a162e6dd02b4b2c24785ec79a8a04cf84458271bb47", "phash": "bd3de06c8bc119c3", "dhash": "072f1b3b3b370687", "phash_int": -4.810442070156044e+18, "collected_at": "2026-05-22T04:28:15.289106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0606_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0606_IMG.JPG", "file_name": "106-0606_IMG.JPG", "file_stem": "106-0606_IMG", "file_ext": ".jpg", "file_size": 1008085.0, "mtime": "2002-06-06T17:56:14+00:00", "mtime_ts": 1023386174.0, "ctime": "2002-06-06T17:56:14+00:00", "sha256_file": "f7b345808018fd789f94254f20212ece6c86b68b42962d8e3d194ec3065f47a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:56:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3136", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:56:15", "EXIF DateTimeDigitized": "2002:06:06 17:56:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "229/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060606", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "916"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c048e2757717edd37fc340b99e0da0250a352a70b93c1b8d6c5b45a0795589a", "phash": "e9391687d9b4b468", "dhash": "1713179393068fa9", "phash_int": -1.6412558164709407e+18, "collected_at": "2026-05-22T04:28:15.345240+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0607_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0607_IMG.JPG", "file_name": "106-0607_IMG.JPG", "file_stem": "106-0607_IMG", "file_ext": ".jpg", "file_size": 913577.0, "mtime": "2002-06-06T17:56:24+00:00", "mtime_ts": 1023386184.0, "ctime": "2002-06-06T17:56:24+00:00", "sha256_file": "c2e56ff1ccc215eed4b264fc242545e93e7c6cec6304cbe93f42539095b8f988", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:56:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2949", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:56:25", "EXIF DateTimeDigitized": "2002:06:06 17:56:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 232, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060607", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2c434aa633b1376a4b7cf421c53ca95e47257c62be3bcf3ba9750b24740a25c", "phash": "e84a362d92617d9e", "dhash": "1323230b3313130d", "phash_int": -1.708493539276391e+18, "collected_at": "2026-05-22T04:28:15.368244+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0608_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0608_IMG.JPG", "file_name": "106-0608_IMG.JPG", "file_stem": "106-0608_IMG", "file_ext": ".jpg", "file_size": 1134413.0, "mtime": "2002-06-06T17:56:40+00:00", "mtime_ts": 1023386200.0, "ctime": "2002-06-06T17:56:40+00:00", "sha256_file": "d0c694b2a9ccb75f06942a834854951d9206b2839d80fe0cf129ad590740eab5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:56:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2994", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:56:41", "EXIF DateTimeDigitized": "2002:06:06 17:56:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "241/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "90028/5", "EXIF FocalPlaneYResolution": "90028/5", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060608", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "635", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2410"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5cd09a2175b6a145cd0391a2e1f88c555406975af1a7655f02ee36d6198c304", "phash": "e561d6929859d999", "dhash": "8c0e161696864c4c", "phash_int": -1.918016041173526e+18, "collected_at": "2026-05-22T04:28:15.435245+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0609_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0609_IMG.JPG", "file_name": "106-0609_IMG.JPG", "file_stem": "106-0609_IMG", "file_ext": ".jpg", "file_size": 2193412.0, "mtime": "2002-06-06T17:57:20+00:00", "mtime_ts": 1023386240.0, "ctime": "2002-06-06T17:57:20+00:00", "sha256_file": "cb958cd507428b34b43cd403e5eb195365804a682f9920130ce82f37c6167973", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:57:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5069", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:57:21", "EXIF DateTimeDigitized": "2002:06:06 17:57:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2573/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 226, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060609", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2573"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f56bdfc4e4bdc95f9e982a51f2770dcc362dd9fa127c403397b649223faae12a", "phash": "fcc9823fe02ccb34", "dhash": "030022321c7c248c", "phash_int": -2.3151069497728736e+17, "collected_at": "2026-05-22T04:28:15.462340+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0610_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0610_IMG.JPG", "file_name": "106-0610_IMG.JPG", "file_stem": "106-0610_IMG", "file_ext": ".jpg", "file_size": 2109326.0, "mtime": "2002-06-06T17:57:24+00:00", "mtime_ts": 1023386244.0, "ctime": "2002-06-06T17:57:24+00:00", "sha256_file": "41babd5f34bf69ac540948ac59d0b5d4f8ad861a1e95ca2a16c19ed6bc7a1dce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:57:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5320", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:57:26", "EXIF DateTimeDigitized": "2002:06:06 17:57:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "541/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060610", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1082"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "feb435d5458c626b44e72917060ae13363735a377b2e2058b6283365617e5e3a", "phash": "f4c9823ef1ac8974", "dhash": "0300320a1c2c248c", "phash_int": -8.079714512820937e+17, "collected_at": "2026-05-22T04:28:15.542345+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0611_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0611_IMG.JPG", "file_name": "106-0611_IMG.JPG", "file_stem": "106-0611_IMG", "file_ext": ".jpg", "file_size": 2229582.0, "mtime": "2002-06-06T17:57:50+00:00", "mtime_ts": 1023386270.0, "ctime": "2002-06-06T17:57:50+00:00", "sha256_file": "85a1f04b791b5583a32bff044654b2b78719d54a5cb80180f45f55c88c6fcc75", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:57:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3367", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:57:52", "EXIF DateTimeDigitized": "2002:06:06 17:57:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "38/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[61, 207, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060611", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1520"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e9bed541f945cf0fddca7eb56f6e958e1a53af436a490a6e24e50ff216445c2", "phash": "b09973dc833cc633", "dhash": "9b9bbdb7bfb5b7cd", "phash_int": -5.721414460665706e+18, "collected_at": "2026-05-22T04:28:15.558343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0612_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0612_IMG.JPG", "file_name": "106-0612_IMG.JPG", "file_stem": "106-0612_IMG", "file_ext": ".jpg", "file_size": 2215029.0, "mtime": "2002-06-06T17:57:56+00:00", "mtime_ts": 1023386276.0, "ctime": "2002-06-06T17:57:56+00:00", "sha256_file": "984dd8df519ace5152d3faf624be646cd38d556fa2e95cd61bf75dc44946cb5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:57:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3388", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:57:57", "EXIF DateTimeDigitized": "2002:06:06 17:57:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1399/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 195, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060612", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1399"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "065a7842fc3e7316d8563fdfd6fc8952b16c6e05a0420c379388ec664f78c23a", "phash": "bc8b67cc0638e633", "dhash": "665a5dbd3e25358d", "phash_int": -4.860677246840936e+18, "collected_at": "2026-05-22T04:28:15.648793+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0613_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0613_IMG.JPG", "file_name": "106-0613_IMG.JPG", "file_stem": "106-0613_IMG", "file_ext": ".jpg", "file_size": 2328186.0, "mtime": "2002-06-06T17:58:06+00:00", "mtime_ts": 1023386286.0, "ctime": "2002-06-06T17:58:06+00:00", "sha256_file": "39c426e595310f09a0a833ae556d743979f58207221fc1d5928bd38bba7aae32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:58:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4614", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:58:08", "EXIF DateTimeDigitized": "2002:06:06 17:58:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "953/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[56, 210, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060613", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1906"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5676cb976c54b93e706b758671a85e9150e9621651634d1dfe1190faf71e1f72", "phash": "92a15fdced007ca3", "dhash": "3fcf8e8e2a307854", "phash_int": -7.880912470447982e+18, "collected_at": "2026-05-22T04:28:15.663851+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0615_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0615_IMG.JPG", "file_name": "106-0615_IMG.JPG", "file_stem": "106-0615_IMG", "file_ext": ".jpg", "file_size": 1309698.0, "mtime": "2002-06-06T17:58:38+00:00", "mtime_ts": 1023386318.0, "ctime": "2002-06-06T17:58:38+00:00", "sha256_file": "4c6bebbb96819b13898c307aca1083827b1175b00db03c9c674ee5459578d9e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:58:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4321", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:58:39", "EXIF DateTimeDigitized": "2002:06:06 17:58:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2027/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 232, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060615", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2027"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12dbfbaff76ee39959f756c84c91e2fb21d585575d1ec78e0865fc25e9a07338", "phash": "b1e5f24e068a4c7d", "dhash": "4c1e96b3b2b298c8", "phash_int": -5.627825742398469e+18, "collected_at": "2026-05-22T04:28:15.748852+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0614_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0614_IMG.JPG", "file_name": "106-0614_IMG.JPG", "file_stem": "106-0614_IMG", "file_ext": ".jpg", "file_size": 2304583.0, "mtime": "2002-06-06T17:58:14+00:00", "mtime_ts": 1023386294.0, "ctime": "2002-06-06T17:58:14+00:00", "sha256_file": "a7361d37785180af66d457ede409438536f723db4c3b188f96bb01920d60cb4d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:58:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4392", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:58:15", "EXIF DateTimeDigitized": "2002:06:06 17:58:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "313/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[55, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060614", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1565"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a1a51fbc81e135c7d211549cf16076b0c8a5133fd55eaa015b4dbe4c5a3fa23", "phash": "f6603918d16b5de2", "dhash": "00ccc4ec28206d4a", "phash_int": -6.934915638595835e+17, "collected_at": "2026-05-22T04:28:15.754852+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0616_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0616_IMG.JPG", "file_name": "106-0616_IMG.JPG", "file_stem": "106-0616_IMG", "file_ext": ".jpg", "file_size": 1202533.0, "mtime": "2002-06-06T17:58:48+00:00", "mtime_ts": 1023386328.0, "ctime": "2002-06-06T17:58:48+00:00", "sha256_file": "52dad500596877eb6d9cbc5c824482eeb1cee74c3b5a9e060bd8e0b237155480", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:58:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3223", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:58:50", "EXIF DateTimeDigitized": "2002:06:06 17:58:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[38, 229, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060616", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1852"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb0f2d5d4f7f6383935797c40d43b9a4859157597472a6e32b21ba7d8e9b36da", "phash": "fcb04be104e9a75c", "dhash": "973d2c26158f3331", "phash_int": -2.386073504284899e+17, "collected_at": "2026-05-22T04:28:15.832956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0617_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0617_IMG.JPG", "file_name": "106-0617_IMG.JPG", "file_stem": "106-0617_IMG", "file_ext": ".jpg", "file_size": 1168318.0, "mtime": "2002-06-06T17:59:00+00:00", "mtime_ts": 1023386340.0, "ctime": "2002-06-06T17:59:00+00:00", "sha256_file": "606616dcc1985bf7c9c852e36fc0000d51d9a0342fce434b56518d301b089d15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:59:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2682", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:59:01", "EXIF DateTimeDigitized": "2002:06:06 17:59:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "213/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060617", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1065"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e99f6f04cae194d1a6b088b7da26a4e0352815f7e64b6c07f99e532b08b8c202", "phash": "ebe21ced455ca415", "dhash": "270d4d4b4b1733cc", "phash_int": -1.4495643246633523e+18, "collected_at": "2026-05-22T04:28:15.844958+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0618_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0618_IMG.JPG", "file_name": "106-0618_IMG.JPG", "file_stem": "106-0618_IMG", "file_ext": ".jpg", "file_size": 1199781.0, "mtime": "2002-06-06T17:59:06+00:00", "mtime_ts": 1023386346.0, "ctime": "2002-06-06T17:59:06+00:00", "sha256_file": "cf7ba7d78800ed3db1a3c20f106681e0d99dfacf5d2865b44602f094718a660a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:59:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3654", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:59:07", "EXIF DateTimeDigitized": "2002:06:06 17:59:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "389/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060618", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1556"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09838cc3522b19117167d162bb30f239611b7172c0f3c239d7862566584a0cf9", "phash": "b4fc1f81f06d9360", "dhash": "36342c3c9cfe6e8c", "phash_int": -5.405410809806482e+18, "collected_at": "2026-05-22T04:28:15.920960+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0619_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0619_IMG.JPG", "file_name": "106-0619_IMG.JPG", "file_stem": "106-0619_IMG", "file_ext": ".jpg", "file_size": 1274422.0, "mtime": "2002-06-06T17:59:36+00:00", "mtime_ts": 1023386376.0, "ctime": "2002-06-06T17:59:36+00:00", "sha256_file": "473337916de9250b74ba81619fb38dfd4b1be3385a5a0970cce37b6b2f17ff14", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:59:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3248", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:59:38", "EXIF DateTimeDigitized": "2002:06:06 17:59:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060619", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "177d00807accaa01bb69fd11558e394bc111c5e77220367e3c474c8cfd9529d9", "phash": "e77912f40adac2a5", "dhash": "46c6434a666444c4", "phash_int": -1.76736053940278e+18, "collected_at": "2026-05-22T04:28:15.923957+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0621_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0621_IMG.JPG", "file_name": "106-0621_IMG.JPG", "file_stem": "106-0621_IMG", "file_ext": ".jpg", "file_size": 1234177.0, "mtime": "2002-06-06T18:00:04+00:00", "mtime_ts": 1023386404.0, "ctime": "2002-06-06T18:00:04+00:00", "sha256_file": "dfd2332b4aba47eb29c83a8b0487471d63906ee90f09c92be12fb7a64426b9da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:00:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3252", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:00:06", "EXIF DateTimeDigitized": "2002:06:06 18:00:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "304/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060621", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2432"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a751a99f9621fe91104e6eb38c8306a527020b18ccdf2d6734533c9503a047de", "phash": "ed78a7975a861528", "dhash": "8e9692b3b346c6c6", "phash_int": -1.3351330210147151e+18, "collected_at": "2026-05-22T04:28:16.042965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0620_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0620_IMG.JPG", "file_name": "106-0620_IMG.JPG", "file_stem": "106-0620_IMG", "file_ext": ".jpg", "file_size": 2297373.0, "mtime": "2002-06-06T17:59:48+00:00", "mtime_ts": 1023386388.0, "ctime": "2002-06-06T17:59:48+00:00", "sha256_file": "103a6a5d38a4fa04266ca288edd6efbf95d7afc23a74fad2e5d32f5a149d8a47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 17:59:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4311", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 17:59:49", "EXIF DateTimeDigitized": "2002:06:06 17:59:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1743/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[68, 194, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060620", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1743"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d693be24bda877f09927d5f6bb3b67cdcb7784f9bf20efd2879c9432cc93c767", "phash": "862115dedf196663", "dhash": "ffcf8d87696df466", "phash_int": -8.781713751425849e+18, "collected_at": "2026-05-22T04:28:16.066965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0622_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0622_IMG.JPG", "file_name": "106-0622_IMG.JPG", "file_stem": "106-0622_IMG", "file_ext": ".jpg", "file_size": 1968039.0, "mtime": "2002-06-06T18:00:46+00:00", "mtime_ts": 1023386446.0, "ctime": "2002-06-06T18:00:46+00:00", "sha256_file": "21c7a9171e90beac4ce53739ec7b491c592b61e62ed1c7a7c1298493e96dea73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:00:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5394", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:00:47", "EXIF DateTimeDigitized": "2002:06:06 18:00:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1329/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[115, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060622", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1329"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6f701d0e633f265ce7e526955414e6f8f33bd04786783d1ee1f821218503de0", "phash": "a691966bb16c364b", "dhash": "fcfeeca68349616c", "phash_int": -6.444204202508143e+18, "collected_at": "2026-05-22T04:28:16.182971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0623_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0623_IMG.JPG", "file_name": "106-0623_IMG.JPG", "file_stem": "106-0623_IMG", "file_ext": ".jpg", "file_size": 2002992.0, "mtime": "2002-06-06T18:00:52+00:00", "mtime_ts": 1023386452.0, "ctime": "2002-06-06T18:00:52+00:00", "sha256_file": "590530ae6397b75e4a20098c0e3f02eb799eb22eabdc4abf561bb172ce560975", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:00:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4997", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:00:53", "EXIF DateTimeDigitized": "2002:06:06 18:00:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3183/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[121, 226, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060623", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3183"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f9778ec736bb16ef86938e5fc6d2c20765839679449af90dba2ea294e2523bc", "phash": "a58693699e663a65", "dhash": "f9fce4262303c2c8", "phash_int": -6.519361328733865e+18, "collected_at": "2026-05-22T04:28:16.219969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0624_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0624_IMG.JPG", "file_name": "106-0624_IMG.JPG", "file_stem": "106-0624_IMG", "file_ext": ".jpg", "file_size": 2270044.0, "mtime": "2002-06-06T18:01:00+00:00", "mtime_ts": 1023386460.0, "ctime": "2002-06-06T18:01:00+00:00", "sha256_file": "17c78fe26445e5c5034c7af7ff7d8c7f89a4ff9fa374bd9153d6fd9475ec5714", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:01:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4235", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:01:01", "EXIF DateTimeDigitized": "2002:06:06 18:01:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "273/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060624", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1365"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9dfb03857177159fa3c93002c9f04d32258d49ad37b1634ed65906be7b4f77a", "phash": "e1a6725b8a995cc9", "dhash": "edc6c6c35318988c", "phash_int": -2.1869348315489e+18, "collected_at": "2026-05-22T04:28:16.311977+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0625_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0625_IMG.JPG", "file_name": "106-0625_IMG.JPG", "file_stem": "106-0625_IMG", "file_ext": ".jpg", "file_size": 2369707.0, "mtime": "2002-06-06T18:43:32+00:00", "mtime_ts": 1023389012.0, "ctime": "2002-06-06T18:43:32+00:00", "sha256_file": "ad2fe1924828f44136fd9eafc96c74afc3042a8db7fc88775249a562669ba2e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:43:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4555", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:43:33", "EXIF DateTimeDigitized": "2002:06:06 18:43:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1601/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 236, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060625", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1601"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0f2b2cbe0189a27d33053533ef0f6eb949ce7b730df8165614e7c1a08f0aef8", "phash": "8deb74b2814d8f32", "dhash": "e06073f3ec69b7b6", "phash_int": -8.220348384812364e+18, "collected_at": "2026-05-22T04:28:16.314974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0627_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0627_IMG.JPG", "file_name": "106-0627_IMG.JPG", "file_stem": "106-0627_IMG", "file_ext": ".jpg", "file_size": 1108807.0, "mtime": "2002-06-06T18:43:48+00:00", "mtime_ts": 1023389028.0, "ctime": "2002-06-06T18:43:48+00:00", "sha256_file": "cd0812dd94f3fceda1513c1a89c4f7901b2c9337c9f2fe87fc01e4c7597f0ee7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:43:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4521", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:43:50", "EXIF DateTimeDigitized": "2002:06:06 18:43:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1407/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060627", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2814"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5bf37a5f416b26bd3a1435f11ad77216b50e3901f9b9491438edc6b73a965311", "phash": "fca4166113bfa057", "dhash": "9e36363392136569", "phash_int": -2.4204387377219984e+17, "collected_at": "2026-05-22T04:28:16.396986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0626_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0626_IMG.JPG", "file_name": "106-0626_IMG.JPG", "file_stem": "106-0626_IMG", "file_ext": ".jpg", "file_size": 2318793.0, "mtime": "2002-06-06T18:43:36+00:00", "mtime_ts": 1023389016.0, "ctime": "2002-06-06T18:43:36+00:00", "sha256_file": "a15beb6220850c6fc04ae69eb5f762bb990fe67323f73cc46816e8c4627f7e5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:43:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4601", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:43:37", "EXIF DateTimeDigitized": "2002:06:06 18:43:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[35, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060626", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1101"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f793078b642511f18d50aa4fdee39305dbaa42ec3f53aba025647117f5024355", "phash": "89e7381697f1c88d", "dhash": "50a3d3d268bdb773", "phash_int": -8.509771301203622e+18, "collected_at": "2026-05-22T04:28:16.421082+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0629_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0629_IMG.JPG", "file_name": "106-0629_IMG.JPG", "file_stem": "106-0629_IMG", "file_ext": ".jpg", "file_size": 1104432.0, "mtime": "2002-06-06T18:45:14+00:00", "mtime_ts": 1023389114.0, "ctime": "2002-06-06T18:45:14+00:00", "sha256_file": "ce2fa25680e76f325e41a803d582a11944650ec9f97e32c5c11de4f8eb171ec6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:45:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4071", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:45:15", "EXIF DateTimeDigitized": "2002:06:06 18:45:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1029/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060629", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2058"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2bf6ecd564faf603d5305946ba3e9cc2970f2b77bed2ab8a62140ea5938dc6ac", "phash": "a979f4c7c3111e16", "dhash": "8e1b3bdb7b62d666", "phash_int": -6.234683070309392e+18, "collected_at": "2026-05-22T04:28:16.483191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0628_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0628_IMG.JPG", "file_name": "106-0628_IMG.JPG", "file_stem": "106-0628_IMG", "file_ext": ".jpg", "file_size": 1132873.0, "mtime": "2002-06-06T18:44:16+00:00", "mtime_ts": 1023389056.0, "ctime": "2002-06-06T18:44:16+00:00", "sha256_file": "d1c788039fb96eab016a9ace1c776fb1708cae0357f06569603be434193467b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:44:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4478", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:44:18", "EXIF DateTimeDigitized": "2002:06:06 18:44:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2377/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060628", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2377"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf63ade1b6fd671f5998af05938638974e6d2a0615e5a5df1cf52038a4cb3312", "phash": "bda47c6333303a53", "dhash": "16223b7ad8393131", "phash_int": -4.781560138858218e+18, "collected_at": "2026-05-22T04:28:16.500192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0630_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0630_IMG.JPG", "file_name": "106-0630_IMG.JPG", "file_stem": "106-0630_IMG", "file_ext": ".jpg", "file_size": 1118488.0, "mtime": "2002-06-06T18:45:32+00:00", "mtime_ts": 1023389132.0, "ctime": "2002-06-06T18:45:32+00:00", "sha256_file": "de171570c399d47c5255898d5d0f3772df833026e0a25fb4602b7bfeb68836fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:45:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4157", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:45:33", "EXIF DateTimeDigitized": "2002:06:06 18:45:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2377/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060630", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2377"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dc6d49f2aa134cf83b7652fe4e9c4ba0223b3d7e8e06d86a6778b792a7e46d6", "phash": "bda56b4977922a41", "dhash": "9696b3b6b2333311", "phash_int": -4.781297466101061e+18, "collected_at": "2026-05-22T04:28:16.566189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0631_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0631_IMG.JPG", "file_name": "106-0631_IMG.JPG", "file_stem": "106-0631_IMG", "file_ext": ".jpg", "file_size": 1067498.0, "mtime": "2002-06-06T18:45:40+00:00", "mtime_ts": 1023389140.0, "ctime": "2002-06-06T18:45:40+00:00", "sha256_file": "40dba205e3e66d527828d741274cff5b357179b8a7435e979072e1bc2490a464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:45:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3565", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:45:41", "EXIF DateTimeDigitized": "2002:06:06 18:45:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1029/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 239, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060631", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2058"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d66f8ce8cdf8beeb33c580456f9d86b2e263cbc6d964cce58c0ba21240d32de9", "phash": "ad3fb0708b93a447", "dhash": "1626667363969e9e", "phash_int": -5.962853384190713e+18, "collected_at": "2026-05-22T04:28:16.569198+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0632_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0632_IMG.JPG", "file_name": "106-0632_IMG.JPG", "file_stem": "106-0632_IMG", "file_ext": ".jpg", "file_size": 1059768.0, "mtime": "2002-06-06T18:45:46+00:00", "mtime_ts": 1023389146.0, "ctime": "2002-06-06T18:45:46+00:00", "sha256_file": "6023e03c8ee522b9490999cbd8c937f4b5974d5b2c3054161d019087a8fd99ba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:45:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3548", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:45:48", "EXIF DateTimeDigitized": "2002:06:06 18:45:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2377/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060632", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2377"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "549ed31e1047d6dff0eb6afa463326879b6ecb145b682a4bd33bba1289056a6c", "phash": "ea78a767508ca563", "dhash": "8b9991958547e7e3", "phash_int": -1.5513060094542712e+18, "collected_at": "2026-05-22T04:28:16.662325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0633_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0633_IMG.JPG", "file_name": "106-0633_IMG.JPG", "file_stem": "106-0633_IMG", "file_ext": ".jpg", "file_size": 1040592.0, "mtime": "2002-06-06T18:46:00+00:00", "mtime_ts": 1023389160.0, "ctime": "2002-06-06T18:46:00+00:00", "sha256_file": "50deff044d89ba2c48d4638fd3c93e06589cec29fac712a31b29f426ab737fc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3710", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:01", "EXIF DateTimeDigitized": "2002:06:06 18:46:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060633", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "73", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86eac35d62fa1f884c3eed93a50c53698450ccd1239115d1cb4805c6a2828733", "phash": "f878c581a733c6cc", "dhash": "9f9399999b9b9b8f", "phash_int": -5.424665944515034e+17, "collected_at": "2026-05-22T04:28:16.678328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0634_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0634_IMG.JPG", "file_name": "106-0634_IMG.JPG", "file_stem": "106-0634_IMG", "file_ext": ".jpg", "file_size": 1043576.0, "mtime": "2002-06-06T18:46:06+00:00", "mtime_ts": 1023389166.0, "ctime": "2002-06-06T18:46:06+00:00", "sha256_file": "9138676c1ae6158c8de9d054ae676026ece6e82d7d27d49f861e268abbecc76f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3749", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:07", "EXIF DateTimeDigitized": "2002:06:06 18:46:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2221/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060634", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "17768"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "383d4a98c681244105e525cc5e9c9893f0a27a13383c67339e12ba7b656b06df", "phash": "bd2f51c2d0b81de8", "dhash": "3667373626361e1e", "phash_int": -4.814539579468539e+18, "collected_at": "2026-05-22T04:28:16.743328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0635_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0635_IMG.JPG", "file_name": "106-0635_IMG.JPG", "file_stem": "106-0635_IMG", "file_ext": ".jpg", "file_size": 1129872.0, "mtime": "2002-06-06T18:46:16+00:00", "mtime_ts": 1023389176.0, "ctime": "2002-06-06T18:46:16+00:00", "sha256_file": "95ac34177ea30f27b5611e5d71ca4130ae30dd90701e851236f94a8ef5e60282", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4649", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:17", "EXIF DateTimeDigitized": "2002:06:06 18:46:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060635", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81045c5bebc01cc90dd35ea139592cda643399385befefd33228a6b0ddcf2622", "phash": "c53bffc0e0668c61", "dhash": "131363c382a6c602", "phash_int": -4.234509820748199e+18, "collected_at": "2026-05-22T04:28:16.757332+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0637_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0637_IMG.JPG", "file_name": "106-0637_IMG.JPG", "file_stem": "106-0637_IMG", "file_ext": ".jpg", "file_size": 1112675.0, "mtime": "2002-06-06T18:46:26+00:00", "mtime_ts": 1023389186.0, "ctime": "2002-06-06T18:46:26+00:00", "sha256_file": "870cce25c8da0fe62d2d13caa67dcab14e2c50b9478a5265a1058cfeddb420c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4319", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:28", "EXIF DateTimeDigitized": "2002:06:06 18:46:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060637", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50dcf9e508f4fcbcaada8979f5add4d439473472846114fbe18da881513751d1", "phash": "cf3f72700b93d013", "dhash": "1062617172e0890d", "phash_int": -3.5129633587695575e+18, "collected_at": "2026-05-22T04:28:16.823427+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0636_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0636_IMG.JPG", "file_name": "106-0636_IMG.JPG", "file_stem": "106-0636_IMG", "file_ext": ".jpg", "file_size": 1101472.0, "mtime": "2002-06-06T18:46:22+00:00", "mtime_ts": 1023389182.0, "ctime": "2002-06-06T18:46:22+00:00", "sha256_file": "6cfa013a79e1b6fbee12bab3dfa26badc6b3fd054c7c946ef58eec14d2dc2f04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4024", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:23", "EXIF DateTimeDigitized": "2002:06:06 18:46:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060636", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6402ed5cd55085250416816a695aeff7399365e20f9879c066df12f5bf6f7854", "phash": "df5a74612b92c193", "dhash": "3231696962a0c424", "phash_int": -2.352439894655975e+18, "collected_at": "2026-05-22T04:28:16.839428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0638_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0638_IMG.JPG", "file_name": "106-0638_IMG.JPG", "file_stem": "106-0638_IMG", "file_ext": ".jpg", "file_size": 1119440.0, "mtime": "2002-06-06T18:46:36+00:00", "mtime_ts": 1023389196.0, "ctime": "2002-06-06T18:46:36+00:00", "sha256_file": "14fd588b21dcd1fa432d14d74cffed85cc9a915c52abc81565437881d3a6fc4a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:46:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4398", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:46:38", "EXIF DateTimeDigitized": "2002:06:06 18:46:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060638", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7a595181584184df026bb384f5d188a3be54f5302d31362e5414d0f5aae1fe5", "phash": "cf0a743c0d2ff650", "dhash": "73f1c96bf3d40626", "phash_int": -3.5278795568232556e+18, "collected_at": "2026-05-22T04:28:16.972433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0639_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0639_IMG.JPG", "file_name": "106-0639_IMG.JPG", "file_stem": "106-0639_IMG", "file_ext": ".jpg", "file_size": 1050672.0, "mtime": "2002-06-06T18:46:58+00:00", "mtime_ts": 1023389218.0, "ctime": "2002-06-06T18:46:58+00:00", "sha256_file": "60684fa673b13c5823c3c80e6cbfdce8541761102d516cbd0e905e852cb4bebb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 18:47:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 18:47:00", "EXIF DateTimeDigitized": "2002:06:06 18:47:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "273/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[31, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060639", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2184"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0604d1727ed55754f49168490937f45197b0887006027afc7cc9416efa56fb7", "phash": "e9291665d3f6290d", "dhash": "9793b39b92928e8d", "phash_int": -1.6457595622235727e+18, "collected_at": "2026-05-22T04:28:16.996434+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0641_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0641_IMG.JPG", "file_name": "106-0641_IMG.JPG", "file_stem": "106-0641_IMG", "file_ext": ".jpg", "file_size": 2329945.0, "mtime": "2002-06-06T19:36:50+00:00", "mtime_ts": 1023392210.0, "ctime": "2002-06-06T19:36:50+00:00", "sha256_file": "f057f4ed9f1bf3f5795a3972755f7ed2f13477fc4da7e77bf664fd892c687b04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 19:36:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4710", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 19:36:51", "EXIF DateTimeDigitized": "2002:06:06 19:36:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2499/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060641", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2499"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30d2ae95d2fda90d284cff2c5f468f003b1e79d9c062821e07eb367e90530463", "phash": "a5d71aa98fa67482", "dhash": "0d106c4ec2d6cdb5", "phash_int": -6.496694621896805e+18, "collected_at": "2026-05-22T04:28:17.096442+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0640_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0640_IMG.JPG", "file_name": "106-0640_IMG.JPG", "file_stem": "106-0640_IMG", "file_ext": ".jpg", "file_size": 2472241.0, "mtime": "2002-06-06T19:36:28+00:00", "mtime_ts": 1023392188.0, "ctime": "2002-06-06T19:36:28+00:00", "sha256_file": "cba549abf6542f37fe181389c63c2b6c40c125a3f6aa954975eea62def584b1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 19:36:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5158", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 19:36:30", "EXIF DateTimeDigitized": "2002:06:06 19:36:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 329, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060640", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82e91d92690d4d558ba5ded8e2b9042c841fa14f710697041926b6aaa6995ca0", "phash": "8a757cd570608e3d", "dhash": "9051e9d9d969f1f3", "phash_int": -8.469726268045095e+18, "collected_at": "2026-05-22T04:28:17.107439+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-38 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-06-38 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-06-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 222012.0, "mtime": "2002-06-06T13:06:36+00:00", "mtime_ts": 1023368796.0, "ctime": "2002-06-06T13:06:36+00:00", "sha256_file": "feb0418264a9e40f9464d100409a3f67edc8cb512e2e7035acabae8e67ddf2b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:06:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5024", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:06:38", "EXIF DateTimeDigitized": "2002:06:06 13:06:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050566", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef3b000c8ea3fd81ba39744d0d2121b185819e283c62edadf656fdb96aedaf3d", "phash": "9683f1a88fc55356", "dhash": "f0fde8e468f9a078", "phash_int": -7.600966039802392e+18, "collected_at": "2026-05-22T04:28:17.143445+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-43 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-06-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-06-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 218147.0, "mtime": "2002-06-06T13:06:42+00:00", "mtime_ts": 1023368802.0, "ctime": "2002-06-06T13:06:42+00:00", "sha256_file": "73c50c4164cbb265fd4368f831e8c76be39ee28940057bc24be9e9a305a266bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:06:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4937", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:06:43", "EXIF DateTimeDigitized": "2002:06:06 13:06:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050567", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7417394ee0a4638ab56f80f6d28a57dd2b5f53124ad14e779718ee14eb5297a2", "phash": "c099bea780f65e4c", "dhash": "e0bab0d0d0e3e0a0", "phash_int": -4.568410720358212e+18, "collected_at": "2026-05-22T04:28:17.158444+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-47 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-47 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-06-47 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-06-47 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 214872.0, "mtime": "2002-06-06T13:06:46+00:00", "mtime_ts": 1023368806.0, "ctime": "2002-06-06T13:06:46+00:00", "sha256_file": "878a0adbcf7fecb76fa9ccc8fa717fef9cbed90f43656ff8008ca8c4b742d9c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:06:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4960", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:06:47", "EXIF DateTimeDigitized": "2002:06:06 13:06:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050568", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "295cff7c07257325d3ecf30d740e84036507708c446ceaff693dcad6bc5558e7", "phash": "d8a4a68b8d377668", "dhash": "00b08488b1290920", "phash_int": -2.835958747036683e+18, "collected_at": "2026-05-22T04:28:17.170445+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-52 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-06-52 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-06-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 222933.0, "mtime": "2002-06-06T13:06:50+00:00", "mtime_ts": 1023368810.0, "ctime": "2002-06-06T13:06:50+00:00", "sha256_file": "966c19e58f446084c07b7afccda41241f29abd34d7615fcfb2b6f6ffb262d5a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:06:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5183", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:06:52", "EXIF DateTimeDigitized": "2002:06:06 13:06:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050569", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "15d6b212b343e85503b11949474a17b927ffc5dfd2113b56bfcf7080f9c863fd", "phash": "f19e8ed1f1c9060e", "dhash": "002d67929c14d287", "phash_int": -1.036233831892843e+18, "collected_at": "2026-05-22T04:28:17.191443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\106-0642_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\106-0642_IMG.JPG", "file_name": "106-0642_IMG.JPG", "file_stem": "106-0642_IMG", "file_ext": ".jpg", "file_size": 2310245.0, "mtime": "2002-06-06T19:36:56+00:00", "mtime_ts": 1023392216.0, "ctime": "2002-06-06T19:36:56+00:00", "sha256_file": "590e294005917bb1e9ae1104ff147a36795ac93ee4e770efb9c9fe49216cc85c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 19:36:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4646", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 19:36:57", "EXIF DateTimeDigitized": "2002:06:06 19:36:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1143/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060642", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2286"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f27c4a54c1d5b3e85c2cc306fb576d152fa0e4cf8b974ecc3cca9216da506809", "phash": "a5db92898db65386", "dhash": "0c120c46e3d74fde", "phash_int": -6.495436918066097e+18, "collected_at": "2026-05-22T04:28:17.201441+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-56 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-06-56 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-06-56 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-06-56 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 222817.0, "mtime": "2002-06-06T13:06:54+00:00", "mtime_ts": 1023368814.0, "ctime": "2002-06-06T13:06:54+00:00", "sha256_file": "70b664aa3f9359061bd46d65cac90b756e3e7cd590a6421b92fc4c945b8b1b51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:06:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5074", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:06:56", "EXIF DateTimeDigitized": "2002:06:06 13:06:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050570", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a08a30862bb397ba61af8a660699a0bc04419c920721ae3e49f2b3dcdfb09942", "phash": "f08d87dcf1a61b05", "dhash": "0013be8c90202e18", "phash_int": -1.1130841498738947e+18, "collected_at": "2026-05-22T04:28:17.263443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-00 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-00 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-07-00 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-07-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 216380.0, "mtime": "2002-06-06T13:06:58+00:00", "mtime_ts": 1023368818.0, "ctime": "2002-06-06T13:06:58+00:00", "sha256_file": "550b462b95112ab8f4ddb65da4c3487ce8fd94b94c96a8e519382cae8f950107", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:07:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5044", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:07:00", "EXIF DateTimeDigitized": "2002:06:06 13:07:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050571", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aff902cf1e6c23ba2ddf92251dd652a82ee8c50b470ef0706106dfd48f535ad7", "phash": "cca1a394cc5a6977", "dhash": "00cf432122276ce1", "phash_int": -3.7014975592428723e+18, "collected_at": "2026-05-22T04:28:17.264443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-08 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-08 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-07-08 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-07-08 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 216434.0, "mtime": "2002-06-06T13:07:06+00:00", "mtime_ts": 1023368826.0, "ctime": "2002-06-06T13:07:06+00:00", "sha256_file": "723e63d96eb48badb71280395c79428809844276e2ae05b8bd12c28e634c2afa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:07:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4841", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:07:08", "EXIF DateTimeDigitized": "2002:06:06 13:07:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050573", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0a97f10e469992739323ff3960ac0f766b79c312095e477f7aa553c66e8fcae", "phash": "8199bea783765c49", "dhash": "e0bab0d0d0f2e0b2", "phash_int": -9.10803914470573e+18, "collected_at": "2026-05-22T04:28:17.291446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-04 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-07-04 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-07-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 212428.0, "mtime": "2002-06-06T13:07:02+00:00", "mtime_ts": 1023368822.0, "ctime": "2002-06-06T13:07:02+00:00", "sha256_file": "73589d2b21473b19d98f5ce034c922f936758cce2d3334853c35563c6acb39e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:07:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4854", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:07:04", "EXIF DateTimeDigitized": "2002:06:06 13:07:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050572", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3f099b3840410d3f46241c009c381651fcf87d41028b1f39f0ac1c0843b85fe", "phash": "d089ab9e966f6161", "dhash": "80d882c494940491", "phash_int": -3.4200137443941166e+18, "collected_at": "2026-05-22T04:28:17.293444+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2002-06-06 13-07-13 Canon PowerShot S40.JPG", "file_name": "2002-06-06 13-07-13 Canon PowerShot S40.JPG", "file_stem": "2002-06-06 13-07-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 227909.0, "mtime": "2002-06-06T13:07:12+00:00", "mtime_ts": 1023368832.0, "ctime": "2002-06-06T13:07:12+00:00", "sha256_file": "a0f738a57f6f5894aa5f202f8a8bc07f96ede29f5ab68965ee13dd33a36619a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:06 13:07:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5166", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:06 13:07:13", "EXIF DateTimeDigitized": "2002:06:06 13:07:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1050574", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2f6cabfee293276746684d5bd23cf6d7a39fa2a3ad0ff438353ef115eea0c87", "phash": "99ace6a291cac575", "dhash": "203736b89afe68d6", "phash_int": -7.373264904007269e+18, "collected_at": "2026-05-22T04:28:17.331447+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2003-06-06--21-09-27-002.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2003-06-06--21-09-27-002.jpg", "file_name": "2003-06-06--21-09-27-002.jpg", "file_stem": "2003-06-06--21-09-27-002", "file_ext": ".jpg", "file_size": 1676048.0, "mtime": "2003-06-06T20:09:26+00:00", "mtime_ts": 1054930166.0, "ctime": "2003-06-06T20:09:26+00:00", "sha256_file": "4b31a5224dc234834374f0a4abfe7d849b345074f8ef8b75bc5ffc0e6ff98e2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:06 21:09:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3205", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:06 21:09:27", "EXIF DateTimeDigitized": "2003:06:06 21:09:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "237/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "474"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "768010065bb3954509c7eee05d5eb6b8ef2ae23465a8460f1206c0baed99547f", "phash": "f4acc3b3198d8b31", "dhash": "cc96b6b296ccf0c8", "phash_int": -8.160622584656335e+17, "collected_at": "2026-05-22T04:28:17.409520+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\2003-06-06--21-09-36-002.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\2003-06-06--21-09-36-002.jpg", "file_name": "2003-06-06--21-09-36-002.jpg", "file_stem": "2003-06-06--21-09-36-002", "file_ext": ".jpg", "file_size": 1619002.0, "mtime": "2003-06-06T20:09:34+00:00", "mtime_ts": 1054930174.0, "ctime": "2003-06-06T20:09:34+00:00", "sha256_file": "1f434b1727f038fe60e0bdf23c82bf3dd3efd1693f2bbf1ddb83ed8d66ec462f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:06 21:09:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2760", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:06 21:09:36", "EXIF DateTimeDigitized": "2003:06:06 21:09:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "143/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65507", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "572"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2631141b82eb4a4c4a81b1e18271e4064a366515dd5b8b968cecb2303f33c2e", "phash": "f4a4cb9333cccc23", "dhash": "c88c9696cce8f0f0", "phash_int": -8.18305399184897e+17, "collected_at": "2026-05-22T04:28:17.430520+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-06\\Dům panoramaticky 2002-06-06.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-06\\Dům panoramaticky 2002-06-06.jpg", "file_name": "Dům panoramaticky 2002-06-06.jpg", "file_stem": "Dům panoramaticky 2002-06-06", "file_ext": ".jpg", "file_size": 111577.0, "mtime": "2002-06-07T17:34:52+00:00", "mtime_ts": 1023471292.0, "ctime": "2002-06-07T17:34:52+00:00", "sha256_file": "f91a497616d69b1d47bc637daef65ee445025646218fbc1fb0d1d343f7ed45e8", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 878.0, "height": 423.0, "megapixels": 0.37, "has_transparency": 0.0, "dpi": [200.0, 200.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "34504f394326e5cc1e0aa6990c417167e49bffd440d80b0762624b4151d412b2", "phash": "c2adafb290b5d544", "dhash": "7063e0bce9cc85c8", "phash_int": -4.418682477913713e+18, "collected_at": "2026-05-22T04:28:17.442517+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0834_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0834_IMG.JPG", "file_name": "108-0834_IMG.JPG", "file_stem": "108-0834_IMG", "file_ext": ".jpg", "file_size": 1705172.0, "mtime": "2002-06-28T08:40:40+00:00", "mtime_ts": 1025253640.0, "ctime": "2002-06-28T08:40:40+00:00", "sha256_file": "0f71e3db38db19d43498ef1ce202d56316e30c31db0ecd56c0591e401c136cef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:40:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6151", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:40:42", "EXIF DateTimeDigitized": "2002:06:28 08:40:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080834", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "468447a97075d629e50163704eb5b446d297ec27436e1b202184dcb29aaa2817", "phash": "c1c0bf31236c6977", "dhash": "d4ccc3c5c8923072", "phash_int": -4.4853750110924037e+18, "collected_at": "2026-05-22T04:28:17.529525+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0833_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0833_IMG.JPG", "file_name": "108-0833_IMG.JPG", "file_stem": "108-0833_IMG", "file_ext": ".jpg", "file_size": 1834069.0, "mtime": "2002-06-27T21:01:58+00:00", "mtime_ts": 1025211718.0, "ctime": "2002-06-27T21:01:58+00:00", "sha256_file": "85d52985acb4a4da72d9560a84d3f64e07f7ebd32a3066392bcf9f9ae67729ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 21:01:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5736", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 21:01:59", "EXIF DateTimeDigitized": "2002:06:27 21:01:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080833", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70d8e21ba1b2de00106012e3105fe8c1d39beb504281e686ccc7ea965e9b90c1", "phash": "a2985d0a6d7f037a", "dhash": "e57dcd85cdcd4fe2", "phash_int": -6.73052734373711e+18, "collected_at": "2026-05-22T04:28:17.536523+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0837_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0837_IMG.JPG", "file_name": "108-0837_IMG.JPG", "file_stem": "108-0837_IMG", "file_ext": ".jpg", "file_size": 1508393.0, "mtime": "2002-06-28T08:43:54+00:00", "mtime_ts": 1025253834.0, "ctime": "2002-06-28T08:43:54+00:00", "sha256_file": "a218f73fa924edc304d0380b0c7593b5eff1a589fe37d0d87ad75d5a5b4e538d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:43:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3867", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:43:56", "EXIF DateTimeDigitized": "2002:06:28 08:43:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "127/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080837", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "145", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54a310f47a077241487e6c9d147b01de5bd1f98ea1e756ec8c5ded56c6a525ae", "phash": "b9a61ee147ea251a", "dhash": "5c14169a92923331", "phash_int": -5.069330377635913e+18, "collected_at": "2026-05-22T04:28:17.664638+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0836_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0836_IMG.JPG", "file_name": "108-0836_IMG.JPG", "file_stem": "108-0836_IMG", "file_ext": ".jpg", "file_size": 1657213.0, "mtime": "2002-06-28T08:43:48+00:00", "mtime_ts": 1025253828.0, "ctime": "2002-06-28T08:43:48+00:00", "sha256_file": "5b1d4ad9a8c24fed6b40d6ee2a5e8c3cfe582196dc7386dd639c0f2f6aa01879", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:43:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:43:49", "EXIF DateTimeDigitized": "2002:06:28 08:43:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "163/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 221, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080836", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "145", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "815"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "771d06c45b4d9b10d7289101d31916ff3e64443898f5126abeaa1454fba322c8", "phash": "b9861ee14fe8259a", "dhash": "4e14169a9a923331", "phash_int": -5.078337576756567e+18, "collected_at": "2026-05-22T04:28:17.668635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0838_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0838_IMG.JPG", "file_name": "108-0838_IMG.JPG", "file_stem": "108-0838_IMG", "file_ext": ".jpg", "file_size": 1525763.0, "mtime": "2002-06-28T08:44:04+00:00", "mtime_ts": 1025253844.0, "ctime": "2002-06-28T08:44:04+00:00", "sha256_file": "e34a5b8e378ee7ebd8144643c878442789bb728d90c63b78d342e49fd9a3b188", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:44:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3987", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:44:05", "EXIF DateTimeDigitized": "2002:06:28 08:44:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "87/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080838", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "152", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "870"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd183eb8e23a75cb1bc22244f3fd47a9e5203c753442c224a6def71227fd5b29", "phash": "dac7c93496a534a5", "dhash": "78e1c1b5a591b2f9", "phash_int": -2.6819538253729495e+18, "collected_at": "2026-05-22T04:28:17.763635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0839_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0839_IMG.JPG", "file_name": "108-0839_IMG.JPG", "file_stem": "108-0839_IMG", "file_ext": ".jpg", "file_size": 1597084.0, "mtime": "2002-06-28T08:44:10+00:00", "mtime_ts": 1025253850.0, "ctime": "2002-06-28T08:44:10+00:00", "sha256_file": "84a67322c2ccc2a0fa26f950b9a485f23c5c4a2711adab493545839377270413", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:44:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4144", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:44:12", "EXIF DateTimeDigitized": "2002:06:28 08:44:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/10", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080839", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "900"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f9cc135737ab4a719df62338b90ad4c2b0b8cc3189217716f4c4face9f79dbc", "phash": "dac7d934962534a5", "dhash": "f8f1c1b5ad91b2f9", "phash_int": -2.6819362331952937e+18, "collected_at": "2026-05-22T04:28:17.769638+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0841_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0841_IMG.JPG", "file_name": "108-0841_IMG.JPG", "file_stem": "108-0841_IMG", "file_ext": ".jpg", "file_size": 1310622.0, "mtime": "2002-06-28T08:45:54+00:00", "mtime_ts": 1025253954.0, "ctime": "2002-06-28T08:45:54+00:00", "sha256_file": "c2324de44380053676d60fcbb65e862bfad40d265252e5e4bfc7a3581d2b70bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:45:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3905", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:45:56", "EXIF DateTimeDigitized": "2002:06:28 08:45:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "651/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[29, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080841", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "149", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "651"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "97644a3b0ce99731077b1c60d686702f093f7a693ab5573bd14bbb0fd40cb3c8", "phash": "c99b693c92c12acf", "dhash": "1052515860b1d292", "phash_int": -3.919423341814798e+18, "collected_at": "2026-05-22T04:28:17.877749+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0840_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0840_IMG.JPG", "file_name": "108-0840_IMG.JPG", "file_stem": "108-0840_IMG", "file_ext": ".jpg", "file_size": 1394834.0, "mtime": "2002-06-28T08:45:48+00:00", "mtime_ts": 1025253948.0, "ctime": "2002-06-28T08:45:48+00:00", "sha256_file": "7abb8cbf22c8f7156b975a97bdc66b0eff1b87b0944e09b588f9069c0c6f4941", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:45:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3892", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:45:50", "EXIF DateTimeDigitized": "2002:06:28 08:45:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080840", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "702"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd0a815e122be81532c2ea077a4c7a49e3bad565f400f4ead15e0d6b121815a4", "phash": "d99b68b693431e85", "dhash": "d8105250542192d2", "phash_int": -2.766502412725052e+18, "collected_at": "2026-05-22T04:28:17.903748+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0842_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0842_IMG.JPG", "file_name": "108-0842_IMG.JPG", "file_stem": "108-0842_IMG", "file_ext": ".jpg", "file_size": 1444694.0, "mtime": "2002-06-28T08:46:02+00:00", "mtime_ts": 1025253962.0, "ctime": "2002-06-28T08:46:02+00:00", "sha256_file": "4ff90732afe30c994ea50ef1a44b7c4f113b582e24e1b983f5e02011d83b5ac6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:46:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3988", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:46:04", "EXIF DateTimeDigitized": "2002:06:28 08:46:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "839/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080842", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "839"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a937701fe14da4c146d2416bf36ef5be89545b61f94f9748f37190557688015e", "phash": "d99e493096c73a9c", "dhash": "591071683491d2d2", "phash_int": -2.765692648122009e+18, "collected_at": "2026-05-22T04:28:18.006754+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0843_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0843_IMG.JPG", "file_name": "108-0843_IMG.JPG", "file_stem": "108-0843_IMG", "file_ext": ".jpg", "file_size": 1422402.0, "mtime": "2002-06-28T08:46:12+00:00", "mtime_ts": 1025253972.0, "ctime": "2002-06-28T08:46:12+00:00", "sha256_file": "74b0c725bb09e8f98294d4c6fd51217fe03c629945d897f06104475bbfff59aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 08:46:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 08:46:14", "EXIF DateTimeDigitized": "2002:06:28 08:46:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "203/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080843", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "812"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2071fb90cb2795a431b81d820b29afa0861974fd9f4c6ab19d41d425d4ca87fa", "phash": "cd9b683a93c12b8e", "dhash": "b03252516920b2b2", "phash_int": -3.6311940737478707e+18, "collected_at": "2026-05-22T04:28:18.013753+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0860_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0860_IMG.JPG", "file_name": "108-0860_IMG.JPG", "file_stem": "108-0860_IMG", "file_ext": ".jpg", "file_size": 2229493.0, "mtime": "2002-06-28T19:13:20+00:00", "mtime_ts": 1025291600.0, "ctime": "2002-06-28T19:13:20+00:00", "sha256_file": "d55fc35ca91f18aced22df87b35471ad6ec99a5164c87f03a709ad75cf14a3cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 19:13:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8116", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 19:13:21", "EXIF DateTimeDigitized": "2002:06:28 19:13:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080860", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18c84d6985151f66c8621ef417b5f0c412bd93b70d2ac8f96b52df172f07c78d", "phash": "b89b656c30275f43", "dhash": "2e39699d9526a686", "phash_int": -5.1444066340019e+18, "collected_at": "2026-05-22T04:28:18.121756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0861_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0861_IMG.JPG", "file_name": "108-0861_IMG.JPG", "file_stem": "108-0861_IMG", "file_ext": ".jpg", "file_size": 2043563.0, "mtime": "2002-06-28T19:13:26+00:00", "mtime_ts": 1025291606.0, "ctime": "2002-06-28T19:13:26+00:00", "sha256_file": "f7bd546addca4141b01580257bae6819e594ffc11db7a0acac9de154b6ab5e32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 19:13:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7293", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 19:13:27", "EXIF DateTimeDigitized": "2002:06:28 19:13:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080861", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44beb17d38f949c986e1f91f8f96c8e40bde5a565be8293e113fa4f69c4512ed", "phash": "c89051a9b27a9e6f", "dhash": "919224aca1b39b99", "phash_int": -3.994603080191927e+18, "collected_at": "2026-05-22T04:28:18.138760+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0862_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0862_IMG.JPG", "file_name": "108-0862_IMG.JPG", "file_stem": "108-0862_IMG", "file_ext": ".jpg", "file_size": 1869695.0, "mtime": "2002-06-28T19:13:32+00:00", "mtime_ts": 1025291612.0, "ctime": "2002-06-28T19:13:32+00:00", "sha256_file": "9c3c91fc21d85aaca551f00d0248fed4163666b955e72b47d03e2950e6292bee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 19:13:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7196", "EXIF ExposureTime": "1/250", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 19:13:34", "EXIF DateTimeDigitized": "2002:06:28 19:13:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "209/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080862", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2090"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f1d5b563123c4ee86c850388f5149c56b1ac00fcfee1595030573e4cb5abce1", "phash": "edc6a6afa0dd2481", "dhash": "67e170b293475316", "phash_int": -1.3131789680835858e+18, "collected_at": "2026-05-22T04:28:18.220759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0863_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0863_IMG.JPG", "file_name": "108-0863_IMG.JPG", "file_stem": "108-0863_IMG", "file_ext": ".jpg", "file_size": 1493374.0, "mtime": "2002-06-28T19:13:48+00:00", "mtime_ts": 1025291628.0, "ctime": "2002-06-28T19:13:48+00:00", "sha256_file": "80c7122b738711531e784daa515f643c21077b12db433eec614258a47f76e736", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 19:13:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5908", "EXIF ExposureTime": "1/125", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 19:13:50", "EXIF DateTimeDigitized": "2002:06:28 19:13:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1939/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080863", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1939"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19ad1afb8a3c961bc031bd0b7914779e260f7575d3987432816659896c0f7e33", "phash": "d13b20a4ee636d5c", "dhash": "0a18109920ea8aa3", "phash_int": -3.3700640034104653e+18, "collected_at": "2026-05-22T04:28:18.258761+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0864_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0864_IMG.JPG", "file_name": "108-0864_IMG.JPG", "file_stem": "108-0864_IMG", "file_ext": ".jpg", "file_size": 1816331.0, "mtime": "2002-06-28T19:13:56+00:00", "mtime_ts": 1025291636.0, "ctime": "2002-06-28T19:13:56+00:00", "sha256_file": "2c8681476020807e2d967fed4f1b19a1f32efb459864b7a68f8e4bfffca98022", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 19:13:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7435", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 19:13:57", "EXIF DateTimeDigitized": "2002:06:28 19:13:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "973/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080864", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1946"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a68498c59cf4f0e2281cb1942d40b4cc1c14b411589ffa961eceb7459e944b0f", "phash": "999fe205be0fa096", "dhash": "7818387992921a93", "phash_int": -7.376929150318174e+18, "collected_at": "2026-05-22T04:28:18.366765+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0865_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0865_IMG.JPG", "file_name": "108-0865_IMG.JPG", "file_stem": "108-0865_IMG", "file_ext": ".jpg", "file_size": 1766188.0, "mtime": "2002-06-28T20:19:36+00:00", "mtime_ts": 1025295576.0, "ctime": "2002-06-28T20:19:36+00:00", "sha256_file": "63eb7b922e68a1ac848f5c2b360f2765f4f4c13c8de756c095e1f512d14e8d39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:19:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7212", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:19:38", "EXIF DateTimeDigitized": "2002:06:28 20:19:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080865", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "76", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1cbc4021d4c031fd7bf5f1571c6dc3d8336e3a2da63d39f69d35d7e7a50a654d", "phash": "800edce5f2ad1e65", "dhash": "b3f7f79f9c9e9291", "phash_int": -9.219188507003773e+18, "collected_at": "2026-05-22T04:28:18.390772+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0866_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0866_IMG.JPG", "file_name": "108-0866_IMG.JPG", "file_stem": "108-0866_IMG", "file_ext": ".jpg", "file_size": 1289700.0, "mtime": "2002-06-28T20:19:48+00:00", "mtime_ts": 1025295588.0, "ctime": "2002-06-28T20:19:48+00:00", "sha256_file": "86f2dc48f438c1d9d3398c387372f022bba5e99869b3ee58fabbd2fa81f952a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:19:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5094", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:19:50", "EXIF DateTimeDigitized": "2002:06:28 20:19:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "189/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080866", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3780"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7343d772e810c6d04861aa67f7efd44bf847141238366bf813045412e1a88d63", "phash": "9b06f607d1acd586", "dhash": "7ccdf13979530b19", "phash_int": -7.275857634527489e+18, "collected_at": "2026-05-22T04:28:18.488771+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0867_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0867_IMG.JPG", "file_name": "108-0867_IMG.JPG", "file_stem": "108-0867_IMG", "file_ext": ".jpg", "file_size": 1698010.0, "mtime": "2002-06-28T20:20:00+00:00", "mtime_ts": 1025295600.0, "ctime": "2002-06-28T20:20:00+00:00", "sha256_file": "7e02214f531c0ad6e0bff4fc4eed9563a9696775d544845b8f825f9fc28f6ceb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:01", "EXIF DateTimeDigitized": "2002:06:28 20:20:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "326/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080867", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2608"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1fa97a0ad9cb1a1e17223946d9c29ee8cd308084ad5c19b4f07f896116172bbb", "phash": "85325bc49fcdc436", "dhash": "fe8fc6d6e6c6e672", "phash_int": -8.848909417776823e+18, "collected_at": "2026-05-22T04:28:18.507772+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0868_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0868_IMG.JPG", "file_name": "108-0868_IMG.JPG", "file_stem": "108-0868_IMG", "file_ext": ".jpg", "file_size": 1436196.0, "mtime": "2002-06-28T20:20:08+00:00", "mtime_ts": 1025295608.0, "ctime": "2002-06-28T20:20:08+00:00", "sha256_file": "9229004c954c75493c3e0c0641151f42d03d32fd29d920692ddc1f8f10c710e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4554", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:09", "EXIF DateTimeDigitized": "2002:06:28 20:20:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1647/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080868", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1647"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e13bdeefdd3b9a2c98056eb0c656b294e4e0d18c91c5d06313a5aaa760bf749", "phash": "d5c1fe15425b9562", "dhash": "8066a6b2147e2e2c", "phash_int": -3.043872505864678e+18, "collected_at": "2026-05-22T04:28:18.585119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0869_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0869_IMG.JPG", "file_name": "108-0869_IMG.JPG", "file_stem": "108-0869_IMG", "file_ext": ".jpg", "file_size": 1470898.0, "mtime": "2002-06-28T20:20:24+00:00", "mtime_ts": 1025295624.0, "ctime": "2002-06-28T20:20:24+00:00", "sha256_file": "1adfada0237813d4f97f70cbf33c2a8ae5cef3fc2106cfce45392db9e975df58", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5503", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:25", "EXIF DateTimeDigitized": "2002:06:28 20:20:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1211/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080869", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1211"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9593e1431dcfa5bb3a598fd9ab138e66f2c4ac1da35c5a27f1a0e51df8a4f75e", "phash": "972c657103f27627", "dhash": "dab2696978f0d4c0", "phash_int": -7.553550938935233e+18, "collected_at": "2026-05-22T04:28:18.602117+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0871_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0871_IMG.JPG", "file_name": "108-0871_IMG.JPG", "file_stem": "108-0871_IMG", "file_ext": ".jpg", "file_size": 1637001.0, "mtime": "2002-06-28T20:20:42+00:00", "mtime_ts": 1025295642.0, "ctime": "2002-06-28T20:20:42+00:00", "sha256_file": "ba63704cd59d749ed87b9373fa46b893222f6b5242ff1cd7dcd64faecb7b1ab7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4878", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:43", "EXIF DateTimeDigitized": "2002:06:28 20:20:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "57/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080871", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1425"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0b6fa39fd5ef60b299c63f4a488b7c953408d53d08c0335a8b25669cb99bab3", "phash": "991b772645766646", "dhash": "083939b2f3f37958", "phash_int": -7.414201355277539e+18, "collected_at": "2026-05-22T04:28:18.681481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0870_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0870_IMG.JPG", "file_name": "108-0870_IMG.JPG", "file_stem": "108-0870_IMG", "file_ext": ".jpg", "file_size": 1502180.0, "mtime": "2002-06-28T20:20:30+00:00", "mtime_ts": 1025295630.0, "ctime": "2002-06-28T20:20:30+00:00", "sha256_file": "b921e6375a048c03a83240b815f698da753a0e36466ed5c9d64d8ba29bca1153", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4643", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:31", "EXIF DateTimeDigitized": "2002:06:28 20:20:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "981/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080870", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "981"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23cb29cadfbfcef2ad668149bc6dcd6a0818cd89d69cbe3aa6830937d5896816", "phash": "991b736744f23256", "dhash": "083a3932b2f37979", "phash_int": -7.41420547415984e+18, "collected_at": "2026-05-22T04:28:18.697481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0873_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0873_IMG.JPG", "file_name": "108-0873_IMG.JPG", "file_stem": "108-0873_IMG", "file_ext": ".jpg", "file_size": 1710024.0, "mtime": "2002-06-28T21:22:50+00:00", "mtime_ts": 1025299370.0, "ctime": "2002-06-28T21:22:50+00:00", "sha256_file": "fcbcf2de1a68b47717d1dc1a5480fcd6d29f614bc787051126de959fa9661a23", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 21:22:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5236", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 21:22:51", "EXIF DateTimeDigitized": "2002:06:28 21:22:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080873", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d47fc5b5d628f9f37c24050d4b2b087acbb683aa2ecb506cfb2450a55fe7b9cb", "phash": "f39d1cc60c0f47d8", "dhash": "1e1e1e4f0e4f1e1e", "phash_int": -8.925255142180598e+17, "collected_at": "2026-05-22T04:28:18.766484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-28\\108-0872_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-28\\108-0872_IMG.JPG", "file_name": "108-0872_IMG.JPG", "file_stem": "108-0872_IMG", "file_ext": ".jpg", "file_size": 1603478.0, "mtime": "2002-06-28T20:20:56+00:00", "mtime_ts": 1025295656.0, "ctime": "2002-06-28T20:20:56+00:00", "sha256_file": "4c7bbf1d4c4fc2a488191a61658f0de3b7c8ceb852b969cc1a7b8001f137904f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 20:20:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5710", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 20:20:58", "EXIF DateTimeDigitized": "2002:06:28 20:20:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1199/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080872", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1199"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9343ce2b46b9bef4937a074044cbc5a1bc54dda4bbfe2c0bfe110180d14e0046", "phash": "841bf3b60dd4929d", "dhash": "dfcfd47676dd9692", "phash_int": -8.927273873090244e+18, "collected_at": "2026-05-22T04:28:18.769482+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0874_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0874_IMG.JPG", "file_name": "108-0874_IMG.JPG", "file_stem": "108-0874_IMG", "file_ext": ".jpg", "file_size": 2264212.0, "mtime": "2002-06-28T21:22:56+00:00", "mtime_ts": 1025299376.0, "ctime": "2002-06-28T21:22:56+00:00", "sha256_file": "f1ba682d6c4a437d8d235645dda867573899d04db7ed6d6855c5ac1aac57bca1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 21:22:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5954", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 21:22:57", "EXIF DateTimeDigitized": "2002:06:28 21:22:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080874", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51d675ec4c85805eaae927d744c8a853f9b88a0b828ec883295ee6275e1b7f0f", "phash": "8e9ed30a6c3ad2ca", "dhash": "69f0fc3663e95190", "phash_int": -8.169860632284573e+18, "collected_at": "2026-05-22T04:28:18.845927+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0875_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0875_IMG.JPG", "file_name": "108-0875_IMG.JPG", "file_stem": "108-0875_IMG", "file_ext": ".jpg", "file_size": 1578854.0, "mtime": "2002-06-28T21:23:00+00:00", "mtime_ts": 1025299380.0, "ctime": "2002-06-28T21:23:00+00:00", "sha256_file": "276fc5aa93155ed22c1676e21334d28a674a1097bca0d8eb5116d54a65a9dcbd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 21:23:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4141", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 21:23:01", "EXIF DateTimeDigitized": "2002:06:28 21:23:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080875", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a4e0e35b2879f65db1178aabb7485316f97348cd04125f9d1900e3368ed59ad", "phash": "c58f3ae11e3c43c9", "dhash": "e2e2e2e2e2d2d2e8", "phash_int": -4.211082388018806e+18, "collected_at": "2026-05-22T04:28:18.862994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0876_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0876_IMG.JPG", "file_name": "108-0876_IMG.JPG", "file_stem": "108-0876_IMG", "file_ext": ".jpg", "file_size": 1621208.0, "mtime": "2002-06-28T21:23:06+00:00", "mtime_ts": 1025299386.0, "ctime": "2002-06-28T21:23:06+00:00", "sha256_file": "d8b46ba67d1c6536ae3cbae4b3b96ea1e73e89d670707c663ba63dd7e85b2fa6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:28 21:23:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4267", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:28 21:23:07", "EXIF DateTimeDigitized": "2002:06:28 21:23:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080876", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "defd0707d93e5cfc8c244ca8a75cdb429b9504acb40cae04b6e5294b3b90ab50", "phash": "c58f39e1463c1bc9", "dhash": "e2e2e2e6e2f2b2f2", "phash_int": -4.211083486859355e+18, "collected_at": "2026-05-22T04:28:18.922001+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0877_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0877_IMG.JPG", "file_name": "108-0877_IMG.JPG", "file_stem": "108-0877_IMG", "file_ext": ".jpg", "file_size": 1981190.0, "mtime": "2002-06-30T10:08:08+00:00", "mtime_ts": 1025431688.0, "ctime": "2002-06-30T10:08:08+00:00", "sha256_file": "4dbb690905472dbce05bc54edf3bd4521eb0d271184eef2bce1ab2ed4b336d54", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 10:08:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6813", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 10:08:09", "EXIF DateTimeDigitized": "2002:06:30 10:08:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "767/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080877", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1534"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e5bd2e2bcd00b1fbad2a07049cef268add62f2dc67abf7c34bd88aeda9de617", "phash": "dce0f6835c2da34a", "dhash": "a5c45536f1593d3c", "phash_int": -2.530751946534575e+18, "collected_at": "2026-05-22T04:28:18.950997+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0878_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0878_IMG.JPG", "file_name": "108-0878_IMG.JPG", "file_stem": "108-0878_IMG", "file_ext": ".jpg", "file_size": 1989523.0, "mtime": "2002-06-30T10:08:24+00:00", "mtime_ts": 1025431704.0, "ctime": "2002-06-30T10:08:24+00:00", "sha256_file": "64f06100363bb5a9aa465d01f37b07c53318c119491faee700d69ae1f771a603", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 10:08:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6543", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 10:08:26", "EXIF DateTimeDigitized": "2002:06:30 10:08:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1573/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080878", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1573"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "908afb075948bda3c536d63b211f17d9799130884d686e2088d1fa663f1a6d8e", "phash": "dce477835c2ca34a", "dhash": "25c2953671d93c34", "phash_int": -2.5297656846045256e+18, "collected_at": "2026-05-22T04:28:19.020004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0879_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0879_IMG.JPG", "file_name": "108-0879_IMG.JPG", "file_stem": "108-0879_IMG", "file_ext": ".jpg", "file_size": 1642440.0, "mtime": "2002-06-30T10:08:34+00:00", "mtime_ts": 1025431714.0, "ctime": "2002-06-30T10:08:34+00:00", "sha256_file": "f891fafabe832c8360f7399484b41b25e2c97ac1839b72bb01355a3240cab15c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 10:08:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5921", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 10:08:35", "EXIF DateTimeDigitized": "2002:06:30 10:08:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1927/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080879", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1927"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b24beb70fa714ef51dfae93450a705ef0d857aa22d9223177318f403ec567c4", "phash": "ece4658f9a54b44a", "dhash": "e6c2863571d7e63f", "phash_int": -1.376863918624558e+18, "collected_at": "2026-05-22T04:28:19.047001+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\109-0901_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\109-0901_IMG.JPG", "file_name": "109-0901_IMG.JPG", "file_stem": "109-0901_IMG", "file_ext": ".jpg", "file_size": 918535.0, "mtime": "2002-06-30T21:09:56+00:00", "mtime_ts": 1025471396.0, "ctime": "2002-06-30T21:09:56+00:00", "sha256_file": "e9f0e78f9801529668806e563d12f838d728dfac44e032b196fac093c1cd6e34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 21:09:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3881", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 21:09:57", "EXIF DateTimeDigitized": "2002:06:30 21:09:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "90028/5", "EXIF FocalPlaneYResolution": "90028/5", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090901", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "635", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a62ed6a960fb098e85a10d0840480017d65d5e948d5b098c3be5af1a070503d8", "phash": "b6e1964ac995ca8d", "dhash": "4e8e96962b6d6c6c", "phash_int": -5.268764841092986e+18, "collected_at": "2026-05-22T04:28:19.153005+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\108-0880_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\108-0880_IMG.JPG", "file_name": "108-0880_IMG.JPG", "file_stem": "108-0880_IMG", "file_ext": ".jpg", "file_size": 1690641.0, "mtime": "2002-06-30T10:08:48+00:00", "mtime_ts": 1025431728.0, "ctime": "2002-06-30T10:08:48+00:00", "sha256_file": "7ab7a65e1f6889616d5938ade13b56f4d9f52762f775a5e71d6b6af4535fc13a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 10:08:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5984", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 10:08:49", "EXIF DateTimeDigitized": "2002:06:30 10:08:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "347/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080880", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1735"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d15fc52d60c9d2eab440d7ea1d0ed113985d3cdf6d40342adddfabbbfdde65b", "phash": "ece4658f9a54a0ce", "dhash": "e6c3c73771d7e63e", "phash_int": -1.376863918624563e+18, "collected_at": "2026-05-22T04:28:19.159103+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\109-0902_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\109-0902_IMG.JPG", "file_name": "109-0902_IMG.JPG", "file_stem": "109-0902_IMG", "file_ext": ".jpg", "file_size": 804005.0, "mtime": "2002-06-30T21:10:06+00:00", "mtime_ts": 1025471406.0, "ctime": "2002-06-30T21:10:06+00:00", "sha256_file": "9f172a8a813ae6fa39992c913abf4e5ed9087160d5f8c109bea7134174af8e47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 21:10:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4265", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 21:10:07", "EXIF DateTimeDigitized": "2002:06:30 21:10:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090902", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc184bdbf0d52d0b81d02b59ea79fc307f4e65664f766dfd7598112c3482ae27", "phash": "bdadb450a2f31dc0", "dhash": "363733532138cccc", "phash_int": -4.778965371146003e+18, "collected_at": "2026-05-22T04:28:19.224348+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\109-0903_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\109-0903_IMG.JPG", "file_name": "109-0903_IMG.JPG", "file_stem": "109-0903_IMG", "file_ext": ".jpg", "file_size": 984706.0, "mtime": "2002-06-30T21:10:34+00:00", "mtime_ts": 1025471434.0, "ctime": "2002-06-30T21:10:34+00:00", "sha256_file": "7f4e72606e1899042bf6f8bc9ddf59ca5b4e8b48e7204465121043c5186641b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 21:10:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3085", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 21:10:36", "EXIF DateTimeDigitized": "2002:06:30 21:10:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090903", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65437", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b394a266edff0523cb7bb384da313dc56d29cb07b8054a0fd4eb668b52e9eefd", "phash": "f685de88c9966934", "dhash": "84cece96962b2d29", "phash_int": -6.828950893977659e+17, "collected_at": "2026-05-22T04:28:19.258350+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\109-0904_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\109-0904_IMG.JPG", "file_name": "109-0904_IMG.JPG", "file_stem": "109-0904_IMG", "file_ext": ".jpg", "file_size": 1218774.0, "mtime": "2002-06-30T21:10:46+00:00", "mtime_ts": 1025471446.0, "ctime": "2002-06-30T21:10:46+00:00", "sha256_file": "a55ca4c6b3341edfa28b0d3f0f4b8d1adb9cf8671e38be70c9ce9b7d9f95a645", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 21:10:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3760", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 21:10:47", "EXIF DateTimeDigitized": "2002:06:30 21:10:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090904", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74440edc8ca0ce818b7b593e9c00f0db9ee93cf461c28ad81e754489b2fda9fa", "phash": "bce12df7009410ff", "dhash": "160695bd252d3537", "phash_int": -4.836533985929327e+18, "collected_at": "2026-05-22T04:28:19.279432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\06-30\\109-0905_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\06-30\\109-0905_IMG.JPG", "file_name": "109-0905_IMG.JPG", "file_stem": "109-0905_IMG", "file_ext": ".jpg", "file_size": 1132310.0, "mtime": "2002-06-30T21:10:52+00:00", "mtime_ts": 1025471452.0, "ctime": "2002-06-30T21:10:52+00:00", "sha256_file": "eb09fd4e0ead6491815649fd7f217add7bc0431f8554e0669e8c2935788dcd18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:30 21:10:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3978", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:30 21:10:53", "EXIF DateTimeDigitized": "2002:06:30 21:10:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "17/10", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090905", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1700"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30ebf12a53b6373206c72f24b47d7fe94e554a8d2c6297816fd8b217c53b8272", "phash": "8b5cc72978628e5e", "dhash": "73727cbc32fbcdfb", "phash_int": -8.404623823652876e+18, "collected_at": "2026-05-22T04:28:19.335700+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-04 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-04 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2049993.0, "mtime": "2002-06-12T17:29:02+00:00", "mtime_ts": 1023902942.0, "ctime": "2002-06-12T17:29:02+00:00", "sha256_file": "7b5053d242bfde0eb92a8e4bfd101502c3003eea93240292a427f51ed5cb87db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5306", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:04", "EXIF DateTimeDigitized": "2002:06:12 17:29:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060671", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5620653f1117fdb4bf14b8f3ba79d6c0abe6214f128db300ad24af607ae301d", "phash": "81e7eebc8890317e", "dhash": "e8c4d8d8fad8f0fa", "phash_int": -9.086031229684273e+18, "collected_at": "2026-05-22T04:28:19.344699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-20 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-20 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2296954.0, "mtime": "2002-06-12T17:29:18+00:00", "mtime_ts": 1023902958.0, "ctime": "2002-06-12T17:29:18+00:00", "sha256_file": "2fd5bb58c7605e8dfa08b7282d84249e7980c9d521fa0dd4153bab3b3b5da5cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5912", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:20", "EXIF DateTimeDigitized": "2002:06:12 17:29:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060673", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a401ab15e152532c86ce43623a34b281058dae025a8f412eda00c704de37fda4", "phash": "9ffff12183076043", "dhash": "38303474fcb6fcfc", "phash_int": -6.917545376383279e+18, "collected_at": "2026-05-22T04:28:19.458706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-12 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-12 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2340477.0, "mtime": "2002-06-12T17:29:10+00:00", "mtime_ts": 1023902950.0, "ctime": "2002-06-12T17:29:10+00:00", "sha256_file": "5855a129dddf313f9d4e9a268c43fa049a56dc1fafffacf0497056b975b6302b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6045", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:12", "EXIF DateTimeDigitized": "2002:06:12 17:29:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060672", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d2d1a93a7bc68f600cbca13dc2fc10bc75b0a425d95a34834f1402386831e10", "phash": "90f1c606bf3c6347", "dhash": "9498983bfefa3efc", "phash_int": -8.002397330580151e+18, "collected_at": "2026-05-22T04:28:19.466710+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-27 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-27 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2107521.0, "mtime": "2002-06-12T17:29:26+00:00", "mtime_ts": 1023902966.0, "ctime": "2002-06-12T17:29:26+00:00", "sha256_file": "6ca3e2c180020b4f3ce1e0915ac06b17f5fc6f04602cbb4cc899c5910c91874d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5177", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:27", "EXIF DateTimeDigitized": "2002:06:12 17:29:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060674", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "754d777b398e68a762d5b31e744f263c923731fee809f3a836a244da3ea3b3e7", "phash": "d4fa2582c60f35e3", "dhash": "ec900a60e0f8f2e4", "phash_int": -3.1001241498923034e+18, "collected_at": "2026-05-22T04:28:19.589049+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-42 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-42 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2304366.0, "mtime": "2002-06-12T17:29:40+00:00", "mtime_ts": 1023902980.0, "ctime": "2002-06-12T17:29:40+00:00", "sha256_file": "99ea88c1efdb10392c7cd05a1d60e7344fcb871fbd96e33e44b36f6d2b279c62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5821", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:42", "EXIF DateTimeDigitized": "2002:06:12 17:29:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060675", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "342", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5913dd59605e24f9423c2001c58d24272c0884176a83442273c1ce22d5f8ae7a", "phash": "84db7778c387a22c", "dhash": "f870f2e8b1bebecc", "phash_int": -8.873367280243203e+18, "collected_at": "2026-05-22T04:28:19.603145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-53 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-53 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-53 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-53 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2456738.0, "mtime": "2002-06-12T17:29:52+00:00", "mtime_ts": 1023902992.0, "ctime": "2002-06-12T17:29:52+00:00", "sha256_file": "39dc6f48fb335d500f02a7bb613f71ce00d9a883f02fa72201d0798381cb87e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6428", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:53", "EXIF DateTimeDigitized": "2002:06:12 17:29:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060676", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "106b7b6a174af6e0cbe1957bad28d2c18f40ad2c4d6c3be03a2ade04b55483d0", "phash": "80e1638f911f7e78", "dhash": "d0debcf4f675fbdc", "phash_int": -9.159930698828644e+18, "collected_at": "2026-05-22T04:28:19.699430+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-57 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-29-57 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-29-57 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-29-57 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1927822.0, "mtime": "2002-06-12T17:29:56+00:00", "mtime_ts": 1023902996.0, "ctime": "2002-06-12T17:29:56+00:00", "sha256_file": "b3974549ae0c15f04ceb9d2402598612c8c7bb4ffbd2507e47a27eb47694bbe6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:29:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5477", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:29:57", "EXIF DateTimeDigitized": "2002:06:12 17:29:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060677", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d18ddb2f7e11af823cafbd84fa18b4c3458309ee07090eec648f8088a821596", "phash": "d5ea23aaf01b3869", "dhash": "e0c47030a07470fc", "phash_int": -3.0325721820008796e+18, "collected_at": "2026-05-22T04:28:19.775363+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-02 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-02 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-02 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-02 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2190128.0, "mtime": "2002-06-12T17:30:00+00:00", "mtime_ts": 1023903000.0, "ctime": "2002-06-12T17:30:00+00:00", "sha256_file": "3e1876b1f7500a8d128a27bb8f67e04776bc6e5a6b20b136a00c6902d98bf84d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5694", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:02", "EXIF DateTimeDigitized": "2002:06:12 17:30:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060678", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "349", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4412f9bfb16a2a24f886871260980b38e20307b0f7b4c6eb6b048207747787f5", "phash": "96ce09f8ec36274c", "dhash": "b8f8ecec241cbcee", "phash_int": -7.580110158098455e+18, "collected_at": "2026-05-22T04:28:19.885370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-11 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-11 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2338909.0, "mtime": "2002-06-12T17:30:10+00:00", "mtime_ts": 1023903010.0, "ctime": "2002-06-12T17:30:10+00:00", "sha256_file": "ad10ab27c219aeae5c1257017f7f8bf33fb27701c73c7076df10f88ad9a9d529", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6411", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:11", "EXIF DateTimeDigitized": "2002:06:12 17:30:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060679", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93d0758e4965b2da621695640e92062d43a8bd4ecf3f181c54a2dbeb88025bb9", "phash": "86cf7ec3861d6161", "dhash": "686cd2fcf9ca7d34", "phash_int": -8.732621774214308e+18, "collected_at": "2026-05-22T04:28:19.963699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-22 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-22 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-22 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-22 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2083276.0, "mtime": "2002-06-12T17:30:20+00:00", "mtime_ts": 1023903020.0, "ctime": "2002-06-12T17:30:20+00:00", "sha256_file": "3031a228d89d4e7f932e8e7fabb223a3ffa3319fbe35930c213120a3f94eb989", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5726", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:22", "EXIF DateTimeDigitized": "2002:06:12 17:30:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060680", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31d70cea695942142ddbde5e36292a74e7c14de03d27b0a1542b72caafbbb653", "phash": "908f34ee70174b57", "dhash": "b4f8d8d81061fcbc", "phash_int": -8.030141411890869e+18, "collected_at": "2026-05-22T04:28:20.019700+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-35 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-35 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2125756.0, "mtime": "2002-06-12T17:30:34+00:00", "mtime_ts": 1023903034.0, "ctime": "2002-06-12T17:30:34+00:00", "sha256_file": "b6a6a5a2481f24d4faa03754ea53b00cf834a1199ed6562e63e69ebe344a6b69", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5531", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:35", "EXIF DateTimeDigitized": "2002:06:12 17:30:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060681", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "344", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24df35ea55a52992ff9ac0c48262406a015c5049af710fbf4fb8957f548d5674", "phash": "d1ac86df9d063872", "dhash": "e08889c098d8c8f8", "phash_int": -3.3381449288181207e+18, "collected_at": "2026-05-22T04:28:20.102969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-50 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-50 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2090122.0, "mtime": "2002-06-12T17:30:48+00:00", "mtime_ts": 1023903048.0, "ctime": "2002-06-12T17:30:48+00:00", "sha256_file": "3c82e383f6260193439829dee9f11f4df4f682af6858b65f71836d721e3fc07d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5255", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:50", "EXIF DateTimeDigitized": "2002:06:12 17:30:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2191/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060682", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4382"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12b49eacb4e9e550189f16354ce26604e9dab5af9e679a08f252b762f23388e7", "phash": "a12d29ad95f9a172", "dhash": "dae2881296c721a8", "phash_int": -6.832759234128929e+18, "collected_at": "2026-05-22T04:28:20.164706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-59 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-30-59 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-30-59 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-30-59 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 714567.0, "mtime": "2002-06-12T17:30:58+00:00", "mtime_ts": 1023903058.0, "ctime": "2002-06-12T17:30:58+00:00", "sha256_file": "ee019670f16638a00449bd0fec2faac082ca646c9b70ea4385b373f7cb26093f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:30:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2772", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:30:59", "EXIF DateTimeDigitized": "2002:06:12 17:30:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1369/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060683", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1369"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "490d49a323d852abea64fd23f830ccd667ee53cc3daf19676f0d404b98a0e3cb", "phash": "e69693994c4496b7", "dhash": "390d6ce507430386", "phash_int": -1.831113911860685e+18, "collected_at": "2026-05-22T04:28:20.246711+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-11 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-31-11 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-31-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 747044.0, "mtime": "2002-06-12T17:31:10+00:00", "mtime_ts": 1023903070.0, "ctime": "2002-06-12T17:31:10+00:00", "sha256_file": "34e2c36d0c32ed8ae3b2b20efb20875044aab19a495718068156a6d988ee9c10", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:31:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3044", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:31:11", "EXIF DateTimeDigitized": "2002:06:12 17:31:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1839/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060684", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1839"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a810c717320a3633341c25c49c86c0a706d409f3f64786d890f61dba36f28d2f", "phash": "e69291d94c46b679", "dhash": "b9196de5075b0386", "phash_int": -1.8322417359127373e+18, "collected_at": "2026-05-22T04:28:20.295715+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-21 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-31-21 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-31-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 876655.0, "mtime": "2002-06-12T17:31:20+00:00", "mtime_ts": 1023903080.0, "ctime": "2002-06-12T17:31:20+00:00", "sha256_file": "19d51e0968ab06ff9663170a18e233b9502d58895c726934bd26bacdc91919a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:31:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3123", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:31:21", "EXIF DateTimeDigitized": "2002:06:12 17:31:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4929/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060685", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "355", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4929"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f59936210143a44d4dfc70940ded1bcc7c1af95da1518314a6dd2e9d686b7074", "phash": "93c999cc6625cbc3", "dhash": "f138d98ecd783c19", "phash_int": -7.797532176649172e+18, "collected_at": "2026-05-22T04:28:20.349928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-30 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-30 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-31-30 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-31-30 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1065082.0, "mtime": "2002-06-12T17:31:28+00:00", "mtime_ts": 1023903088.0, "ctime": "2002-06-12T17:31:28+00:00", "sha256_file": "3b18a0527455b63e46c9af3e1337c5ff8a0e0f3455bdfce8c1a62b5e56198daa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:31:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4842", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:31:30", "EXIF DateTimeDigitized": "2002:06:12 17:31:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5161/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060686", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5161"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4fb63e544f722658c29684a8c5e219dca17e81183442acf9900a80968a2513f2", "phash": "eb33b284c5d5930e", "dhash": "da9d0902a792a366", "phash_int": -1.4986579676597076e+18, "collected_at": "2026-05-22T04:28:20.416935+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-51 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-31-51 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-31-51 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-31-51 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2649118.0, "mtime": "2002-06-12T17:31:50+00:00", "mtime_ts": 1023903110.0, "ctime": "2002-06-12T17:31:50+00:00", "sha256_file": "70009a35d6a71b86bfb5ac281d3d86cc4324e790b93c1ed8dd28335568336bf8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:31:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7453", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:31:51", "EXIF DateTimeDigitized": "2002:06:12 17:31:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "22341/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060687", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "22341"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e787a9aa303a7378a87ad97caa8d215843c6f6e060f75b85ef59c1a84cb0c97d", "phash": "bff0961066c8d9c3", "dhash": "242e83034e3e7b6f", "phash_int": -4.616024620866677e+18, "collected_at": "2026-05-22T04:28:20.461931+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-17 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-32-17 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-32-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 633660.0, "mtime": "2002-06-12T17:32:16+00:00", "mtime_ts": 1023903136.0, "ctime": "2002-06-12T17:32:16+00:00", "sha256_file": "470ff80c5b85fe45285b53dae7671247017615386094f263a3e892d4eadec1aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:32:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1148", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:32:17", "EXIF DateTimeDigitized": "2002:06:12 17:32:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "12763/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060689", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12763"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c28c0f2b30c552449fb2778dbe395e4311d5138b8ced3250a2024df1373b6da3", "phash": "a22cdd7762890977", "dhash": "060407034d014000", "phash_int": -6.760785435765963e+18, "collected_at": "2026-05-22T04:28:20.566994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-01 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-32-01 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-32-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2512656.0, "mtime": "2002-06-12T17:32:00+00:00", "mtime_ts": 1023903120.0, "ctime": "2002-06-12T17:32:00+00:00", "sha256_file": "d7f49eb93068b56056610dd022e2a4778eb8b369d9ed719043c4ab06f1e51777", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:32:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6899", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:32:01", "EXIF DateTimeDigitized": "2002:06:12 17:32:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060688", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e54c4f08835a33ea5bda467021c768d9514dab136610576232744e170419c64", "phash": "8bf884bbe7c73408", "dhash": "e6f5b54d1b3b7aea", "phash_int": -8.360786765630983e+18, "collected_at": "2026-05-22T04:28:20.572993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-28 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2002-06-12 17-32-28 Canon PowerShot S40.JPG", "file_name": "2002-06-12 17-32-28 Canon PowerShot S40.JPG", "file_stem": "2002-06-12 17-32-28 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1250359.0, "mtime": "2002-06-12T17:32:26+00:00", "mtime_ts": 1023903146.0, "ctime": "2002-06-12T17:32:26+00:00", "sha256_file": "5d963defc04d33b2da531ae84e8a3dbfdda3ca89bc50e92c2887dccb01c5583e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:12 17:32:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2237", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:12 17:32:28", "EXIF DateTimeDigitized": "2002:06:12 17:32:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060690", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "470d57e0f3e558df8e3ca2d004a7e6f30ce14fcbbfbfd3e006f46f370dad25d1", "phash": "cf70cce31c479907", "dhash": "0000000000406060", "phash_int": -3.4990716346627784e+18, "collected_at": "2026-05-22T04:28:20.652451+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 08-14-25 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 08-14-25 Canon PowerShot S40.jpg", "file_name": "2003-06-12 08-14-25 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 08-14-25 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1939305.0, "mtime": "2003-06-12T07:14:24+00:00", "mtime_ts": 1055402064.0, "ctime": "2003-06-12T07:14:24+00:00", "sha256_file": "426d7d6aba79e591cbcbc7e1654648c45d86bfb662c616f6be2738189e4a5ec7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 08:14:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5227", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 08:14:25", "EXIF DateTimeDigitized": "2003:06:12 08:14:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e5ee405a66963573cf2163f791cb84bcd69867abd8254ffc2583d06605a0c7f", "phash": "d5966865366267e8", "dhash": "ccfce8ccc6e6a094", "phash_int": -3.0561405132108984e+18, "collected_at": "2026-05-22T04:28:20.657451+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-00 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-00 Canon PowerShot S40.jpg", "file_name": "2003-06-12 19-56-00 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 19-56-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1932562.0, "mtime": "2003-06-12T18:55:58+00:00", "mtime_ts": 1055444158.0, "ctime": "2003-06-12T18:55:58+00:00", "sha256_file": "1e6bdf74fcc603fb6a445b208ce5c8db0610d5d440394dda05a5e72563aea341", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 19:56:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4758", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 19:56:00", "EXIF DateTimeDigitized": "2003:06:12 19:56:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "47", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8799e545c8397540f45178260b300952e0884f8580e37e74a49921febd67fb83", "phash": "86d3f4253663696c", "dhash": "ccf0d9e96dc6e624", "phash_int": -8.731366811877808e+18, "collected_at": "2026-05-22T04:28:20.815750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 08-14-33 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 08-14-33 Canon PowerShot S40.jpg", "file_name": "2003-06-12 08-14-33 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 08-14-33 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1901260.0, "mtime": "2003-06-12T07:14:32+00:00", "mtime_ts": 1055402072.0, "ctime": "2003-06-12T07:14:32+00:00", "sha256_file": "9d074d1e75c9e3d9b6e573d6c4a484db4f70862b81635e2354047e03ffb53b62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 08:14:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5014", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 08:14:33", "EXIF DateTimeDigitized": "2003:06:12 08:14:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da42ae51f34223f70dacd145a6006afe31b23e2101b24313f13f01546b2f210b", "phash": "c5f6682532cad999", "dhash": "e6e4f8ec6e66e2d0", "phash_int": -4.1820406949916933e+18, "collected_at": "2026-05-22T04:28:20.818752+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-32 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-32 Canon PowerShot S40.jpg", "file_name": "2003-06-12 19-56-32 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 19-56-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1902401.0, "mtime": "2003-06-12T18:56:30+00:00", "mtime_ts": 1055444190.0, "ctime": "2003-06-12T18:56:30+00:00", "sha256_file": "b15d79ed43ed09f46bb9d02cbb8274a8384d58ab874338fff252731e9739cc07", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 19:56:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4850", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 19:56:32", "EXIF DateTimeDigitized": "2003:06:12 19:56:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d724877ec610f8e7b359f3a939fda31641be3dbb37a22f14ececaded06a52c4c", "phash": "87d758252663e36c", "dhash": "e4f0c9e8e6cef5b0", "phash_int": -8.658354842015374e+18, "collected_at": "2026-05-22T04:28:21.099571+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-24 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 19-56-24 Canon PowerShot S40.jpg", "file_name": "2003-06-12 19-56-24 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 19-56-24 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2155372.0, "mtime": "2003-06-12T18:56:22+00:00", "mtime_ts": 1055444182.0, "ctime": "2003-06-12T18:56:22+00:00", "sha256_file": "f8358430dbcfa83db0100e14592c4e3b6ebdc87a25826481cc5a919aad10bfd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 19:56:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5600", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 19:56:24", "EXIF DateTimeDigitized": "2003:06:12 19:56:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 371, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "721f2e5eb356b4f16cbbc3139e245c50cc149363c778b514c9b27ef5c839218e", "phash": "c00b2d175f61792f", "dhash": "daf58188e8ccce86", "phash_int": -4.608540215275849e+18, "collected_at": "2026-05-22T04:28:21.153786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-05 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-05 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-05 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1330854.0, "mtime": "2003-06-12T19:53:04+00:00", "mtime_ts": 1055447584.0, "ctime": "2003-06-12T19:53:04+00:00", "sha256_file": "563aac0d2c1fc6d91f4c7e1ed829c3df8a421c14ee90c1787272c064b5e35ff3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:05", "EXIF DateTimeDigitized": "2003:06:12 20:53:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "527/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 50, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "527"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24f5ee1ce8f119332f92165cd1259f809b46460c92dbb595c2af32aed9b13852", "phash": "d97486265299dd95", "dhash": "240812109062fa30", "phash_int": -2.7774475710280586e+18, "collected_at": "2026-05-22T04:28:21.622804+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-52-55 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-52-55 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-52-55 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-52-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1274228.0, "mtime": "2003-06-12T19:52:54+00:00", "mtime_ts": 1055447574.0, "ctime": "2003-06-12T19:52:54+00:00", "sha256_file": "0800caf75ccc28f6450396a48fccb9cefc0bc9d9ca5b5e9fb15a1d1bfbbe4714", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:52:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3202", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:52:55", "EXIF DateTimeDigitized": "2003:06:12 20:52:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "97/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "776"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2469f03fff25aed4df20fbcd9d41ea9328e0e899056f5d0160f552c51bb1c5e", "phash": "fff0e0f0e0e0e0e1", "dhash": "1000405050484040", "phash_int": -4256274457763615.0, "collected_at": "2026-05-22T04:28:21.643806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-26 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-26 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-26 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1547597.0, "mtime": "2003-06-12T19:53:24+00:00", "mtime_ts": 1055447604.0, "ctime": "2003-06-12T19:53:24+00:00", "sha256_file": "06beee474d73d60919e3bcd140a9fab27856a9fba209b1d2dd74cd3b63f343c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5541", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:26", "EXIF DateTimeDigitized": "2003:06:12 20:53:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65492", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "140", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "107b554c933cdebe02af76b81f17e0565ac7487946fd39032f0dbeb08e28a855", "phash": "d0d1dd1796a061be", "dhash": "d8b09094644ce8f0", "phash_int": -3.3996931503069343e+18, "collected_at": "2026-05-22T04:28:21.751809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-34 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-34 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-34 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1296171.0, "mtime": "2003-06-12T19:53:32+00:00", "mtime_ts": 1055447612.0, "ctime": "2003-06-12T19:53:32+00:00", "sha256_file": "62a532fbdb838ec5910de2629bc04e7c6d4a71ac3f1cacb9eab344ec6979f7ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4879", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:34", "EXIF DateTimeDigitized": "2003:06:12 20:53:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "145", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f33c03552e7a9ddd11088d29b93274c2c64ce77f656a4efca5cb9164257f6b27", "phash": "ccc4d513117f6bc4", "dhash": "f0e6c711e96970f0", "phash_int": -3.691591516662306e+18, "collected_at": "2026-05-22T04:28:21.777911+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-41 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-41 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-41 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1506456.0, "mtime": "2003-06-12T19:53:40+00:00", "mtime_ts": 1055447620.0, "ctime": "2003-06-12T19:53:40+00:00", "sha256_file": "b0c6a0739ead123a6fad2d694943b8de891b6c8d7d233726fd9b29b1d6c15f57", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4923", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:41", "EXIF DateTimeDigitized": "2003:06:12 20:53:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "72/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf27334a7fc8359911b017e499eda1c3982d6ce5ffb534ba362424218c9058a6", "phash": "e4c738c5333946b9", "dhash": "80c0a68282869399", "phash_int": -1.9615366930774572e+18, "collected_at": "2026-05-22T04:28:21.884013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-52 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-52 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-52 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1494167.0, "mtime": "2003-06-12T19:53:50+00:00", "mtime_ts": 1055447630.0, "ctime": "2003-06-12T19:53:50+00:00", "sha256_file": "9063688c2cf8057d19a7fdd05190029d4b01e2907bdc5b5fea378e1967de1b41", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:52", "EXIF DateTimeDigitized": "2003:06:12 20:53:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "904524057c480315970cdb3816f7940021f3d564f86110628ff4aefa9c54f62b", "phash": "f8ae9fd209893364", "dhash": "3034879386989092", "phash_int": -5.2730838190383424e+17, "collected_at": "2026-05-22T04:28:21.895014+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-58 Canon PowerShot S40.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\2003-06-12 20-53-58 Canon PowerShot S40.jpg", "file_name": "2003-06-12 20-53-58 Canon PowerShot S40.jpg", "file_stem": "2003-06-12 20-53-58 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1650828.0, "mtime": "2003-06-12T19:53:56+00:00", "mtime_ts": 1055447636.0, "ctime": "2003-06-12T19:53:56+00:00", "sha256_file": "08d99b7a5fc64f04d6bb255339dd179c5478b44a0f1b58724b30c24f7908ec86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:12 20:53:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5506", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:12 20:53:58", "EXIF DateTimeDigitized": "2003:06:12 20:53:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "101/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "137", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "505"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd6187ae91dfaf7a70cb4c509db0994c0edf8957592739bbbfb27d010ff8fd35", "phash": "941886e9e746d3f4", "dhash": "6cb47ccc9723846c", "phash_int": -7.775316417489481e+18, "collected_at": "2026-05-22T04:28:22.044640+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\12\\Panoramaticky.jpg", "file_path_relative": "HD02#FOTKY\\2002\\06\\12\\Panoramaticky.jpg", "file_name": "Panoramaticky.jpg", "file_stem": "Panoramaticky", "file_ext": ".jpg", "file_size": 1635344.0, "mtime": "2002-06-12T19:23:38+00:00", "mtime_ts": 1023909818.0, "ctime": "2002-06-12T19:23:38+00:00", "sha256_file": "7054a64c04620802a8bbbcd536fad1feffbb3ca73f671242f77d6e46ee2a3a55", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 4527.0, "height": 1562.0, "megapixels": 7.07, "has_transparency": 0.0, "dpi": [200.0, 200.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33c5ed03c48112b31d9761d7bfd28513ce32ffa57292b4d2261a8bb1aa7c1191", "phash": "84f879c380a3ae3f", "dhash": "a8b87cece06cc8ec", "phash_int": -8.865201985895027e+18, "collected_at": "2026-05-22T04:28:22.091033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-26-49 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-26-49 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-26-49 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-26-49 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2079177.0, "mtime": "2002-06-17T17:26:48+00:00", "mtime_ts": 1024334808.0, "ctime": "2002-06-17T17:26:48+00:00", "sha256_file": "59daa433acbb3b0e95cce30e5ac14e89ee5d3083a81bf46a29f4f6effcca0cf1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:26:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5609", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:26:49", "EXIF DateTimeDigitized": "2002:06:17 17:26:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070713", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56e33793017c3480a7eccef5c8f35fb08d65206bd511153873154bd2eef583c0", "phash": "9c8fc3f861c710e3", "dhash": "e46878623534e2d8", "phash_int": -7.165293010563428e+18, "collected_at": "2026-05-22T04:28:22.208719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-26-55 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-26-55 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-26-55 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-26-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2016191.0, "mtime": "2002-06-17T17:26:54+00:00", "mtime_ts": 1024334814.0, "ctime": "2002-06-17T17:26:54+00:00", "sha256_file": "fc3f5f7df193fe572975c6ce41ddd33353243f98dc2757f5cf311fde41fd0d62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:26:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4992", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:26:55", "EXIF DateTimeDigitized": "2002:06:17 17:26:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070714", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "336", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e17321c923f160d51d33f7de27faf17867cbb3d18639833cdae58fea8b1f823", "phash": "d4a7af903b7d04a2", "dhash": "f0e8e410aca410e2", "phash_int": -3.1233347825499494e+18, "collected_at": "2026-05-22T04:28:22.214792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-04 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-27-04 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-27-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2161679.0, "mtime": "2002-06-17T17:27:02+00:00", "mtime_ts": 1024334822.0, "ctime": "2002-06-17T17:27:02+00:00", "sha256_file": "eda15f23ce5c05ee913f89416338a3105f12a42ecc4c503f07e6bcdf9f36b468", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:27:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5653", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:27:04", "EXIF DateTimeDigitized": "2002:06:17 17:27:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070715", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a78ba32a3183af30efb23a727a4cac21b4bff52778792b26d13ff8ca6bbd1fa5", "phash": "8dec318b17b548b3", "dhash": "b633336261635ade", "phash_int": -8.220140746390026e+18, "collected_at": "2026-05-22T04:28:22.353934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-08 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-08 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-27-08 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-27-08 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2306709.0, "mtime": "2002-06-17T17:27:06+00:00", "mtime_ts": 1024334826.0, "ctime": "2002-06-17T17:27:06+00:00", "sha256_file": "2bff4478ffe00ee6b7839353b30670d82a806b033e0217675b3e763f94d080a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:27:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5935", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:27:08", "EXIF DateTimeDigitized": "2002:06:17 17:27:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070716", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bba75754e81d2a2016ae7930194b61c62fcedb8a094f818a5e2d813a5ca76356", "phash": "81d3ef943c3c032f", "dhash": "c9d9d8b0f8d847d7", "phash_int": -9.091659802786135e+18, "collected_at": "2026-05-22T04:28:22.377935+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-14 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-27-14 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-27-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2046620.0, "mtime": "2002-06-17T17:27:12+00:00", "mtime_ts": 1024334832.0, "ctime": "2002-06-17T17:27:12+00:00", "sha256_file": "7f2b674aa096a03c41f7c30cf290de98fd936e11ac849ee8c2973278cfbd83db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:27:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5209", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:27:14", "EXIF DateTimeDigitized": "2002:06:17 17:27:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070717", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6c9fa32d7f8d5db9d53c16d768c8b68e3e5f7cff9638cf7d6e716f7a8e4303b", "phash": "8f93e1dc716330e4", "dhash": "c8606448382860c2", "phash_int": -8.10088296779801e+18, "collected_at": "2026-05-22T04:28:22.414934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-30 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-30 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-27-30 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-27-30 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2062811.0, "mtime": "2002-06-17T17:27:28+00:00", "mtime_ts": 1024334848.0, "ctime": "2002-06-17T17:27:28+00:00", "sha256_file": "cdebcf826b279cda8e75d10b145a48ac6cc19441fa8da652f6f5f4c642efd18d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:27:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5503", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:27:30", "EXIF DateTimeDigitized": "2002:06:17 17:27:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070718", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de980c1e3e1ba49a41f9f5e7750bab90fbf26c4d2664892bbf0a88105438541f", "phash": "94f0ed15703475ab", "dhash": "fce464bcf9fcf4d0", "phash_int": -7.714405485353078e+18, "collected_at": "2026-05-22T04:28:22.534700+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-27-35 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-27-35 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-27-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1937335.0, "mtime": "2002-06-17T17:27:34+00:00", "mtime_ts": 1024334854.0, "ctime": "2002-06-17T17:27:34+00:00", "sha256_file": "f581b6ebc5938b0b8eb3dd278465fa32e28c728a4ede21b5e546abc8e2bf6a02", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:27:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5777", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:27:35", "EXIF DateTimeDigitized": "2002:06:17 17:27:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070719", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "183cc07d6eae706233edc98d231139fee380acb77ca30d642337d99516da69fc", "phash": "d7eac8533f1c2183", "dhash": "04c8e86c4c4cf07c", "phash_int": -2.888275951138103e+18, "collected_at": "2026-05-22T04:28:22.568786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-06 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-06 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-06 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-06 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1808052.0, "mtime": "2002-06-17T17:28:04+00:00", "mtime_ts": 1024334884.0, "ctime": "2002-06-17T17:28:04+00:00", "sha256_file": "626caf5bc12a15a27a4dd9cc6e08d2765d85848bd12ab5a163dc6490bf4a05a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4760", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:06", "EXIF DateTimeDigitized": "2002:06:17 17:28:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070720", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a7c3c9ec285371c90c6af6af47cf04e1e4646e7bc8408cdbc8878da324ed915", "phash": "8eebb194604c54bf", "dhash": "bf7f6064647474fd", "phash_int": -8.148223849967889e+18, "collected_at": "2026-05-22T04:28:22.673864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-11 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-11 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1628826.0, "mtime": "2002-06-17T17:28:10+00:00", "mtime_ts": 1024334890.0, "ctime": "2002-06-17T17:28:10+00:00", "sha256_file": "3b9c16fd41e5d8eef878c8104d0918143e8b42e108879121ab2111d9fa648f73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5023", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:11", "EXIF DateTimeDigitized": "2002:06:17 17:28:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070721", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b743881d37a5a1a971903cdc87cbcc50aadfb78e55b6ff6f27e50af9a4ca254", "phash": "f688eb9239271c71", "dhash": "e081201c9c2cc810", "phash_int": -6.82036330290013e+17, "collected_at": "2026-05-22T04:28:22.685867+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-15 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-15 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-15 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-15 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1513824.0, "mtime": "2002-06-17T17:28:14+00:00", "mtime_ts": 1024334894.0, "ctime": "2002-06-17T17:28:14+00:00", "sha256_file": "a82d5cc3361aacc61cadc361d5bcb56b38b4cb84abeb3b8982cb1b7151a9e7c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4873", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:15", "EXIF DateTimeDigitized": "2002:06:17 17:28:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070722", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8fa29480a370c88bfb95a193b057f977409d647bca04900596bc5d9ab3772a19", "phash": "da8ced923c251e71", "dhash": "e001491c18288911", "phash_int": -2.698520864371696e+18, "collected_at": "2026-05-22T04:28:22.807785+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-26 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-26 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2093731.0, "mtime": "2002-06-17T17:28:24+00:00", "mtime_ts": 1024334904.0, "ctime": "2002-06-17T17:28:24+00:00", "sha256_file": "8069577a18a180c9ec8c8224b5b790fa9ec4ef4ed0b16d9cf18b7d74fc369928", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6239", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:26", "EXIF DateTimeDigitized": "2002:06:17 17:28:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070723", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d58c5c759b836c2cff5cc1b516c891575eba2c005bf0b6f0082a009b3a00e57", "phash": "b52bc135d58b2ad2", "dhash": "9f9f3b363e37fec0", "phash_int": -5.392003691885942e+18, "collected_at": "2026-05-22T04:28:22.814783+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-32 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-32 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2482113.0, "mtime": "2002-06-17T17:28:30+00:00", "mtime_ts": 1024334910.0, "ctime": "2002-06-17T17:28:30+00:00", "sha256_file": "968c49c045997f87fc723bd9defaa8278a7cb22e5904b78645f3b7910091c5c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6680", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:32", "EXIF DateTimeDigitized": "2002:06:17 17:28:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070724", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "300", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "464df69479b23e4ed99228a305109b2e1ac5f2b3f0e7016534c7fa6cd3568762", "phash": "b9179e6889916d9c", "dhash": "f8fd5edb9b9f9ab2", "phash_int": -5.109441080406742e+18, "collected_at": "2026-05-22T04:28:22.987565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-38 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-38 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1739277.0, "mtime": "2002-06-17T17:28:36+00:00", "mtime_ts": 1024334916.0, "ctime": "2002-06-17T17:28:36+00:00", "sha256_file": "7a02de3dcc5149cd9e7f504c8e4eabecb110c0686cccfd5f2ba60c8ae8b39d22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4921", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:38", "EXIF DateTimeDigitized": "2002:06:17 17:28:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070725", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9731fee76855258a54c35fb8f869a75c38adf46ce7fd6b14db83e94833aec1e", "phash": "8dedd292e2e27468", "dhash": "08f2b2e6f7feeee0", "phash_int": -8.219682216567737e+18, "collected_at": "2026-05-22T04:28:22.990564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-43 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1531940.0, "mtime": "2002-06-17T17:28:42+00:00", "mtime_ts": 1024334922.0, "ctime": "2002-06-17T17:28:42+00:00", "sha256_file": "4cc9fb5757c56f18b9f04ffbbd14587cf8f5e7e5f233145429c94ea146567253", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5011", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:43", "EXIF DateTimeDigitized": "2002:06:17 17:28:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070726", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d70e280738d3835f1f52fb008a1375c037823cea9b18a596d358e3754990f6f3", "phash": "dfae83f2b000307f", "dhash": "906060ba32004078", "phash_int": -2.328778878945841e+18, "collected_at": "2026-05-22T04:28:23.125962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-57 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-28-57 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-28-57 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-28-57 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1708383.0, "mtime": "2002-06-17T17:28:56+00:00", "mtime_ts": 1024334936.0, "ctime": "2002-06-17T17:28:56+00:00", "sha256_file": "f39f54f5aae5a27b702e2ce201e86cee1b00c1e909ba322f34297f58a2c3d946", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:28:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4954", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:28:57", "EXIF DateTimeDigitized": "2002:06:17 17:28:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070727", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e41c2bfbf120f0805ec902f7dffe3d3c09d714467c960bc9c3b78fc505388d2f", "phash": "d2aa958725752dd2", "dhash": "fee18197e9408890", "phash_int": -3.2666341720223135e+18, "collected_at": "2026-05-22T04:28:23.142962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-02 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-02 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-29-02 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-29-02 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1656274.0, "mtime": "2002-06-17T17:29:00+00:00", "mtime_ts": 1024334940.0, "ctime": "2002-06-17T17:29:00+00:00", "sha256_file": "e6d7d63fa57518249ec73a10b9a18dc7ec1eb9c3ee75fc2f5668d240f840db59", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:29:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5172", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:29:02", "EXIF DateTimeDigitized": "2002:06:17 17:29:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070728", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec4811608edd35e955355900da350d644457d0580e841c5c18e6651565df63c8", "phash": "e2899d667a314799", "dhash": "f7ffd18d0dcc9c72", "phash_int": -2.1229926858662031e+18, "collected_at": "2026-05-22T04:28:23.281286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-09 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-09 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-29-09 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-29-09 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2020085.0, "mtime": "2002-06-17T17:29:08+00:00", "mtime_ts": 1024334948.0, "ctime": "2002-06-17T17:29:08+00:00", "sha256_file": "6a560fb3bcb79f6591321f0b1f28f959846d7a8897df232067be3a2ce7f8fb6a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:29:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6224", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:29:09", "EXIF DateTimeDigitized": "2002:06:17 17:29:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070729", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aca28ef038766ad2397fccad61b6770be94981b895ec3eb8b42386c65e7d7329", "phash": "f599c28d7d610669", "dhash": "f2c98d1222660284", "phash_int": -7.49353950030789e+17, "collected_at": "2026-05-22T04:28:23.311567+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-14 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-29-14 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-29-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1722620.0, "mtime": "2002-06-17T17:29:12+00:00", "mtime_ts": 1024334952.0, "ctime": "2002-06-17T17:29:12+00:00", "sha256_file": "95e7d5ba126457a7bdd63d03d13d9dc68c2485f04b695df9975825b85a0f475d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:29:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4825", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:29:14", "EXIF DateTimeDigitized": "2002:06:17 17:29:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070730", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "347", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "90ab715a80f2036672c302307558c3cace0a42dd054f7e9d1b4354bb2363cebf", "phash": "d52bac5a25285ab7", "dhash": "e06098c84838b4c0", "phash_int": -3.0861836164619075e+18, "collected_at": "2026-05-22T04:28:23.381572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-19 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\17\\2002-06-17 17-29-19 Canon PowerShot S40.JPG", "file_name": "2002-06-17 17-29-19 Canon PowerShot S40.JPG", "file_stem": "2002-06-17 17-29-19 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1951536.0, "mtime": "2002-06-17T17:29:18+00:00", "mtime_ts": 1024334958.0, "ctime": "2002-06-17T17:29:18+00:00", "sha256_file": "491b07a3cc0e64fc344ff6f9f78208317a14b333465cabbb6e14de80164437fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:17 17:29:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5442", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:17 17:29:19", "EXIF DateTimeDigitized": "2002:06:17 17:29:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070731", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "336", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12595648950946d90e55faa883c5f50c6048f214a16e60ef3e642b6a005f0f52", "phash": "c4badb254a3551ce", "dhash": "8848c4c5e58686e0", "phash_int": -4.270860343402213e+18, "collected_at": "2026-05-22T04:28:23.435588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-07 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-22-07 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-22-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1938746.0, "mtime": "2002-06-18T11:22:06+00:00", "mtime_ts": 1024399326.0, "ctime": "2002-06-18T11:22:06+00:00", "sha256_file": "5d1f7b5c3a1e1f75be46d06ae8afd2dc14c71434c0ac2d308cd06fad93758d90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:22:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6150", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:22:07", "EXIF DateTimeDigitized": "2002:06:18 11:22:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070732", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72bd7bf6257e90cc60c501c7c5cd7bc4f302d31d9959b456d0ccb5ce5d1dadf5", "phash": "f02f2fe0915f6407", "dhash": "4747adbc9c8da3af", "phash_int": -1.1396395391433185e+18, "collected_at": "2026-05-22T04:28:23.483988+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-12 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-22-12 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-22-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2066632.0, "mtime": "2002-06-18T11:22:10+00:00", "mtime_ts": 1024399330.0, "ctime": "2002-06-18T11:22:10+00:00", "sha256_file": "9439c9000cdf437f9c5e8f9eaf6739654553e4079e0c810714ae2f6576efb139", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:22:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6368", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:22:12", "EXIF DateTimeDigitized": "2002:06:18 11:22:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070733", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5080a1ec3f4fd8e4e448706527c8d4408812e58c18b57521817bf995a642669", "phash": "e02f2fa0d51f7603", "dhash": "47476d949c8da3a7", "phash_int": -2.2925613174914115e+18, "collected_at": "2026-05-22T04:28:23.585543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-23 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-22-23 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-22-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1594913.0, "mtime": "2002-06-18T11:22:22+00:00", "mtime_ts": 1024399342.0, "ctime": "2002-06-18T11:22:22+00:00", "sha256_file": "52c4dbbd8852afcb1f41b0334de66fc696bafa7212bb76be5ce17df151e9571d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:22:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4428", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:22:23", "EXIF DateTimeDigitized": "2002:06:18 11:22:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "159/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070734", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1590"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f71598bcb76230f370819d08241156d79d0aa484850acb399593e867f99419af", "phash": "946b679632431df8", "dhash": "92b6b3313ca4ec8c", "phash_int": -7.751988438802163e+18, "collected_at": "2026-05-22T04:28:23.592538+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-35 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-22-35 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-22-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1331456.0, "mtime": "2002-06-18T11:22:34+00:00", "mtime_ts": 1024399354.0, "ctime": "2002-06-18T11:22:34+00:00", "sha256_file": "4ce329fe8d01f2d0ae9f7fa3c2ad00e6895e57b081087955d38a95b2b383a62b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:22:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4283", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:22:35", "EXIF DateTimeDigitized": "2002:06:18 11:22:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "593/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070736", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1186"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68be106690292884a87d9d2933afc1318c4b13dc6b60cc1cb8c5656d7f3458cb", "phash": "963ef04b393c630b", "dhash": "2c6c6c78c8c8f0f0", "phash_int": -7.620389313590828e+18, "collected_at": "2026-05-22T04:28:23.730841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-22-29 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-22-29 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-22-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2194008.0, "mtime": "2002-06-18T11:22:28+00:00", "mtime_ts": 1024399348.0, "ctime": "2002-06-18T11:22:28+00:00", "sha256_file": "e469dc122a9c06f0d0dc0836362b21ca57a584ffd631331bfdafde0a1ab5b446", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:22:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6553", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:22:29", "EXIF DateTimeDigitized": "2002:06:18 11:22:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070735", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d393f211cce3352628a86104b53ee81626da925e39b2f11a3426986db179f44", "phash": "cd5b60361ca9d593", "dhash": "b3605a537456db92", "phash_int": -3.649217287528262e+18, "collected_at": "2026-05-22T04:28:23.747842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-23-16 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 11-23-16 Canon PowerShot S40.JPG", "file_name": "2002-06-18 11-23-16 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 11-23-16 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1157073.0, "mtime": "2002-06-18T11:23:14+00:00", "mtime_ts": 1024399394.0, "ctime": "2002-06-18T11:23:14+00:00", "sha256_file": "4f17d2f2d4f47df80a4bab541ae5c5513b0315b832373ab765aa1499feb4664c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 11:23:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2941", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 11:23:16", "EXIF DateTimeDigitized": "2002:06:18 11:23:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "701/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 493, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070737", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "701"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0adbf491a48b678c503dc75768e050b86922e6c930f6d6f2ffba2fdb54d44a0b", "phash": "80301ffc1f381f3d", "dhash": "fca0acadabb898fc", "phash_int": -9.209826070256673e+18, "collected_at": "2026-05-22T04:28:23.840777+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-21-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-21-31 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-21-31 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-21-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 739372.0, "mtime": "2002-06-18T14:21:30+00:00", "mtime_ts": 1024410090.0, "ctime": "2002-06-18T14:21:30+00:00", "sha256_file": "8368e33fa9428b70f1a340375b3c88fa1a3f6918990d66086b9b336c3381d975", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:21:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3602", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:21:31", "EXIF DateTimeDigitized": "2002:06:18 14:21:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "707/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070738", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "95", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "707"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2e9ce78b05503ec943d89b5bfb3b22a9d985fc30fd65ef459f99ee74f68e41b", "phash": "98242619993f3d3f", "dhash": "b6a5253b5a123831", "phash_int": -7.483814789395826e+18, "collected_at": "2026-05-22T04:28:23.857775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-21-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-21-50 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-21-50 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-21-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 576473.0, "mtime": "2002-06-18T14:21:48+00:00", "mtime_ts": 1024410108.0, "ctime": "2002-06-18T14:21:48+00:00", "sha256_file": "601553e41f1dc1d8cc2dd4fdc17e70eed44ddf144abbfa59c4db529f801ff6aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:21:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1936", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:21:50", "EXIF DateTimeDigitized": "2002:06:18 14:21:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "773/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 467, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070739", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1546"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6dbae2b5c58016f35e01a750dca6d9cdff81afbb0627c030509857567611b59", "phash": "bc6c1939d09b72c6", "dhash": "33372726261f7cdc", "phash_int": -4.86948936099067e+18, "collected_at": "2026-05-22T04:28:23.929397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-09 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-09 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-22-09 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-22-09 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 580162.0, "mtime": "2002-06-18T14:22:08+00:00", "mtime_ts": 1024410128.0, "ctime": "2002-06-18T14:22:08+00:00", "sha256_file": "5fb19ccec233da392a69ff13b66b6872a1ce9e13554a6d5aa798d996da291b82", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:22:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2340", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:22:09", "EXIF DateTimeDigitized": "2002:06:18 14:22:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "97/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 419, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070740", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "970"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a1008acb84c3be062e537eb11dcd98f8288e7c0ff2fd0863306ae386bca4b43", "phash": "881e7ce23c6e8667", "dhash": "36766bfbfbc19397", "phash_int": -8.638329724131703e+18, "collected_at": "2026-05-22T04:28:23.941499+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-14 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-22-14 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-22-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 631735.0, "mtime": "2002-06-18T14:22:12+00:00", "mtime_ts": 1024410132.0, "ctime": "2002-06-18T14:22:12+00:00", "sha256_file": "3a6aa6a06b0deaca659f4e61b7dab8bb44fdaf8f666d7aac72934d3c1507f640", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:22:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2384", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:22:14", "EXIF DateTimeDigitized": "2002:06:18 14:22:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "707/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 305, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070741", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "707"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "892b85e1fbbf14586fd3a7079a5b927328f07820b7d790a54e6dfb00f112f501", "phash": "ad073e609e3c4fb0", "dhash": "6e7ee3e3c3839734", "phash_int": -5.978741395618509e+18, "collected_at": "2026-05-22T04:28:24.041385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-20 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-22-20 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-22-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 615585.0, "mtime": "2002-06-18T14:22:18+00:00", "mtime_ts": 1024410138.0, "ctime": "2002-06-18T14:22:18+00:00", "sha256_file": "f4fda72ce8235b106e8a31eefdb4c02dc43a47a95c72a63b040ccce1e80af4f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:22:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2286", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:22:20", "EXIF DateTimeDigitized": "2002:06:18 14:22:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "411/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 296, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070742", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "822"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f7f04b45af7a53b247717e311a38759ea2e7d47b281c021f4c98a0224849aeb", "phash": "a51776c337e3900d", "dhash": "6d6efed6e3c38397", "phash_int": -6.550636552158736e+18, "collected_at": "2026-05-22T04:28:24.070584+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-27 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-22-27 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-22-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 732633.0, "mtime": "2002-06-18T14:22:26+00:00", "mtime_ts": 1024410146.0, "ctime": "2002-06-18T14:22:26+00:00", "sha256_file": "49039739e2ecdaa5c0f9a63afb636525ea58fb39d7258a57c6adda2abbed9b22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:22:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2538", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:22:27", "EXIF DateTimeDigitized": "2002:06:18 14:22:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "353/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 332, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070743", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "114", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "706"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb321c04e3b14e5511012ed5e36f9dccb05b9ef48b37cb40cd746d92c418d486", "phash": "903bf107cc18e79e", "dhash": "9a58bcb466ceb8a4", "phash_int": -8.053578492830751e+18, "collected_at": "2026-05-22T04:28:24.129580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-41 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 14-22-41 Canon PowerShot S40.JPG", "file_name": "2002-06-18 14-22-41 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 14-22-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 859783.0, "mtime": "2002-06-18T14:22:40+00:00", "mtime_ts": 1024410160.0, "ctime": "2002-06-18T14:22:40+00:00", "sha256_file": "de76096d650377ca2ee2fade386a536bdd88b7c6cf2e82c350c13124a72c9a65", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 14:22:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 14:22:41", "EXIF DateTimeDigitized": "2002:06:18 14:22:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "707/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070744", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "707"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9933a73468c1c631a81dc8fdb633bbc0c78103edc96ec8b2477313fe02a42b0e", "phash": "bf3bc05880c8bf93", "dhash": "193b3c3d3c3aa0c8", "phash_int": -4.666925102489092e+18, "collected_at": "2026-05-22T04:28:24.194005+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-38 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-04-38 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-04-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1559393.0, "mtime": "2002-06-18T16:04:36+00:00", "mtime_ts": 1024416276.0, "ctime": "2002-06-18T16:04:36+00:00", "sha256_file": "1f2369fe86c8cd7a20906390389a00b7469b1f4b3ce7e1f98ab05856bc915d18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:04:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5712", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:04:38", "EXIF DateTimeDigitized": "2002:06:18 16:04:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070745", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "495c9c55f2294814ebf3f3561a75bb65c9d45a98848e35f290cb28be27653ae6", "phash": "d8e0b88fe689074f", "dhash": "b094dcc066743139", "phash_int": -2.819050438546356e+18, "collected_at": "2026-05-22T04:28:24.247969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-43 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-04-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-04-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1793995.0, "mtime": "2002-06-18T16:04:42+00:00", "mtime_ts": 1024416282.0, "ctime": "2002-06-18T16:04:42+00:00", "sha256_file": "eb54a62731140786183a6feaaf306e06974f7ae765f720508d70164ce85686c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:04:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5431", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:04:43", "EXIF DateTimeDigitized": "2002:06:18 16:04:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070746", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08fd989573338a1a515d4ecffb9deccc9de8be6cc4c441932229248017adb807", "phash": "b443fe8946d9c07a", "dhash": "00ecf69afff33a2c", "phash_int": -5.457238457890259e+18, "collected_at": "2026-05-22T04:28:24.307288+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-48 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-04-48 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-04-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1570039.0, "mtime": "2002-06-18T16:04:46+00:00", "mtime_ts": 1024416286.0, "ctime": "2002-06-18T16:04:46+00:00", "sha256_file": "5d847faef201979d05301412848c165f1b737a502ef0fa6bd8f634da605eb953", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:04:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5291", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:04:48", "EXIF DateTimeDigitized": "2002:06:18 16:04:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070747", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f62ee5f5e2dbf1738bc716cce4f33d9b6232cfe62c8732b2d0fe7531731ebc4", "phash": "9565cc9e7b5b1064", "dhash": "16c6ce5aeefc60d4", "phash_int": -7.681508608364048e+18, "collected_at": "2026-05-22T04:28:24.336291+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-52 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-04-52 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-04-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2109037.0, "mtime": "2002-06-18T16:04:50+00:00", "mtime_ts": 1024416290.0, "ctime": "2002-06-18T16:04:50+00:00", "sha256_file": "7cab09854eace7ba047cc857d81dcaa7456486a7cd869dc557d70e4a743ef39a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:04:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5800", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:04:52", "EXIF DateTimeDigitized": "2002:06:18 16:04:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070748", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49bfee0490f6ead86725e90839d4b107017ff4e086dbe22279d890f815ae5a69", "phash": "8206efdd8cac74b2", "dhash": "68e8edf5f8e0e3e2", "phash_int": -9.077304264091733e+18, "collected_at": "2026-05-22T04:28:24.400807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-57 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-04-57 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-04-57 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-04-57 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2260445.0, "mtime": "2002-06-18T16:04:56+00:00", "mtime_ts": 1024416296.0, "ctime": "2002-06-18T16:04:56+00:00", "sha256_file": "16e34d1eb829a3face75a522e7e5e1bba16039f06de1c505832cfff7e7bdc380", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:04:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6092", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:04:57", "EXIF DateTimeDigitized": "2002:06:18 16:04:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070749", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02bc8b1fb10bd4619573cc98d2ea8323951ed12e9492d34cf0c0c1652028919f", "phash": "e7059be2e09a36a5", "dhash": "dc4e6ec1c7157936", "phash_int": -1.799861077331528e+18, "collected_at": "2026-05-22T04:28:24.447151+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-03 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-03 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2270125.0, "mtime": "2002-06-18T16:05:02+00:00", "mtime_ts": 1024416302.0, "ctime": "2002-06-18T16:05:02+00:00", "sha256_file": "0d3c6022ef18ac9a102ac9b9d7b823960858d67a4c9b7c38d044cc1035a4b93b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6315", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:03", "EXIF DateTimeDigitized": "2002:06:18 16:05:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070750", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fd711a9d88eb1e808f5802f07255bca3886fd18860c7b23e90bbe7b06740db6", "phash": "8e7fcb86b8414cf0", "dhash": "e34931b7bc64e0b0", "phash_int": -8.178594618804188e+18, "collected_at": "2026-05-22T04:28:24.500150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-07 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-07 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1752061.0, "mtime": "2002-06-18T16:05:06+00:00", "mtime_ts": 1024416306.0, "ctime": "2002-06-18T16:05:06+00:00", "sha256_file": "1a5d36e2b30785bdce1e9a93511f24960a97df0d62e19d1ba2add4bebbf3ce99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5156", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:07", "EXIF DateTimeDigitized": "2002:06:18 16:05:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070751", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5da95a21557f180a6bc92891318f3487aaedbb9d0e8eb7d799556e4589337860", "phash": "c576eb9679421c49", "dhash": "c84c34a134e4c353", "phash_int": -4.2179249694738934e+18, "collected_at": "2026-05-22T04:28:24.573397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-12 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-12 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2070429.0, "mtime": "2002-06-18T16:05:10+00:00", "mtime_ts": 1024416310.0, "ctime": "2002-06-18T16:05:10+00:00", "sha256_file": "812974d4f6765d61f23f16478d37c1c85ccc424e4e2bdd661d16cb21585523db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5134", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:12", "EXIF DateTimeDigitized": "2002:06:18 16:05:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070752", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22d06f50a93f29b0fccb7004de417159c06cf0473975d0dee721086e42f26f02", "phash": "d42a9fd0295d522f", "dhash": "da6764d6e7a03060", "phash_int": -3.158536472250986e+18, "collected_at": "2026-05-22T04:28:24.636092+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-17 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-17 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2004367.0, "mtime": "2002-06-18T16:05:16+00:00", "mtime_ts": 1024416316.0, "ctime": "2002-06-18T16:05:16+00:00", "sha256_file": "7ec497d88cb58b63afae198f33711e9ce198730b6123f173f08d9f314ff6d7d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5001", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:17", "EXIF DateTimeDigitized": "2002:06:18 16:05:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070753", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "129418ea94e2a34706eb79ca35636a94378076c7b35fb344d39732e74a85b5ca", "phash": "d47fab8e19670852", "dhash": "f2c88cb2f4a48c98", "phash_int": -3.1345981888266875e+18, "collected_at": "2026-05-22T04:28:24.682486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-31 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-31 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2219734.0, "mtime": "2002-06-18T16:05:30+00:00", "mtime_ts": 1024416330.0, "ctime": "2002-06-18T16:05:30+00:00", "sha256_file": "a4a92be09d1db36622cec958e942d7ddeed8ab4767fdcda8aa434cef355929b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5695", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:31", "EXIF DateTimeDigitized": "2002:06:18 16:05:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070754", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "332", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "818f45e27c2e5314071c752e5359a859ff12047511b4134cade7100c45c4ea72", "phash": "91a4cb527107cdf3", "dhash": "fcde769e9cb9c9d1", "phash_int": -7.95200748708536e+18, "collected_at": "2026-05-22T04:28:24.751720+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-50 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-50 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2046914.0, "mtime": "2002-06-18T16:05:48+00:00", "mtime_ts": 1024416348.0, "ctime": "2002-06-18T16:05:48+00:00", "sha256_file": "44ce6a6934be13f55ee7b428ebe883dc872370a1c108c79a45fd05138a16fce1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5322", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:50", "EXIF DateTimeDigitized": "2002:06:18 16:05:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070755", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edf33535416e5d213c354aece37497c39990e8b0e5ae058497bfc59703495af3", "phash": "9eb8a152564aadf8", "dhash": "fffe3b6920e889c6", "phash_int": -7.009675444995053e+18, "collected_at": "2026-05-22T04:28:24.786967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-55 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-05-55 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-05-55 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-05-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2263280.0, "mtime": "2002-06-18T16:05:54+00:00", "mtime_ts": 1024416354.0, "ctime": "2002-06-18T16:05:54+00:00", "sha256_file": "201350b8d3d457ff8dbc597c42a61035c46f36749acc2f9396ca5f014fdbfe71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:05:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6016", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:05:55", "EXIF DateTimeDigitized": "2002:06:18 16:05:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070756", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51d7553c6cc29f510c9d6373ca7f3f5ce254abf6baf51a87d0046dde5d429ccd", "phash": "c9ab94f2155665ca", "dhash": "ecdb635adb8a9010", "phash_int": -3.914871683607534e+18, "collected_at": "2026-05-22T04:28:24.905295+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-13 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-13 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1846800.0, "mtime": "2002-06-18T16:06:12+00:00", "mtime_ts": 1024416372.0, "ctime": "2002-06-18T16:06:12+00:00", "sha256_file": "e6ab24661b0a6aa4c8a82ef17470c24f1ad8d6d5291c047b27f82bb3f42dfa90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4787", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:13", "EXIF DateTimeDigitized": "2002:06:18 16:06:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070757", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52183c1a96c244d22cd58930406a07d914fbde1a3a3b83d48c732f5336c5f646", "phash": "c694c4467a7a43cf", "dhash": "e4e6e68dcde5e5ed", "phash_int": -4.137466350665055e+18, "collected_at": "2026-05-22T04:28:24.909384+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-19 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-19 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-19 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-19 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2034533.0, "mtime": "2002-06-18T16:06:18+00:00", "mtime_ts": 1024416378.0, "ctime": "2002-06-18T16:06:18+00:00", "sha256_file": "6f715f4af5d80df4d161014d200e4d3d3010b3469f0ca78013189733d4fb268d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5194", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:19", "EXIF DateTimeDigitized": "2002:06:18 16:06:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070758", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b27074057a56943d77a22c104c77fb7667870e0540402c276750b7771244e18e", "phash": "cdbfebd4614010e5", "dhash": "607072e0eaf0e1c2", "phash_int": -3.620916277985407e+18, "collected_at": "2026-05-22T04:28:24.992460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-27 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-27 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1993584.0, "mtime": "2002-06-18T16:06:26+00:00", "mtime_ts": 1024416386.0, "ctime": "2002-06-18T16:06:26+00:00", "sha256_file": "a51b0e3e748acd9afdcd417d83eab980f0ce1702a9abfc29883b4a280c512b83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5383", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:27", "EXIF DateTimeDigitized": "2002:06:18 16:06:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070759", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "efd99a35bac7085e0afd4e27fb1230e97342582d357ceebd3ea6900378ef2ef8", "phash": "9087ffd82977102b", "dhash": "e8f0ccaab3b034ba", "phash_int": -8.032170106518303e+18, "collected_at": "2026-05-22T04:28:25.011572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-32 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-32 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1982271.0, "mtime": "2002-06-18T16:06:30+00:00", "mtime_ts": 1024416390.0, "ctime": "2002-06-18T16:06:30+00:00", "sha256_file": "fa31d51891ec86d31fcae59b6c021d291d0a88b758dda45048cfcbf0282d61d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4917", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:32", "EXIF DateTimeDigitized": "2002:06:18 16:06:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070760", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd652ebfeb34a50f0b49cd2e5e80d2d15518fbd87add0cbb19ef804bdd4b3c2a", "phash": "dc83e31c6c6116eb", "dhash": "e0e0f0b0b038901c", "phash_int": -2.5569504521994184e+18, "collected_at": "2026-05-22T04:28:25.098705+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-41 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-41 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-41 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2166131.0, "mtime": "2002-06-18T16:06:40+00:00", "mtime_ts": 1024416400.0, "ctime": "2002-06-18T16:06:40+00:00", "sha256_file": "6a11b7b3236326b9ce279a1b4971e456f73484e85c2d3ab0a39d21b9dcd0a048", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6282", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:41", "EXIF DateTimeDigitized": "2002:06:18 16:06:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070761", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f20f50992f4ed1737ba4553f27dcf5235db54863205ccba6c9085bbba4e45b47", "phash": "bec2c1bd165b2383", "dhash": "2c68c92d3c3338be", "phash_int": -4.700982043153325e+18, "collected_at": "2026-05-22T04:28:25.108823+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-46 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-46 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-46 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-46 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2070485.0, "mtime": "2002-06-18T16:06:44+00:00", "mtime_ts": 1024416404.0, "ctime": "2002-06-18T16:06:44+00:00", "sha256_file": "36e2536b6d17be616e1fe4e3ce5c7b6fee7ab57f15c2d982d73505e0acbb8658", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6005", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:46", "EXIF DateTimeDigitized": "2002:06:18 16:06:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070762", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ab2be2f486ab69d29cc249d78601eb4e3e7bd16242f4a25ed887f473e045aeeb", "phash": "e492db69142df0e6", "dhash": "a0898ca6268363e6", "phash_int": -1.9762760421056223e+18, "collected_at": "2026-05-22T04:28:25.261041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-51 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-06-51 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-06-51 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-06-51 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1967904.0, "mtime": "2002-06-18T16:06:50+00:00", "mtime_ts": 1024416410.0, "ctime": "2002-06-18T16:06:50+00:00", "sha256_file": "4373a559faa42f811a979c32862fe0a70d17f7fefcce5d72e3d8fb6f24d4f46e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:06:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5545", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:06:51", "EXIF DateTimeDigitized": "2002:06:18 16:06:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070763", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d67a7d675e62cfe07b2834e3d18284b4862c5a5d419dd3ceeefe900494e0eb1", "phash": "b09ecf6f00205bfa", "dhash": "68303c9e9613969e", "phash_int": -5.719906401063511e+18, "collected_at": "2026-05-22T04:28:25.265146+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-14 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-14 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2314426.0, "mtime": "2002-06-18T16:07:12+00:00", "mtime_ts": 1024416432.0, "ctime": "2002-06-18T16:07:12+00:00", "sha256_file": "ef7113c91644ab1e4a15850de3023792e2097585236d36853350178f3901628d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5908", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:14", "EXIF DateTimeDigitized": "2002:06:18 16:07:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070764", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6716a733e3cc2024b52b7e1e57bf8da5bcca21c9c08c0c207972025eae3da1a1", "phash": "96308379d2976597", "dhash": "9c3d2e3c3c36fdc8", "phash_int": -7.624449609890831e+18, "collected_at": "2026-05-22T04:28:25.432582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-17 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-17 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2551838.0, "mtime": "2002-06-18T16:07:16+00:00", "mtime_ts": 1024416436.0, "ctime": "2002-06-18T16:07:16+00:00", "sha256_file": "4e42451359dbf5f6dcd8b8d5d1ce328596277f6d02f690ae1dc305e78503ae9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6574", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:17", "EXIF DateTimeDigitized": "2002:06:18 16:07:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070765", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d20d2f200b7d9c9ec630a75abe5b1b074699a2b2c71b831488e96811331fa12", "phash": "ead0d51d28e8cb4b", "dhash": "9151410921651343", "phash_int": -1.5264859524614853e+18, "collected_at": "2026-05-22T04:28:25.439844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-24 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-24 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-24 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-24 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2090522.0, "mtime": "2002-06-18T16:07:22+00:00", "mtime_ts": 1024416442.0, "ctime": "2002-06-18T16:07:22+00:00", "sha256_file": "8a52f346ed375cd00ac0175adc44b549c019f8ee319eae2fd6f1a57e0261c166", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5367", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:24", "EXIF DateTimeDigitized": "2002:06:18 16:07:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070766", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7dee75ea98eae438e7d87c234bc9f50264fc886bc6e76bfc8a1befacb7ccc23", "phash": "bd69071ef0e7481a", "dhash": "1b3a329e3c726ce4", "phash_int": -4.79829609851445e+18, "collected_at": "2026-05-22T04:28:25.599853+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-29 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-29 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2176857.0, "mtime": "2002-06-18T16:07:28+00:00", "mtime_ts": 1024416448.0, "ctime": "2002-06-18T16:07:28+00:00", "sha256_file": "6ab364b299401b54f19693810dddf59ee975a39c5c8f4773c8a4718ca36ba5e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6439", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:29", "EXIF DateTimeDigitized": "2002:06:18 16:07:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070767", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3583402c6637d40a33c35007d23bb76e3d4c5c65dca09c23cc77f8153032673d", "phash": "abdad3309ee1089d", "dhash": "414be36333034363", "phash_int": -6.063301742523513e+18, "collected_at": "2026-05-22T04:28:25.602853+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-39 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-39 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-39 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-39 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1790234.0, "mtime": "2002-06-18T16:07:38+00:00", "mtime_ts": 1024416458.0, "ctime": "2002-06-18T16:07:38+00:00", "sha256_file": "ca9faaec8b87c40948a57b1ce99749867ecf3174ca2679dccfdcc316fef2847f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4465", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:39", "EXIF DateTimeDigitized": "2002:06:18 16:07:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070769", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "130f94cc71edad9a95e52310a8b870b5f81d3f6201cedfcacb27e55a7a9a9e26", "phash": "9c808f7c472897fa", "dhash": "fffff85828361760", "phash_int": -7.16957284284127e+18, "collected_at": "2026-05-22T04:28:25.707859+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-34 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-34 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1753168.0, "mtime": "2002-06-18T16:07:32+00:00", "mtime_ts": 1024416452.0, "ctime": "2002-06-18T16:07:32+00:00", "sha256_file": "b70a4754f69c2272d52ae1e28df5970963dd227b339a21596802942cd5358c73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4499", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:34", "EXIF DateTimeDigitized": "2002:06:18 16:07:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070768", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d25d49ac0f1298df64d4ee222ffc12834e087eb086f12662dcba38228af97bec", "phash": "cbb4ad5a5506a9d2", "dhash": "ffff7e7ab8e9c1f2", "phash_int": -3.7681963847171005e+18, "collected_at": "2026-05-22T04:28:25.722859+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-43 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1299841.0, "mtime": "2002-06-18T16:07:42+00:00", "mtime_ts": 1024416462.0, "ctime": "2002-06-18T16:07:42+00:00", "sha256_file": "9c3a9b65611fb2d7f34799594c7b6a97c004143ccb8eb86a5bed4af1f5b155b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3901", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:43", "EXIF DateTimeDigitized": "2002:06:18 16:07:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070770", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50244a24444150236253eeeb017a84be646f92bbe43620486a06eec3ea7dcedf", "phash": "e19883255aedc5ba", "dhash": "e0e800001dc2c6c5", "phash_int": -2.1908570222531855e+18, "collected_at": "2026-05-22T04:28:25.782148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-07-48 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-07-48 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-07-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1178355.0, "mtime": "2002-06-18T16:07:46+00:00", "mtime_ts": 1024416466.0, "ctime": "2002-06-18T16:07:46+00:00", "sha256_file": "9fbc56fe3f94233c0f4c7da758a99edf27e0c21146c976457e87e7d546ab58ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:07:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4271", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:07:48", "EXIF DateTimeDigitized": "2002:06:18 16:07:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070771", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "339", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67b1ce66a2ba470c9fb4e1f04ea98a664ef25cf356aa758c03a3bedddf6c01c4", "phash": "8ae9b556214acbd9", "dhash": "0004033b9c646dd7", "phash_int": -8.437013045371549e+18, "collected_at": "2026-05-22T04:28:25.846510+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-03 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-03 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1863242.0, "mtime": "2002-06-18T16:09:02+00:00", "mtime_ts": 1024416542.0, "ctime": "2002-06-18T16:09:02+00:00", "sha256_file": "2ca18bf34e8c1654e7d9c8e73e4874877f6162e629c6fb5bc6573f47a21b4e40", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4485", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:03", "EXIF DateTimeDigitized": "2002:06:18 16:09:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070772", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e442bc0c25133009629dc5f900073fa3724c6798a1b8b3142e45bec307972c9e", "phash": "d72ae81567d8912d", "dhash": "3065ec606e78b0e8", "phash_int": -2.942284227898994e+18, "collected_at": "2026-05-22T04:28:25.888515+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-08 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-08 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-08 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-08 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1975213.0, "mtime": "2002-06-18T16:09:06+00:00", "mtime_ts": 1024416546.0, "ctime": "2002-06-18T16:09:06+00:00", "sha256_file": "297a0828f19ca099ad8adae49cae979e365350cb9248a5ff641c63ec5221aee7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4519", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:08", "EXIF DateTimeDigitized": "2002:06:18 16:09:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070773", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "331", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bff929f4dae480dd4d2b56f6e4599378869078b7bf787e700c85817a950ae755", "phash": "c24695736e9c9167", "dhash": "e0c0f2abcbd9b4b3", "phash_int": -4.4477032589722537e+18, "collected_at": "2026-05-22T04:28:25.939841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-13 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-13 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1925365.0, "mtime": "2002-06-18T16:09:12+00:00", "mtime_ts": 1024416552.0, "ctime": "2002-06-18T16:09:12+00:00", "sha256_file": "d9394357009cdada1e3572ecac8b6cfe4101156f54724efa77aa79a6370d996d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4441", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:13", "EXIF DateTimeDigitized": "2002:06:18 16:09:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070774", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "332", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "80140371060e263ee96edf7a5bcd80a460c42785cf980e267a9d51fb83d0aefe", "phash": "843ff3333c4ce330", "dhash": "bcd9e66626c8f0e0", "phash_int": -8.917141335789739e+18, "collected_at": "2026-05-22T04:28:26.014594+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-19 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-19 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-19 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-19 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2044949.0, "mtime": "2002-06-18T16:09:18+00:00", "mtime_ts": 1024416558.0, "ctime": "2002-06-18T16:09:18+00:00", "sha256_file": "fe1645850b14df4c723d0bd6460c9723e184982af6eb13fd21de7b4b225c83c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4680", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:19", "EXIF DateTimeDigitized": "2002:06:18 16:09:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070775", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef3d7d6b2cff0682f49b2edc72a362723d1e8ea8acc9637330fc9973262805cb", "phash": "bfc0105f603fc553", "dhash": "101022b351667e8d", "phash_int": -4.629682415114141e+18, "collected_at": "2026-05-22T04:28:26.066013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-24 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-24 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-24 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-24 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2061340.0, "mtime": "2002-06-18T16:09:22+00:00", "mtime_ts": 1024416562.0, "ctime": "2002-06-18T16:09:22+00:00", "sha256_file": "6981303687211b10ebd67e0e2b4348cb15b594011a12a5efa6bd542ecdcc84c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4993", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:24", "EXIF DateTimeDigitized": "2002:06:18 16:09:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070776", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91118661336b4c0fde94b827e8cf424d7dbb8eb96030d98d35d69cf4d5ea0b27", "phash": "d384e43b1542cfb5", "dhash": "8080c1d97a6989c6", "phash_int": -3.205186092370047e+18, "collected_at": "2026-05-22T04:28:26.109129+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-48 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-48 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1961639.0, "mtime": "2002-06-18T16:09:46+00:00", "mtime_ts": 1024416586.0, "ctime": "2002-06-18T16:09:46+00:00", "sha256_file": "c7fbdb4ce3c485b4c3010e056921147d8d9cec86a20af91fc07399f4d759ce4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4899", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:48", "EXIF DateTimeDigitized": "2002:06:18 16:09:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070777", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09d5fc21b1fe2fbf079a94094930ad5a2f21d4cc82cd38527060507d21b273e4", "phash": "8ff0a6916a54a3da", "dhash": "80000420e1ca6467", "phash_int": -8.074770988390899e+18, "collected_at": "2026-05-22T04:28:26.158126+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-53 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-53 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-53 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-53 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1509981.0, "mtime": "2002-06-18T16:09:52+00:00", "mtime_ts": 1024416592.0, "ctime": "2002-06-18T16:09:52+00:00", "sha256_file": "b175c3f42bb180f1beba986fe2fddc07a6cc22428f97646f5ce2a0b4290f5b51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4288", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:53", "EXIF DateTimeDigitized": "2002:06:18 16:09:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070778", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "360", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96300308757f19a737895af59d026cf57c5e66499d1d20817b2cc5f744a9eb23", "phash": "d5b28c6b354e92a5", "dhash": "808800208e886026", "phash_int": -3.0482196056926735e+18, "collected_at": "2026-05-22T04:28:26.222626+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-58 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-09-58 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-09-58 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-09-58 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2319315.0, "mtime": "2002-06-18T16:09:56+00:00", "mtime_ts": 1024416596.0, "ctime": "2002-06-18T16:09:56+00:00", "sha256_file": "1b78ac9ed6394fef828f40fc72ecc9c233975f04b94523c91b1615f0b108b4b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:09:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5361", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:09:58", "EXIF DateTimeDigitized": "2002:06:18 16:09:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070779", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7007873dc8375ec9941711ff5a4c11cf6edcd4c783a5a50b391d279532c247e9", "phash": "c8a7a874614bb5da", "dhash": "ffff7ec28434b1b1", "phash_int": -3.9880337272112604e+18, "collected_at": "2026-05-22T04:28:26.290634+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-10-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 16-10-03 Canon PowerShot S40.JPG", "file_name": "2002-06-18 16-10-03 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 16-10-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2021678.0, "mtime": "2002-06-18T16:10:02+00:00", "mtime_ts": 1024416602.0, "ctime": "2002-06-18T16:10:02+00:00", "sha256_file": "5f2ee975937e4906de47c3ad5a47ad231dce4d58d33ea512aa5719fab783b03d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 16:10:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5460", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 16:10:03", "EXIF DateTimeDigitized": "2002:06:18 16:10:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070780", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a3b29a56f939013c6f6e999d57a179c021d613984cf7e897ea5be24b11c0f55", "phash": "d2ece9111aeae649", "dhash": "01012525fd6c5868", "phash_int": -3.2479649715656525e+18, "collected_at": "2026-05-22T04:28:26.338634+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-13 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-13-13 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-13-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1733887.0, "mtime": "2002-06-18T18:13:12+00:00", "mtime_ts": 1024423992.0, "ctime": "2002-06-18T18:13:12+00:00", "sha256_file": "1feda8c4493a2683a586ab364c6dd4bd989a711409739e599bd60547d7aa5a5f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:13:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4502", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:13:13", "EXIF DateTimeDigitized": "2002:06:18 18:13:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "17/10", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070781", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1700"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d96abf4b2803087a064d38db8a3ea39a36bbf8b060ae015ad514cecb31d7a9d", "phash": "e68856e689d59a9c", "dhash": "cc45d5c6cbcdcc8c", "phash_int": -1.8351212999985329e+18, "collected_at": "2026-05-22T04:28:26.401635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-43 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-13-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-13-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1787146.0, "mtime": "2002-06-18T18:13:42+00:00", "mtime_ts": 1024424022.0, "ctime": "2002-06-18T18:13:42+00:00", "sha256_file": "4c11fbd2d0adcfd5342210360c5ad3105b2559da1ac0a105d71b963de2ab1a83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:13:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4390", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:13:43", "EXIF DateTimeDigitized": "2002:06:18 18:13:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "939/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070782", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1878"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bbc1710cfff3b9c84b910a74841fb12e914b527d3d048ccbd508548467f6244c", "phash": "c3ec55c6c9d4d294", "dhash": "c451d6d3cbcdccc8", "phash_int": -4.328990829531836e+18, "collected_at": "2026-05-22T04:28:26.441633+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-59 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-59 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-13-59 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-13-59 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1763879.0, "mtime": "2002-06-18T18:13:58+00:00", "mtime_ts": 1024424038.0, "ctime": "2002-06-18T18:13:58+00:00", "sha256_file": "b3a0effc538b070aa85ca75ba725082350416be4254b0a14efbdd4f6bdeb48c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:13:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:13:59", "EXIF DateTimeDigitized": "2002:06:18 18:13:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2229/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070784", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2229"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18a93ee766856198549039cea463d8aeb2ce065e5b85e645bbc6098314f20c66", "phash": "d00515d55de8ab37", "dhash": "b69c9eb39c9c9094", "phash_int": -3.457333132789241e+18, "collected_at": "2026-05-22T04:28:26.549911+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-49 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-13-49 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-13-49 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-13-49 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1709315.0, "mtime": "2002-06-18T18:13:48+00:00", "mtime_ts": 1024424028.0, "ctime": "2002-06-18T18:13:48+00:00", "sha256_file": "7228ecfccfcfd27539b54552627cb0323bbaeb3f1ff80023e231fe3814d65be1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:13:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4272", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:13:49", "EXIF DateTimeDigitized": "2002:06:18 18:13:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "787/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070783", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1574"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "449db2c8a6f290834dd260ec93ff221b5dd506ebb964d337a5d561aa7d34fa14", "phash": "c3ec54e689f59294", "dhash": "c451d6c2cbcdccc8", "phash_int": -4.3289917926761057e+18, "collected_at": "2026-05-22T04:28:26.560912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-07 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-14-07 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-14-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1710354.0, "mtime": "2002-06-18T18:14:06+00:00", "mtime_ts": 1024424046.0, "ctime": "2002-06-18T18:14:06+00:00", "sha256_file": "e237429ba1fb276df7841b13a9c4f6c9b1ba7289a18870fda03e144bab939d60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:14:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4080", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:14:07", "EXIF DateTimeDigitized": "2002:06:18 18:14:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "811/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070785", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "76", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1622"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c95f0007907accd132fe9295deb6b487a950921148289d7e6a389c372e524a4f", "phash": "d12515d549aa9737", "dhash": "92949eb3949c9090", "phash_int": -3.3762683398361846e+18, "collected_at": "2026-05-22T04:28:26.714097+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-15 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-15 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-14-15 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-14-15 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1712847.0, "mtime": "2002-06-18T18:14:14+00:00", "mtime_ts": 1024424054.0, "ctime": "2002-06-18T18:14:14+00:00", "sha256_file": "c4324b2b104081736b4a5699aedaf5734088904f6b58e335d5dbdaa2b80cd2a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:14:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4102", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:14:15", "EXIF DateTimeDigitized": "2002:06:18 18:14:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1647/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070786", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1647"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fe6e0ca66c4a59e07e3ee4814c2843956c4534392106ad43492c5e8c9735304", "phash": "dc1414da6ead9731", "dhash": "a4acbc2321b8b030", "phash_int": -2.588420957438896e+18, "collected_at": "2026-05-22T04:28:26.734095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-24 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-24 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-14-24 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-14-24 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1687529.0, "mtime": "2002-06-18T18:14:22+00:00", "mtime_ts": 1024424062.0, "ctime": "2002-06-18T18:14:22+00:00", "sha256_file": "7cdc3eeb0016d0ddeb74ba5b73891da822e0ad82f2ffe625b73d847a2cf65c53", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:14:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4257", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:14:24", "EXIF DateTimeDigitized": "2002:06:18 18:14:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1507/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070787", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1507"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "649a7ac0a3d93f6b4d61a72f45480b7bdccf997adbaf5221ea922359afe26235", "phash": "c5ed56c291a41abd", "dhash": "e44252d6c3edecc8", "phash_int": -4.1845930850902277e+18, "collected_at": "2026-05-22T04:28:26.820833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-39 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\18\\2002-06-18 18-14-39 Canon PowerShot S40.JPG", "file_name": "2002-06-18 18-14-39 Canon PowerShot S40.JPG", "file_stem": "2002-06-18 18-14-39 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1697426.0, "mtime": "2002-06-18T18:14:38+00:00", "mtime_ts": 1024424078.0, "ctime": "2002-06-18T18:14:38+00:00", "sha256_file": "99d2a4dfb510208209ead29da2989c3f4e4df1d05a3b0c6f3de8205c7508ed54", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:18 18:14:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4168", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:18 18:14:39", "EXIF DateTimeDigitized": "2002:06:18 18:14:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "293/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070788", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1465"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccd9761746f0221de5d9a5e602946685234cdba7261fad83b39d06bc66a7c8ae", "phash": "c54d54cab5a4999d", "dhash": "e64452c2c3edec8e", "phash_int": -4.2296312454234373e+18, "collected_at": "2026-05-22T04:28:26.835833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-17 Canon PowerShot S40.JPG", "file_name": "2002-06-25 20-26-17 Canon PowerShot S40.JPG", "file_stem": "2002-06-25 20-26-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2035270.0, "mtime": "2002-06-25T20:26:16+00:00", "mtime_ts": 1025036776.0, "ctime": "2002-06-25T20:26:16+00:00", "sha256_file": "bfe2d5ddf3c24eb6a569d5bb8cfc84f14d76ce00484bf5ab7df108d0e640cb26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:25 20:26:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6231", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:25 20:26:17", "EXIF DateTimeDigitized": "2002:06:25 20:26:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070790", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f61b8e186c201362d1132d52ed623fce1d78a5f9b2b9012a2e391d52241bf2b", "phash": "b7855b1f0de0d2c8", "dhash": "464e86d66b6c9439", "phash_int": -5.22266800393127e+18, "collected_at": "2026-05-22T04:28:26.931905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\21\\2002-06-21 17-31-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\21\\2002-06-21 17-31-04 Canon PowerShot S40.JPG", "file_name": "2002-06-21 17-31-04 Canon PowerShot S40.JPG", "file_stem": "2002-06-21 17-31-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1818054.0, "mtime": "2002-06-21T17:31:02+00:00", "mtime_ts": 1024680662.0, "ctime": "2002-06-21T17:31:02+00:00", "sha256_file": "7a4d47eef20dd575df0bfa50888add50b0eebbf02f9bc1660e7a2705d783fb4a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:21 17:31:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:21 17:31:04", "EXIF DateTimeDigitized": "2002:06:21 17:31:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070789", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65427", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52cbf559df9763156f876890fcc95c7bd00148049cf535c054736e50d5d25dc5", "phash": "b8807fd87f0803fc", "dhash": "b6b6f6f696963616", "phash_int": -5.151977405890952e+18, "collected_at": "2026-05-22T04:28:26.934905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-30 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-30 Canon PowerShot S40.JPG", "file_name": "2002-06-25 20-26-30 Canon PowerShot S40.JPG", "file_stem": "2002-06-25 20-26-30 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1974156.0, "mtime": "2002-06-25T20:26:28+00:00", "mtime_ts": 1025036788.0, "ctime": "2002-06-25T20:26:28+00:00", "sha256_file": "df1bec3ce1d52da13a4fc16837cdfd78ff9b3dd3df2df00c94c3325868246f87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:25 20:26:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5979", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:25 20:26:30", "EXIF DateTimeDigitized": "2002:06:25 20:26:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070791", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f84331fc7f1fd29c35198a1aeeeaeb2bd97ea8d45acee9e063f7f57cf7bd262d", "phash": "b787591fc8e0f244", "dhash": "464ccc966a4d8cb8", "phash_int": -5.222107249863757e+18, "collected_at": "2026-05-22T04:28:27.036907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-45 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-45 Canon PowerShot S40.JPG", "file_name": "2002-06-25 20-26-45 Canon PowerShot S40.JPG", "file_stem": "2002-06-25 20-26-45 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1906983.0, "mtime": "2002-06-25T20:26:44+00:00", "mtime_ts": 1025036804.0, "ctime": "2002-06-25T20:26:44+00:00", "sha256_file": "083c85e84a1fba451e593ff5b59dd0b19eab3a826e60b401d31e647f5bfd353e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:25 20:26:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4904", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:25 20:26:45", "EXIF DateTimeDigitized": "2002:06:25 20:26:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070792", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11f88f98914cf9b053781e00c2b60d74c0e1c8cef7bfab0cf9fa9a7d81c0a16f", "phash": "bb3b61841ee003df", "dhash": "3b7b7b3b7fd6966a", "phash_int": -4.955259744909524e+18, "collected_at": "2026-05-22T04:28:27.051907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-54 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\25\\2002-06-25 20-26-54 Canon PowerShot S40.JPG", "file_name": "2002-06-25 20-26-54 Canon PowerShot S40.JPG", "file_stem": "2002-06-25 20-26-54 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1692904.0, "mtime": "2002-06-25T20:26:52+00:00", "mtime_ts": 1025036812.0, "ctime": "2002-06-25T20:26:52+00:00", "sha256_file": "b56e3a334d2436fcd30926f6ef3dc9124c3abe86be40f3065e178db41d91f53f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:25 20:26:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5857", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:25 20:26:54", "EXIF DateTimeDigitized": "2002:06:25 20:26:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070793", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "07421c561eb132742e9ad39efdd0adad30becc9c771746790d9b78be5893849f", "phash": "9cd59cb613cb5c12", "dhash": "747474561c2471b0", "phash_int": -7.145632927923348e+18, "collected_at": "2026-05-22T04:28:27.159905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-32 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-29-32 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-29-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1606675.0, "mtime": "2002-06-26T19:29:30+00:00", "mtime_ts": 1025119770.0, "ctime": "2002-06-26T19:29:30+00:00", "sha256_file": "7b4ffef789777c0bb0b08397510f3a02589cc72511a08f54756a02fe921aa649", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:29:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4678", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:29:32", "EXIF DateTimeDigitized": "2002:06:26 19:29:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070794", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f188d92a82a112693f07c085f96f26887fb95eed93a75da75bbe3cb767e4a0c9", "phash": "868f80197d7fc7a0", "dhash": "fce0656d18c9298e", "phash_int": -8.75063470398952e+18, "collected_at": "2026-05-22T04:28:27.162905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-43 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-29-43 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-29-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1720336.0, "mtime": "2002-06-26T19:29:42+00:00", "mtime_ts": 1025119782.0, "ctime": "2002-06-26T19:29:42+00:00", "sha256_file": "d5d7486b960bd2b9bbfb72ac45dcd6d4f5820f5def7e0f5e7568914187598ad2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:29:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5539", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:29:43", "EXIF DateTimeDigitized": "2002:06:26 19:29:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2699/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070796", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5398"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b9c7005c057e29dd823aa077f42b7bba075b20f7611bbb4bb0bd99efe81e09a", "phash": "fdbd8cc002456d6d", "dhash": "203a3a0d8d98e062", "phash_int": -1.6281925521575594e+17, "collected_at": "2026-05-22T04:28:27.268982+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-36 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-29-36 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-29-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1634703.0, "mtime": "2002-06-26T19:29:34+00:00", "mtime_ts": 1025119774.0, "ctime": "2002-06-26T19:29:34+00:00", "sha256_file": "58c915307b36f71f83e285fb5abd405c8e06325f4b0afd16c32ec663f2401ae9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:29:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4827", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:29:36", "EXIF DateTimeDigitized": "2002:06:26 19:29:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070795", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b581a9a8507d4db407891dbee80cfd4a25a478d0693c7c9d50fd0bfbadaf968", "phash": "868f80197d7fc6a4", "dhash": "f8e06d6918c929ae", "phash_int": -8.75063470398952e+18, "collected_at": "2026-05-22T04:28:27.280980+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-50 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-29-50 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-29-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1639761.0, "mtime": "2002-06-26T19:29:48+00:00", "mtime_ts": 1025119788.0, "ctime": "2002-06-26T19:29:48+00:00", "sha256_file": "613fff8f79e8a08400ecd815c249743d7bd2572336efca3aadd0c3fb47cd8a65", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:29:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5746", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:29:50", "EXIF DateTimeDigitized": "2002:06:26 19:29:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2921/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070797", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2921"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "273fb99d2fd51500f738fba9149256ae67719f2ac2c3002bdc3a18312287f555", "phash": "e2caecf9b1911615", "dhash": "0323eddd9d09cc27", "phash_int": -2.1046093186721981e+18, "collected_at": "2026-05-22T04:28:27.395840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-55 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-29-55 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-29-55 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-29-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1945310.0, "mtime": "2002-06-26T19:29:54+00:00", "mtime_ts": 1025119794.0, "ctime": "2002-06-26T19:29:54+00:00", "sha256_file": "4b4df442300ae760730e97c05a0f4cacbd1919916acf9019af6831b02af47978", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:29:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5892", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:29:55", "EXIF DateTimeDigitized": "2002:06:26 19:29:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5809/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070798", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5809"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0dfe6235375b0a4f0cbe451196b6d1f5dd386c36fe058f84b5e4b4a573f8f9da", "phash": "8787869eebb0b870", "dhash": "c86b4a4b4a738cc3", "phash_int": -8.68082173961616e+18, "collected_at": "2026-05-22T04:28:27.400837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-18 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-18 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-30-18 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-30-18 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1540478.0, "mtime": "2002-06-26T19:30:16+00:00", "mtime_ts": 1025119816.0, "ctime": "2002-06-26T19:30:16+00:00", "sha256_file": "90168b1bf699bf6d4b4df5cc83c3862b21ddba3ba3dca1771401f0ad7b8ce7ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:30:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5539", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:30:18", "EXIF DateTimeDigitized": "2002:06:26 19:30:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4451/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070799", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4451"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "142cf561a9bb1b6607f0f8d2eec43dc7fb4993635e9072954f0ef64d4de2a971", "phash": "ffbf8281a1cf4920", "dhash": "404c1116961a1884", "phash_int": -1.815238020908413e+16, "collected_at": "2026-05-22T04:28:27.493969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-23 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-30-23 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-30-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1490372.0, "mtime": "2002-06-26T19:30:22+00:00", "mtime_ts": 1025119822.0, "ctime": "2002-06-26T19:30:22+00:00", "sha256_file": "902fca074ac255b633296ea20eb8b64b90b06040e2a5b7b4c36f9b1e73505377", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:30:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5539", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:30:23", "EXIF DateTimeDigitized": "2002:06:26 19:30:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3103/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1070800", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6206"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff183c21ccee1b12697a931e5dd45c894acf96c7ba4a300148018c58d6adfe5c", "phash": "ffbf8681a18fc900", "dhash": "404c13168e1a3c84", "phash_int": -1.814798216673459e+16, "collected_at": "2026-05-22T04:28:27.509160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-56 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-56 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-30-56 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-30-56 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1226655.0, "mtime": "2002-06-26T19:30:54+00:00", "mtime_ts": 1025119854.0, "ctime": "2002-06-26T19:30:54+00:00", "sha256_file": "8f3f45fbe208c698d3bcad060d76ba39084370b0be6f55a1505fd75dc5a1d7e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:30:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4538", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:30:56", "EXIF DateTimeDigitized": "2002:06:26 19:30:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "673/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080802", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3365"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "452332ac86d4b0f12e8e77dbdfa56019827b8c22b8c3d950d46462b12914db9d", "phash": "d0d2a4ad8b836e6e", "dhash": "e6b498d983a6c6b4", "phash_int": -3.3994737034343593e+18, "collected_at": "2026-05-22T04:28:27.567401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-46 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-30-46 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-30-46 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-30-46 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1361321.0, "mtime": "2002-06-26T19:30:44+00:00", "mtime_ts": 1025119844.0, "ctime": "2002-06-26T19:30:44+00:00", "sha256_file": "1b784d30abf7b8d119b79a3452bfdf0570b4ad955c17f3e20fd81744a603a1ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:30:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5471", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:30:46", "EXIF DateTimeDigitized": "2002:06:26 19:30:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3583/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080801", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "276", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3583"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb499211eb9961dd6873b4bbb9ce2946e143b6b5b82140722fb9d755923bb3f8", "phash": "879e98e0f9e5614a", "dhash": "b964644645c6e47a", "phash_int": -8.674327740236341e+18, "collected_at": "2026-05-22T04:28:27.579402+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-04 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-04 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 714543.0, "mtime": "2002-06-26T19:31:02+00:00", "mtime_ts": 1025119862.0, "ctime": "2002-06-26T19:31:02+00:00", "sha256_file": "03c44494c36c1ff5ad687931e8ce1d61f523d2fee735186d0426a7ec4f94c8bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3180", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:04", "EXIF DateTimeDigitized": "2002:06:26 19:31:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080803", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2202"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ad69b15bed80f3b440648464674ae7aa7a3491097180139969bd62e43580baa", "phash": "d2f4cad2692a4bd4", "dhash": "9cacac36f4d9c8c1", "phash_int": -3.2457464263709624e+18, "collected_at": "2026-05-22T04:28:27.656402+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-10 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-10 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-10 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-10 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 748145.0, "mtime": "2002-06-26T19:31:08+00:00", "mtime_ts": 1025119868.0, "ctime": "2002-06-26T19:31:08+00:00", "sha256_file": "6b45d15dfedcd702e35a9ff7b4466ecbef6001a6f29e676c278b6fbae3221a31", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3433", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:10", "EXIF DateTimeDigitized": "2002:06:26 19:31:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4639/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080804", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4639"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdf7f156583b5fb21b171a6051d84834c498df212dddb512b79a11f6b6d99cd8", "phash": "d2f4a98b2da2c23e", "dhash": "9c8cacace8c9c9d1", "phash_int": -3.2457830161960955e+18, "collected_at": "2026-05-22T04:28:27.676403+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-16 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-16 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-16 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-16 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 742809.0, "mtime": "2002-06-26T19:31:14+00:00", "mtime_ts": 1025119874.0, "ctime": "2002-06-26T19:31:14+00:00", "sha256_file": "b26e64fea6e6abcd5e7273bb2f79251241d511be28b8df16f82de11f705dd7a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3526", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:16", "EXIF DateTimeDigitized": "2002:06:26 19:31:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080805", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3704"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22b30a46a5d964e345b9e739cf6579dff2958876145e02697c92b97b521f3b9e", "phash": "d2b0eb8f2982d47c", "dhash": "ccdc949474f4ecc0", "phash_int": -3.264850729734319e+18, "collected_at": "2026-05-22T04:28:27.725487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-36 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-36 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1909859.0, "mtime": "2002-06-26T19:31:34+00:00", "mtime_ts": 1025119894.0, "ctime": "2002-06-26T19:31:34+00:00", "sha256_file": "4d9ebbfbe1a3c30453add5a11eb4c15445981fffdaa8206e56e83c51ea1f5161", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7330", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:36", "EXIF DateTimeDigitized": "2002:06:26 19:31:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2023/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080806", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4046"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edb70719678d744d43ae09857662711295ac7a08a93fa63e100da20c8bde4646", "phash": "dbf5b5e4c4224ac8", "dhash": "8e52796191191e65", "phash_int": -2.5969696159614705e+18, "collected_at": "2026-05-22T04:28:27.788969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-41 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-41 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-41 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2107891.0, "mtime": "2002-06-26T19:31:40+00:00", "mtime_ts": 1025119900.0, "ctime": "2002-06-26T19:31:40+00:00", "sha256_file": "81ae27d8167a3f58587b8d413fea24f505dcb764d0321c7be4aa60e3f504b22e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7354", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:41", "EXIF DateTimeDigitized": "2002:06:26 19:31:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6013/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080807", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6013"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18c97735fda3b1f15091231eb2962bda4d9ac6c699d579f3f016d8ec029906e3", "phash": "f29aafa383adec00", "dhash": "2b383450c80e360a", "phash_int": -9.652660532938066e+17, "collected_at": "2026-05-22T04:28:27.813694+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-47 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-31-47 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-31-47 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-31-47 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1670961.0, "mtime": "2002-06-26T19:31:46+00:00", "mtime_ts": 1025119906.0, "ctime": "2002-06-26T19:31:46+00:00", "sha256_file": "c5b34227af411b70dd25d9dab65002ec2eb0de0d05a568a3cd079e0d077b70d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:31:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5969", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:31:47", "EXIF DateTimeDigitized": "2002:06:26 19:31:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2789/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080808", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5578"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28f18b9a0742f13a6c87a0926def503d9f863f5d50957b465b9efd23f73cf5c3", "phash": "c28299acbca7ab65", "dhash": "f9cdcdede4c9cddd", "phash_int": -4.430810116200617e+18, "collected_at": "2026-05-22T04:28:27.918699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-01 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-32-01 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-32-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1769556.0, "mtime": "2002-06-26T19:32:00+00:00", "mtime_ts": 1025119920.0, "ctime": "2002-06-26T19:32:00+00:00", "sha256_file": "c8136c4c0880fc6071ad175c99416819bfb8bbd0a997b33367163df2c1e3eca9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:32:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5872", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:32:01", "EXIF DateTimeDigitized": "2002:06:26 19:32:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080809", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc1fcb7ffb2dc5ae91cde32a913ef17e2831f91aae159e5ba066f8cce5884648", "phash": "edadda1026271d4d", "dhash": "fc92524696160660", "phash_int": -1.3201593528552579e+18, "collected_at": "2026-05-22T04:28:27.933699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-21 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-32-21 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-32-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1691741.0, "mtime": "2002-06-26T19:32:20+00:00", "mtime_ts": 1025119940.0, "ctime": "2002-06-26T19:32:20+00:00", "sha256_file": "96e9d492557f7bc5910859a1525d43b828a0860587c9254dfea131b1ed342204", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:32:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5545", "EXIF ExposureTime": "1/500", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:32:21", "EXIF DateTimeDigitized": "2002:06:26 19:32:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5229/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080811", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5229"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa0b00c9b9a5f9ff5f15e20f094cf2cfbe7e0fb54c5ae3576565ac092c9f79ca", "phash": "d3b4a9745a0caba6", "dhash": "f6ec4ff8dc8ac259", "phash_int": -3.1917399187067587e+18, "collected_at": "2026-05-22T04:28:28.044869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-32-17 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-32-17 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-32-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1587557.0, "mtime": "2002-06-26T19:32:16+00:00", "mtime_ts": 1025119936.0, "ctime": "2002-06-26T19:32:16+00:00", "sha256_file": "12a6e48a63e5a1291c2a967164f419389d62d8daa2d59fe1be8da7ba83a180f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:32:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5098", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:32:17", "EXIF DateTimeDigitized": "2002:06:26 19:32:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4499/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080810", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4499"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb7e289c590c7c1df335a4d1d056f798482a31c1a9ae1e772a76d54ab22aa161", "phash": "f08fc8700757fad0", "dhash": "08d42c4e9e999889", "phash_int": -1.1124501994521244e+18, "collected_at": "2026-05-22T04:28:28.062966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-06 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-06 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-34-06 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-34-06 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1481965.0, "mtime": "2002-06-26T19:34:04+00:00", "mtime_ts": 1025120044.0, "ctime": "2002-06-26T19:34:04+00:00", "sha256_file": "fa7238be0a5da168bc583d0ec015345d450e37e5943490e4bcd88a39ed13ca28", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:34:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4762", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:34:06", "EXIF DateTimeDigitized": "2002:06:26 19:34:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080812", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01eaeabaaa0edb83bbab9db9c76d89060c0146dc73b93183d7da7bab74c8dcb9", "phash": "f3f7147351cc8c11", "dhash": "8c8c8c89898d8c84", "phash_int": -8.672019177193769e+17, "collected_at": "2026-05-22T04:28:28.132968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-15 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-15 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-34-15 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-34-15 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1904739.0, "mtime": "2002-06-26T19:34:14+00:00", "mtime_ts": 1025120054.0, "ctime": "2002-06-26T19:34:14+00:00", "sha256_file": "9599238be0442d3a977e70767d17f5685c618165d2d9cbfbafcd91fad14e7e43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:34:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6196", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:34:15", "EXIF DateTimeDigitized": "2002:06:26 19:34:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2501/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080813", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2501"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85bc345c45a7ae12494d7169cb89e090a780ee3599072512246c76e5fbf29f5a", "phash": "bfe2a73861513332", "dhash": "5d650cd23f317c4e", "phash_int": -4.619946407135989e+18, "collected_at": "2026-05-22T04:28:28.158968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-46-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-46-48 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-46-48 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-46-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1523872.0, "mtime": "2002-06-26T19:46:46+00:00", "mtime_ts": 1025120806.0, "ctime": "2002-06-26T19:46:46+00:00", "sha256_file": "0d1eaaa320f581fe5c7729b4a5ba3d426b06b7b215f2e9e8ac02ca6f07170028", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:46:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4578", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:46:48", "EXIF DateTimeDigitized": "2002:06:26 19:46:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080815", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b5a9325a2a8e36d6fa947a07608b4a54995c57776d45f3095c1cd206e0eb7f2", "phash": "fcf85887f2e0826a", "dhash": "952221892b6666a0", "phash_int": -2.183272410088401e+17, "collected_at": "2026-05-22T04:28:28.219136+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2002-06-26 19-34-21 Canon PowerShot S40.JPG", "file_name": "2002-06-26 19-34-21 Canon PowerShot S40.JPG", "file_stem": "2002-06-26 19-34-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2122059.0, "mtime": "2002-06-26T19:34:20+00:00", "mtime_ts": 1025120060.0, "ctime": "2002-06-26T19:34:20+00:00", "sha256_file": "41e4d554c9ef1e57bcc6e67ef6af0ed231187ee020f2554c7ac4f681f2a01bd4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:26 19:34:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6376", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:26 19:34:21", "EXIF DateTimeDigitized": "2002:06:26 19:34:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "67/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080814", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3350"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "040f17834dfb07597a686b0edf17e2e5c5f7e147e547a497def00aba13053572", "phash": "ffa1a71941523cb4", "dhash": "5a6e2e581e327c4c", "phash_int": -2.6556395875582796e+16, "collected_at": "2026-05-22T04:28:28.230136+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-50-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-50-17 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-50-17 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-50-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1606448.0, "mtime": "2003-06-28T13:33:22+00:00", "mtime_ts": 1056807202.0, "ctime": "2003-06-28T13:33:22+00:00", "sha256_file": "05c0937465a9f4440a6b9f6aff4a012239c491fee1003a8ffed6792d822a2efa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:50:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "3432", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:50:17", "EXIF DateTimeDigitized": "2003:06:26 17:50:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "16", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "978b56f94e4e14d6b951c9cc8181606fd72874dea922325023ca5fd20883ce14", "phash": "93ed0c52ed12df21", "dhash": "ffcf4b4f8848dcfe", "phash_int": -7.787554630349431e+18, "collected_at": "2026-05-22T04:28:28.344141+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-07 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-07 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1474654.0, "mtime": "2003-06-26T16:51:06+00:00", "mtime_ts": 1056646266.0, "ctime": "2003-06-26T16:51:06+00:00", "sha256_file": "06067fd7170de1c1ba7aff3b23f27862b1e171a06f45537e5b0e521e35e524eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3792", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:07", "EXIF DateTimeDigitized": "2003:06:26 17:51:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "346", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7594161528eadf6c40b08923488680eab2a7852359c31c4188ecb6bf2059382a", "phash": "c5f846314ef18e27", "dhash": "000000824258de62", "phash_int": -4.1815150764217103e+18, "collected_at": "2026-05-22T04:28:28.351140+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-11 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-11 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1711333.0, "mtime": "2003-06-26T16:51:10+00:00", "mtime_ts": 1056646270.0, "ctime": "2003-06-26T16:51:10+00:00", "sha256_file": "a3b5bbf91ab83703b47fed36155927656ee32334ef872ac6a863d1f3f052a245", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4188", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:11", "EXIF DateTimeDigitized": "2003:06:26 17:51:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "444ca58f9c71aeeb756211ab0385b78c00137e385bec112a8ae2ff036bb31757", "phash": "e8d7760079c8e61b", "dhash": "0000009291c7b315", "phash_int": -1.6687353925021926e+18, "collected_at": "2026-05-22T04:28:28.485561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-16 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-16 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-16 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-16 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1911114.0, "mtime": "2003-06-26T16:51:14+00:00", "mtime_ts": 1056646274.0, "ctime": "2003-06-26T16:51:14+00:00", "sha256_file": "2f465cb665730047b71c2333c93d380d4b69f9d3ff0b35866f533ec992d0e2d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4544", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:16", "EXIF DateTimeDigitized": "2003:06:26 17:51:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e003b92fb1744ae474ecf5080d85a629f5003c113da60b678588c9beca7c181", "phash": "dde04b374079c7a8", "dhash": "80001038bc7c3373", "phash_int": -2.4588826958672835e+18, "collected_at": "2026-05-22T04:28:28.510557+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-20 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-20 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2067251.0, "mtime": "2003-06-26T16:51:18+00:00", "mtime_ts": 1056646278.0, "ctime": "2003-06-26T16:51:18+00:00", "sha256_file": "43eed6bb10952475da8c75dcafbd5d6233c8b37f3fd8ad6476ad4cb1a3ee45f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4778", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:20", "EXIF DateTimeDigitized": "2003:06:26 17:51:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "855a389a71718a9ee192a93e3bf12ad8aca0d042ae0cc272832249ef77945c76", "phash": "d5a21d46395ee196", "dhash": "a0e0c2c2c4c07030", "phash_int": -3.052845409956339e+18, "collected_at": "2026-05-22T04:28:28.575174+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-25 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-25 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-25 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-25 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2169327.0, "mtime": "2003-06-26T16:51:24+00:00", "mtime_ts": 1056646284.0, "ctime": "2003-06-26T16:51:24+00:00", "sha256_file": "c6a5652c71ee0433bbe78d03f619fb171b2d36434c20aa9a21c8cab39228aa11", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4757", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:25", "EXIF DateTimeDigitized": "2003:06:26 17:51:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "643857199ec481139e73039613deac18f44954f1f46496f679df9dd77005fbab", "phash": "b7d82843943d8ae7", "dhash": "a4c078bc4c4b0e0f", "phash_int": -5.199361499084256e+18, "collected_at": "2026-05-22T04:28:28.604405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-34 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-34 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1769472.0, "mtime": "2003-06-26T16:51:32+00:00", "mtime_ts": 1056646292.0, "ctime": "2003-06-26T16:51:32+00:00", "sha256_file": "63cd13488415fffb1a43dbae563d9566d610f340a6420f3810931acc86793e47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5305", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:34", "EXIF DateTimeDigitized": "2003:06:26 17:51:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "301", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "pixel_hash_error": "image file is truncated (42 bytes not processed)", "sha256_pixels": null, "phash": null, "dhash": null, "phash_int": null, "collected_at": "2026-05-22T04:28:28.661406+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-51-29 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-51-29 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-51-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2181160.0, "mtime": "2003-06-26T16:51:28+00:00", "mtime_ts": 1056646288.0, "ctime": "2003-06-26T16:51:28+00:00", "sha256_file": "207d11a70e08c86fd59c97c51be4575a2512e956fc8e9e6a3bfcf4fc34da99b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5012", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:29", "EXIF DateTimeDigitized": "2003:06:26 17:51:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d75fa7e9f1a28c5a4007dcbb3e97a5e598ae27f7e9bdca51f30a5796acf6ef22", "phash": "b7c82c6b5435bac2", "dhash": "e4c07cac4c0b0f2e", "phash_int": -5.203860529940678e+18, "collected_at": "2026-05-22T04:28:28.663407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-38 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-56-38 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-56-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2374646.0, "mtime": "2003-06-26T16:56:36+00:00", "mtime_ts": 1056646596.0, "ctime": "2003-06-26T16:56:36+00:00", "sha256_file": "244a45b8b239715bb19bce10767f2dacf51bcaf414548df0effc4c2be8d0acce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:56:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8450", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:56:38", "EXIF DateTimeDigitized": "2003:06:26 17:56:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "311/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2488"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a457bdb26d3f9eec908b7ccc8e13893f5c89e869d0248fab233f30931aca8ad", "phash": "c5e03c33e31cc8db", "dhash": "8185d0a0485270e4", "phash_int": -4.1882814599032484e+18, "collected_at": "2026-05-22T04:28:28.831591+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-27 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-56-27 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-56-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2780376.0, "mtime": "2003-06-26T16:56:26+00:00", "mtime_ts": 1056646586.0, "ctime": "2003-06-26T16:56:26+00:00", "sha256_file": "b751e84c7303d4f106b1d38c95b5acb8bc66b73b172678cda96316189e2a604f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:56:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8446", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:56:27", "EXIF DateTimeDigitized": "2003:06:26 17:56:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9586157deb83c93249f4e06ce5d311d6d78b1a7053f560171c98f28251b6f9f5", "phash": "c6e1e1f91cee3103", "dhash": "c6c6e064e0e363e1", "phash_int": -4.115760124391444e+18, "collected_at": "2026-05-22T04:28:28.834589+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-26 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-03-26 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-03-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1703936.0, "mtime": "2003-06-26T19:03:24+00:00", "mtime_ts": 1056654204.0, "ctime": "2003-06-26T19:03:24+00:00", "sha256_file": "826419908b77780007db6a73bd220422858ce5b7eb4a65a26c336f4afd52c2b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:03:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6504", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:03:26", "EXIF DateTimeDigitized": "2003:06:26 20:03:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "pixel_hash_error": "image file is truncated (42 bytes not processed)", "sha256_pixels": null, "phash": null, "dhash": null, "phash_int": null, "collected_at": "2026-05-22T04:28:28.925592+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-51 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 17-56-51 Canon PowerShot S40.JPG", "file_name": "2003-06-26 17-56-51 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 17-56-51 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2123942.0, "mtime": "2003-06-26T16:56:50+00:00", "mtime_ts": 1056646610.0, "ctime": "2003-06-26T16:56:50+00:00", "sha256_file": "247727c130f79c7fa3111b48a49af23102bec8bdb8ec093ebb89c7aee5ea8674", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:56:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8939", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:56:51", "EXIF DateTimeDigitized": "2003:06:26 17:56:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "381/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3048"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f606f31ce3d365db9effdad68492c877ff8b1a9c7fd90aa3d2032e8fc7a3a99", "phash": "c4e2c736f037824f", "dhash": "85c5c396c2c246d6", "phash_int": -4.259623258766737e+18, "collected_at": "2026-05-22T04:28:28.961757+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-36 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-03-36 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-03-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1680128.0, "mtime": "2003-06-26T19:03:34+00:00", "mtime_ts": 1056654214.0, "ctime": "2003-06-26T19:03:34+00:00", "sha256_file": "78551e98a3197b1cd04c95c56ddc4a49119a0d2073db89849593f9d712d73bfe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:03:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6753", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:03:36", "EXIF DateTimeDigitized": "2003:06:26 20:03:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "accee5d9e23a807becbb9ea7df1dbfe3bfa443c7644d1fdf7f27389df90126ed", "phash": "c7efd985d1100e87", "dhash": "624b69a8ea6fac98", "phash_int": -4.0397711719666775e+18, "collected_at": "2026-05-22T04:28:29.070326+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-03-42 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-03-42 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-03-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1629738.0, "mtime": "2003-06-26T19:03:40+00:00", "mtime_ts": 1056654220.0, "ctime": "2003-06-26T19:03:40+00:00", "sha256_file": "55e23e4762e83fcbbfd15ccb125494a2454eb94dc88905b490501ae1481e54c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:03:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6689", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:03:42", "EXIF DateTimeDigitized": "2003:06:26 20:03:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4772f8a892f4b85b4ad1879aa09b32b277c8be54e54997dae0457bdd8da774a3", "phash": "c7efd985d0502987", "dhash": "426b6dacee6f6c90", "phash_int": -4.039771171979253e+18, "collected_at": "2026-05-22T04:28:29.164497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-04-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-04-01 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-04-01 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-04-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1570494.0, "mtime": "2003-06-26T19:04:00+00:00", "mtime_ts": 1056654240.0, "ctime": "2003-06-26T19:04:00+00:00", "sha256_file": "35d5ecc18b7e93af4ffbce523a860baf3ae101a63131cf40a4464f43c16621d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:04:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6743", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:04:01", "EXIF DateTimeDigitized": "2003:06:26 20:04:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddde196afee4285d4ca05cf069bc2a453888929e7a70fa3ca6b1dc967fae5287", "phash": "96d29141693b5e9e", "dhash": "088c6d73636d6eae", "phash_int": -7.578835512786723e+18, "collected_at": "2026-05-22T04:28:29.219985+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-04-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-04-14 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-04-14 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-04-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1526162.0, "mtime": "2003-06-26T19:04:12+00:00", "mtime_ts": 1056654252.0, "ctime": "2003-06-26T19:04:12+00:00", "sha256_file": "940f900565344763d07fafb80d9dd1962d931ff766b8463c06831afdcad0b8ba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:04:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6359", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:04:14", "EXIF DateTimeDigitized": "2003:06:26 20:04:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f2fd64213dd31dae92287d7ce08c06627eee990c277485aa41447e4308ca11a", "phash": "ce8ff1141a969571", "dhash": "70616365a4248cbb", "phash_int": -3.5623637115790566e+18, "collected_at": "2026-05-22T04:28:29.267781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-25 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-25 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-28-25 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-28-25 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1457701.0, "mtime": "2003-06-26T19:28:24+00:00", "mtime_ts": 1056655704.0, "ctime": "2003-06-26T19:28:24+00:00", "sha256_file": "ac56ec9194bbb3ecb87291c637b38c383bb30d9f2feef809329ed7060edea49f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:28:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5773", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:28:25", "EXIF DateTimeDigitized": "2003:06:26 20:28:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[29, 96, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "97", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8e3aaa59829c4cb25faeced58d106c427d0d6acded734520c1747e80d3363e0", "phash": "ffffdeaf20200041", "dhash": "55541687c7671335", "phash_int": -36631237099455.0, "collected_at": "2026-05-22T04:28:29.304961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-31 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-28-31 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-28-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1827639.0, "mtime": "2003-06-26T19:28:30+00:00", "mtime_ts": 1056655710.0, "ctime": "2003-06-26T19:28:30+00:00", "sha256_file": "74b567713ad4b234a09869ae382cdb7f10ded40d3e605c60159c76d32717ac09", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:28:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7513", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:28:31", "EXIF DateTimeDigitized": "2003:06:26 20:28:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1861d76904a0124f2332fdb108c9e1c8d3b6e1f87a230f45d298db201423111", "phash": "e5e7de8e2461ac11", "dhash": "54548687472796ba", "phash_int": -1.8802896173267896e+18, "collected_at": "2026-05-22T04:28:29.364027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-36 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-28-36 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-28-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2189963.0, "mtime": "2003-06-26T19:28:34+00:00", "mtime_ts": 1056655714.0, "ctime": "2003-06-26T19:28:34+00:00", "sha256_file": "c1c75b6846858df3d5a7a146097aaeffd4dd02532be5c639d67bb622930be60b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:28:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7403", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:28:36", "EXIF DateTimeDigitized": "2003:06:26 20:28:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0852fdbad6cce286f8c31241cbe3a2252cd4e3cc5821f9539f207e7291ef0586", "phash": "899daad8c1d75859", "dhash": "32237a52d391d5cb", "phash_int": -8.530474271228078e+18, "collected_at": "2026-05-22T04:28:29.412155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-52 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-28-52 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-28-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1473133.0, "mtime": "2003-06-26T19:28:50+00:00", "mtime_ts": 1056655730.0, "ctime": "2003-06-26T19:28:50+00:00", "sha256_file": "3621a91fb360a0c959ec1d2d6b070f3efd34955ac9a84cb56e31559a929341bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:28:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5943", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:28:52", "EXIF DateTimeDigitized": "2003:06:26 20:28:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2439/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12195"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2713702e2efa5154eab8eedd804119d2a4bfd5ac514bfd91381fe0198654e04e", "phash": "ebac94d4d07c3c07", "dhash": "3403230b0b0b4bd9", "phash_int": -1.4646321370504735e+18, "collected_at": "2026-05-22T04:28:29.479235+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-28-42 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-28-42 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-28-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1629117.0, "mtime": "2003-06-26T19:28:40+00:00", "mtime_ts": 1056655720.0, "ctime": "2003-06-26T19:28:40+00:00", "sha256_file": "2fe29957b631469fedbc030cbb31825c52710d97e382e127d25c7cfb91275602", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:28:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6433", "EXIF ExposureTime": "1/10", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:28:42", "EXIF DateTimeDigitized": "2003:06:26 20:28:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "397/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3176"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa5cb7e56ddcc1ac137d2fe27876eada2491c6f6240f79a866fa8a19953e7b61", "phash": "9e03258eebf4a299", "dhash": "e5692d756124a6b6", "phash_int": -7.060758495012543e+18, "collected_at": "2026-05-22T04:28:29.495236+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-46-58 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-46-58 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-46-58 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-46-58 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2675068.0, "mtime": "2003-06-26T19:46:56+00:00", "mtime_ts": 1056656816.0, "ctime": "2003-06-26T19:46:56+00:00", "sha256_file": "96b523020dd88cb3f85619eb4e1e2e5b9250efd6e058d6efe8a977cfb2621ae4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:46:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7534", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:46:58", "EXIF DateTimeDigitized": "2003:06:26 20:46:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1597e32a054e453e09b44c814dd9ef38bc5750b59480892b57969f851b5eba69", "phash": "dc678ec8e52b60b1", "dhash": "e064f652f2b179b4", "phash_int": -2.5649244692747796e+18, "collected_at": "2026-05-22T04:28:29.605242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-19 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-19 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-47-19 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-47-19 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2329209.0, "mtime": "2003-06-26T19:47:18+00:00", "mtime_ts": 1056656838.0, "ctime": "2003-06-26T19:47:18+00:00", "sha256_file": "80378294368d93f07111a5ed6e0d1acf42414d26cdb02eea36857bae01ae954f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:47:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5736", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:47:19", "EXIF DateTimeDigitized": "2003:06:26 20:47:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a051e9fc507e82979b6de2439d80d8d88269f6a9f4a8d4163675105be85cfc80", "phash": "9393939584a5ed8d", "dhash": "d8d878253276d0b0", "phash_int": -7.812738658172802e+18, "collected_at": "2026-05-22T04:28:29.608241+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-34 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-47-34 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-47-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2226581.0, "mtime": "2003-06-26T19:47:32+00:00", "mtime_ts": 1056656852.0, "ctime": "2003-06-26T19:47:32+00:00", "sha256_file": "51ba520ebae08b9870dd6b94b297defccdc43fe596436a66fb6c4f8b65f212a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:47:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5645", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:47:34", "EXIF DateTimeDigitized": "2003:06:26 20:47:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2d577113778f4b4f1e320dfc63b9b4a3311c0ecd46b5d328cdbe6b51a144337", "phash": "ce66cecec4cfc0c0", "dhash": "60645642b4a168f0", "phash_int": -3.5739418668113756e+18, "collected_at": "2026-05-22T04:28:29.725528+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-29 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-47-29 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-47-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2148354.0, "mtime": "2003-06-26T19:47:28+00:00", "mtime_ts": 1056656848.0, "ctime": "2003-06-26T19:47:28+00:00", "sha256_file": "1fc695b520db0643df2df3091df7cdd7d4403fcbc450adae1a96b049be482d9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:47:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5218", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:47:29", "EXIF DateTimeDigitized": "2003:06:26 20:47:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "600a15565b2d383260b0223946e12e745d5bc4ce2a9542f26358022e20cd4f27", "phash": "969697979185ad89", "dhash": "ec6c30b0936af820", "phash_int": -7.59571704427645e+18, "collected_at": "2026-05-22T04:28:29.736534+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-45 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-47-45 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-47-45 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-47-45 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1623693.0, "mtime": "2003-06-26T19:47:44+00:00", "mtime_ts": 1056656864.0, "ctime": "2003-06-26T19:47:44+00:00", "sha256_file": "f5c2ddda712df8e8203dd7a25d5ee4c0cfb2d70f17b75356645a3940d2a4c83e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:47:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4409", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:47:45", "EXIF DateTimeDigitized": "2003:06:26 20:47:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "421a46ac6caa1ddc7781adc1e0f80726e7d9f4b73137d8bf9d0123bfdb454df3", "phash": "8e8f87ae8da06a71", "dhash": "666261fbb3e195b0", "phash_int": -8.174165614884001e+18, "collected_at": "2026-05-22T04:28:29.811539+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-48-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 20-48-04 Canon PowerShot S40.JPG", "file_name": "2003-06-26 20-48-04 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 20-48-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 3024949.0, "mtime": "2003-06-26T19:48:02+00:00", "mtime_ts": 1056656882.0, "ctime": "2003-06-26T19:48:02+00:00", "sha256_file": "79b0a4b008320d135e534b05dd7b19d4fe9b52860e1ee6b51108d3f4a35bd682", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:48:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7618", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:48:04", "EXIF DateTimeDigitized": "2003:06:26 20:48:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea5fb21e4ba01425aa474d02f4037ee3aa52eaa774a45e926acd4d099524e8f1", "phash": "8787968339d37a64", "dhash": "ecee67d3f370c4b0", "phash_int": -8.680804266378298e+18, "collected_at": "2026-05-22T04:28:29.837535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-27-44 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-27-44 Canon PowerShot S40.JPG", "file_name": "2003-06-26 21-27-44 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 21-27-44 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2627470.0, "mtime": "2003-06-26T20:27:42+00:00", "mtime_ts": 1056659262.0, "ctime": "2003-06-26T20:27:42+00:00", "sha256_file": "36e51d05b7ce39059556d8e5e51174515f5747233d488d37cd4ecd4a231d6022", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 21:27:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6750", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 21:27:44", "EXIF DateTimeDigitized": "2003:06:26 21:27:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f164cc112b17bd42019c90703324fe060daee277d4bf21edd304db3033a2b86", "phash": "8fe28ccb35c66a25", "dhash": "f1f9654c5a7b70b4", "phash_int": -8.078739977140803e+18, "collected_at": "2026-05-22T04:28:29.969811+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-22 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-22 Canon PowerShot S40.JPG", "file_name": "2003-06-26 21-28-22 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 21-28-22 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1903277.0, "mtime": "2003-06-26T20:28:20+00:00", "mtime_ts": 1056659300.0, "ctime": "2003-06-26T20:28:20+00:00", "sha256_file": "c9190bbb57ab4990c1a69188c460957408e72cdaf5fe67cc029229e2839db6f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 21:28:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6139", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 21:28:22", "EXIF DateTimeDigitized": "2003:06:26 21:28:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5aaa7fb451d501d6d617f1fc2361768a1343a19b69a698183c3b752602c6fc0", "phash": "d16f8c5a1752ca2d", "dhash": "f162ca4859d194d6", "phash_int": -3.3553088788014833e+18, "collected_at": "2026-05-22T04:28:29.975812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-29 Canon PowerShot S40.JPG", "file_name": "2003-06-26 21-28-29 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 21-28-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1813356.0, "mtime": "2003-06-26T20:28:28+00:00", "mtime_ts": 1056659308.0, "ctime": "2003-06-26T20:28:28+00:00", "sha256_file": "d83455b72abead25803ce4cb8befe565398d75706c4b44fd1e980dffd509295e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 21:28:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6931", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 21:28:29", "EXIF DateTimeDigitized": "2003:06:26 21:28:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "afcac6001a97d86f4928d1c4cb153d75215904d237e5e0a922d24ff1b887098a", "phash": "9353c1ae05ffea20", "dhash": "d9d99938bd256eda", "phash_int": -7.830702373898032e+18, "collected_at": "2026-05-22T04:28:30.077584+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-38 Canon PowerShot S40.JPG", "file_name": "2003-06-26 21-28-38 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 21-28-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1902264.0, "mtime": "2003-06-26T20:28:36+00:00", "mtime_ts": 1056659316.0, "ctime": "2003-06-26T20:28:36+00:00", "sha256_file": "5ec4bb2e686ca1845c9821ba88891fa545352e7596ac401ba52ce11bdefb0a2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 21:28:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6778", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 21:28:38", "EXIF DateTimeDigitized": "2003:06:26 21:28:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71ea89c78a8793a5627cf1c1be8b62a03b6aeb6f33886143ff99f0f8062db8ab", "phash": "923c95c6ec31fa45", "dhash": "7cfc3cbbedc9c8d8", "phash_int": -7.909282163970672e+18, "collected_at": "2026-05-22T04:28:30.135669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-44 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\26\\2003-06-26 21-28-44 Canon PowerShot S40.JPG", "file_name": "2003-06-26 21-28-44 Canon PowerShot S40.JPG", "file_stem": "2003-06-26 21-28-44 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1847500.0, "mtime": "2003-06-26T20:28:42+00:00", "mtime_ts": 1056659322.0, "ctime": "2003-06-26T20:28:42+00:00", "sha256_file": "de3e1860d72b4e514c8148d7f22401dcd921faa232f1aaa66c57dd2317ae0356", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 21:28:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5734", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 21:28:44", "EXIF DateTimeDigitized": "2003:06:26 21:28:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1515206dc2bd49eb09826f01a319a726ea5d179ff9c105e317954ff4b0297133", "phash": "90235cef119eed4c", "dhash": "dece85cdbc343838", "phash_int": -8.060496726200489e+18, "collected_at": "2026-05-22T04:28:30.170670+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-08-06 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-08-06 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-08-06 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-08-06 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1822841.0, "mtime": "2002-06-27T00:08:04+00:00", "mtime_ts": 1025136484.0, "ctime": "2002-06-27T00:08:04+00:00", "sha256_file": "0811cd3e2474276719377410c72cc6a5de35aeb002dcb466297a86f302456d75", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:08:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5329", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:08:06", "EXIF DateTimeDigitized": "2002:06:27 00:08:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1643/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080817", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1643"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf4c8c08da4060135403b4c85368bc5d07e0f62bac76cf211a5cb54a8dbb89e3", "phash": "e9f46549e4dac8c8", "dhash": "c7ce0d25b33b6b63", "phash_int": -1.588533400508381e+18, "collected_at": "2026-05-22T04:28:30.288189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-07-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-07-35 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-07-35 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-07-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1817124.0, "mtime": "2002-06-27T00:07:34+00:00", "mtime_ts": 1025136454.0, "ctime": "2002-06-27T00:07:34+00:00", "sha256_file": "cba606f9dc910d08ddec0cf9093e7aea323a1c59b28cc6950204dfd126916f4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:07:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5222", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:07:35", "EXIF DateTimeDigitized": "2002:06:27 00:07:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1753/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080816", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1753"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "07a39e93f742ceb83ecfd050506f9afbb0109215f594afffba097807d3d1cf05", "phash": "eab5254b616d3472", "dhash": "cfa595bbb9313135", "phash_int": -1.5342790923624643e+18, "collected_at": "2026-05-22T04:28:30.309189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-08-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-08-23 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-08-23 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-08-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1841325.0, "mtime": "2002-06-27T00:08:22+00:00", "mtime_ts": 1025136502.0, "ctime": "2002-06-27T00:08:22+00:00", "sha256_file": "c2713c321b91aa9cf23996f0649c3db645c4a4836be9964e5c55566737a8e6c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:08:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:08:23", "EXIF DateTimeDigitized": "2002:06:27 00:08:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "979/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080818", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8602a066d5114b3e2db42c7a4093b668ec36c7a9b318dfb4acfcbb987f51406d", "phash": "9f036e682c6df419", "dhash": "e7e858787a902222", "phash_int": -6.98862080304782e+18, "collected_at": "2026-05-22T04:28:30.366192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-09-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-09-03 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-09-03 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-09-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1105547.0, "mtime": "2002-06-27T00:09:02+00:00", "mtime_ts": 1025136542.0, "ctime": "2002-06-27T00:09:02+00:00", "sha256_file": "8d257ad6422608ffd25c1eec5c11b01c525b8f9359453811bf25e4e218e0c3ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:09:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3974", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:09:03", "EXIF DateTimeDigitized": "2002:06:27 00:09:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "246/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "90028/5", "EXIF FocalPlaneYResolution": "90028/5", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080819", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "635", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1968"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "785d1e1e73bc163012fd1ddc0de83b831c214bb7d56167fb015e6bed8ff9828a", "phash": "d178687c6f334631", "dhash": "9390d8d8dcdcdcce", "phash_int": -3.3528150389264696e+18, "collected_at": "2026-05-22T04:28:30.388403+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-09-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-09-12 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-09-12 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-09-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1001068.0, "mtime": "2002-06-27T00:09:10+00:00", "mtime_ts": 1025136550.0, "ctime": "2002-06-27T00:09:10+00:00", "sha256_file": "0fc6e7c42f4fb2ca05b55a57877886fdd7f0322aabf7983f0b147cde22e21a3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:09:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3778", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:09:12", "EXIF DateTimeDigitized": "2002:06:27 00:09:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "157/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "90028/5", "EXIF FocalPlaneYResolution": "90028/5", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080820", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "635", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1570"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8e257e030b9afc1224fbfb87c40846d84c63d693e0a2eaab0676ff66dfc8062", "phash": "d37062712e276e71", "dhash": "9d98cc4e5a5a5e4e", "phash_int": -3.210958296070001e+18, "collected_at": "2026-05-22T04:28:30.454471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-10-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-10-27 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-10-27 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-10-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1801708.0, "mtime": "2002-06-27T00:10:26+00:00", "mtime_ts": 1025136626.0, "ctime": "2002-06-27T00:10:26+00:00", "sha256_file": "5b3725d6a554331d952a86c9500e0ca2c32fa4970a0475b4e8b5ea13533ee880", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:10:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5215", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:10:27", "EXIF DateTimeDigitized": "2002:06:27 00:10:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080823", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eefbf64675e91c4dae4be44f0165f4659bff1a2344e312d81292cf1198da2c9a", "phash": "dc22a213b9cdb363", "dhash": "af0d203218486002", "phash_int": -2.584325030551899e+18, "collected_at": "2026-05-22T04:28:30.470540+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-23 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-11-23 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-11-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2241248.0, "mtime": "2002-06-27T00:11:22+00:00", "mtime_ts": 1025136682.0, "ctime": "2002-06-27T00:11:22+00:00", "sha256_file": "06d4683bd222c24d601c36ce914f9b5db725f308e739acc964f7ce16d15b3517", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:11:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5155", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:11:23", "EXIF DateTimeDigitized": "2002:06:27 00:11:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080827", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65494", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d0d6ad1dd71da3010259ceec82ba86194a6ab792d150198bf35f6c1b0e28d8ed", "phash": "bbb485c1cee34643", "dhash": "1c3c19191999d9d9", "phash_int": -4.921161425362926e+18, "collected_at": "2026-05-22T04:28:30.593758+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-10-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-10-34 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-10-34 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-10-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1799863.0, "mtime": "2002-06-27T00:10:32+00:00", "mtime_ts": 1025136632.0, "ctime": "2002-06-27T00:10:32+00:00", "sha256_file": "6537e42fbb3701cc119d1ffb8648bd61bced830b236737cc5f986fb541a25f26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:10:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:10:34", "EXIF DateTimeDigitized": "2002:06:27 00:10:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080824", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91fd9a83525c7a584f8789ad9ff88cdb6644c181fa7693137ee5ae138c735a6a", "phash": "df36a283b8cc82e3", "dhash": "2d0d603018c84218", "phash_int": -2.3625222678844206e+18, "collected_at": "2026-05-22T04:28:30.607915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-37 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-37 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-11-37 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-11-37 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2325832.0, "mtime": "2002-06-27T00:11:36+00:00", "mtime_ts": 1025136696.0, "ctime": "2002-06-27T00:11:36+00:00", "sha256_file": "39c41ea64dccc36e2080f2bd75fd4918e4920bb0d5d48cbc080233448cb0ce8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:11:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4590", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:11:37", "EXIF DateTimeDigitized": "2002:06:27 00:11:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080829", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4db12546a6382611fe28e9f37aef8e6d6e55a12f42a52243cb96f9e1413e3658", "phash": "d46b56e2a5d40f0d", "dhash": "cdc1739797bcbcbc", "phash_int": -3.140320783716053e+18, "collected_at": "2026-05-22T04:28:30.688161+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-11-31 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-11-31 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-11-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2353834.0, "mtime": "2002-06-27T00:11:30+00:00", "mtime_ts": 1025136690.0, "ctime": "2002-06-27T00:11:30+00:00", "sha256_file": "2a4d7bd2e5e504fad3abfc42bbefae76f34826fc4cc90e660ebfd6b9266fa8e2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:11:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4907", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:11:31", "EXIF DateTimeDigitized": "2002:06:27 00:11:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "201/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080828", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "19", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1608"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "055f76d70592d8652eecd647d8184a17632ab61221c38b0f0322ed3d6e7cf3e2", "phash": "cacdb53625362475", "dhash": "547171f1f1e94dcd", "phash_int": -3.8332084636652575e+18, "collected_at": "2026-05-22T04:28:30.711248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-10 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-10 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-12-10 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-12-10 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2204463.0, "mtime": "2002-06-27T00:12:08+00:00", "mtime_ts": 1025136728.0, "ctime": "2002-06-27T00:12:08+00:00", "sha256_file": "e19657daf7b1839e71b32295ed7a357d1d1aeba4b74899f3185a5d4259779409", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:12:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4663", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:12:10", "EXIF DateTimeDigitized": "2002:06:27 00:12:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080831", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "874a7f85d6bfb00c2693a8f4a25d8847e62a8aa1f879032ed49dcfcc0c39fdc2", "phash": "e5e79b92029a22db", "dhash": "cec68686c6c49cfe", "phash_int": -1.8803632679927063e+18, "collected_at": "2026-05-22T04:28:30.826552+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-01 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-12-01 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-12-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2211377.0, "mtime": "2002-06-27T00:12:00+00:00", "mtime_ts": 1025136720.0, "ctime": "2002-06-27T00:12:00+00:00", "sha256_file": "ad210f52fbdac586a02b0323b5ec033ab815835aa63144385f1d8908e47735a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:12:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5041", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:12:01", "EXIF DateTimeDigitized": "2002:06:27 00:12:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080830", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c30866f14e89f5efa81465b39a002c5758660cee3fd157d3689c6b6a8e09c07", "phash": "f6e1899e818ecc4e", "dhash": "8e8e8ecc4c2c2ce8", "phash_int": -6.570927567479244e+17, "collected_at": "2026-05-22T04:28:30.843554+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-28 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\06\\27\\2002-06-27 00-12-28 Canon PowerShot S40.JPG", "file_name": "2002-06-27 00-12-28 Canon PowerShot S40.JPG", "file_stem": "2002-06-27 00-12-28 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2302722.0, "mtime": "2002-06-27T00:12:26+00:00", "mtime_ts": 1025136746.0, "ctime": "2002-06-27T00:12:26+00:00", "sha256_file": "bf19371b2afa268661a9b6db31c5bae08227b3c124e67286886789e42d181e3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:06:27 00:12:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4913", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:06:27 00:12:28", "EXIF DateTimeDigitized": "2002:06:27 00:12:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080832", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "400", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e62acf900e65a40d18e57b714ba5a7b3901b83c89d125d6d126d1fbe5d60012", "phash": "e5e69a9612f0cd51", "dhash": "c7c6c686c646965e", "phash_int": -1.8806458250270605e+18, "collected_at": "2026-05-22T04:28:30.932599+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-03 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-05-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-05-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1455495.0, "mtime": "2002-07-07T20:05:02+00:00", "mtime_ts": 1026072302.0, "ctime": "2002-07-07T20:05:02+00:00", "sha256_file": "608a0c135561421e0e24fab96168a5a54d80d6ac39f4c870fe7d91dd8bb371b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:05:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4728", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:05:03", "EXIF DateTimeDigitized": "2002:07:07 20:05:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04b45b0a5ca2cd602916d92bbb5ceaabb2ab641b37fbd9d8e1644bad203056ff", "phash": "feae81903c6f3216", "dhash": "320c4d353598e0b0", "phash_int": -9.499608563900773e+16, "collected_at": "2026-05-22T04:28:30.965566+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-14 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-05-14 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-05-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1704998.0, "mtime": "2002-07-07T20:05:12+00:00", "mtime_ts": 1026072312.0, "ctime": "2002-07-07T20:05:12+00:00", "sha256_file": "807e27ba9105fbb7e469f6b77f2e3f2862f36741ee66aa42dad45e5a87d70662", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:05:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5158", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:05:14", "EXIF DateTimeDigitized": "2002:07:07 20:05:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44ac523a138b0f4f625d0474b47666cfde45f0eab666b6d3f6853955a4e2022a", "phash": "eeee81911d6f2252", "dhash": "00cd4d757598f0ba", "phash_int": -1.2299031879615032e+18, "collected_at": "2026-05-22T04:28:31.128565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-42 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-05-42 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-05-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2791687.0, "mtime": "2002-07-07T20:57:18+00:00", "mtime_ts": 1026075438.0, "ctime": "2002-07-07T20:57:18+00:00", "sha256_file": "ef438ea9ca6506f0708d1d4354084223291918fd47c961249fc1b25280579b4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:05:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7171", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:05:42", "EXIF DateTimeDigitized": "2002:07:07 20:05:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3bf8b181b35bdea11075116495c473743e73bdb23cd8e37fd617123d490b5d8", "phash": "f9ff96e038c49281", "dhash": "0c58601b9b9be0e9", "phash_int": -4.324611494350309e+17, "collected_at": "2026-05-22T04:28:31.209646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-05-52 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-05-52 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-05-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2900264.0, "mtime": "2002-07-07T20:57:24+00:00", "mtime_ts": 1026075444.0, "ctime": "2002-07-07T20:57:24+00:00", "sha256_file": "afd5bdace396e062d744b2bba605b76b5239594c01d107811abd7e6b81e1a32a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:05:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7840", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:05:52", "EXIF DateTimeDigitized": "2002:07:07 20:05:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "846efcdc0278fa77eadce6d356ab5debb71551d7707535acccbde10cc9dae385", "phash": "a7d8d8d206d8b2da", "dhash": "80a24bc74f4f93cb", "phash_int": -6.352088877836488e+18, "collected_at": "2026-05-22T04:28:31.275326+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-12 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-12 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2568935.0, "mtime": "2002-07-07T20:57:34+00:00", "mtime_ts": 1026075454.0, "ctime": "2002-07-07T20:57:34+00:00", "sha256_file": "83c5b2f0a40db858e43ae3680a4963fe2e9a5942dd5a928c713b38bc2adee20f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7680", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:06:12", "EXIF DateTimeDigitized": "2002:07:07 20:06:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6ad20580b939220c861c67d46c63ec41454e2319ca8e9b1464962ff16175b84b", "phash": "c8ecbdbb0a7c424a", "dhash": "3726e4c1c1c998dd", "phash_int": -3.9685885605878e+18, "collected_at": "2026-05-22T04:28:31.356453+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-17 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-17 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2749402.0, "mtime": "2002-07-07T20:57:36+00:00", "mtime_ts": 1026075456.0, "ctime": "2002-07-07T20:57:36+00:00", "sha256_file": "da825a9cabb104ecaa27f472a090b6133b88c9486d397c0b8c35a641b52b940e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8286", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:06:17", "EXIF DateTimeDigitized": "2002:07:07 20:06:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de1b8fea0ac90646c5566bb6765ee0e262faa1b9259ab01196363d94936d1b70", "phash": "abaa9080cb9c767e", "dhash": "b1732b535353fac8", "phash_int": -6.07688586433682e+18, "collected_at": "2026-05-22T04:28:31.425549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-23 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-23 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2894894.0, "mtime": "2002-07-07T20:57:38+00:00", "mtime_ts": 1026075458.0, "ctime": "2002-07-07T20:57:38+00:00", "sha256_file": "dd678e60ea95524fb4ab4f939e170d6087183f52d9625e71ca50ea04f0aa7056", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8261", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:06:23", "EXIF DateTimeDigitized": "2002:07:07 20:06:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f64ce7e3cb688da5269fe2155f199842f765c4f5787845e2e0af5ae44a6970e", "phash": "8c8efbfc26f11411", "dhash": "676767666676d291", "phash_int": -8.318434401303064e+18, "collected_at": "2026-05-22T04:28:31.484558+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-34 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-34 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2781267.0, "mtime": "2002-07-07T20:57:40+00:00", "mtime_ts": 1026075460.0, "ctime": "2002-07-07T20:57:40+00:00", "sha256_file": "9f09db349a701d91885b29a2f0fbd063348f2de461c55dc686847916b2f9c3e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7602", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:06:34", "EXIF DateTimeDigitized": "2002:07:07 20:06:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0cfb213875f577bc33f3a01540041f3aa737c25ef0f68449870d57c62423baf", "phash": "b08bcbf4743218dd", "dhash": "8dc99d9d9c8c9c98", "phash_int": -5.725258250489555e+18, "collected_at": "2026-05-22T04:28:31.550790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-40 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-40 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-40 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-40 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2354733.0, "mtime": "2002-07-07T20:57:42+00:00", "mtime_ts": 1026075462.0, "ctime": "2002-07-07T20:57:42+00:00", "sha256_file": "5aa30ec14ffc1887e6a4ed18e58f703a9aa84c3c6a67489ae8d0e987ef168315", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6178", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:06:40", "EXIF DateTimeDigitized": "2002:07:07 20:06:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76f84c9387003737094799b3139d04a7984fddb8848405ef152e2757a5d82a6e", "phash": "86b6f15b6ab65049", "dhash": "6dcdec6c616c6af3", "phash_int": -8.739532651931218e+18, "collected_at": "2026-05-22T04:28:31.678455+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-56 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-06-56 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-06-56 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-06-56 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1930579.0, "mtime": "2002-07-07T20:06:54+00:00", "mtime_ts": 1026072414.0, "ctime": "2002-07-07T20:06:54+00:00", "sha256_file": "c49f2a1443e0d05455be928f30c5bcfb9e4c7b15c3a7011ed403ccece1cd8d78", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:06:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5265", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:06:56", "EXIF DateTimeDigitized": "2002:07:07 20:06:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c09e43581c36b4062afcdeb6276d55de156a235b5112aac1a4903aba6acbc450", "phash": "a0bdbad5148a9acd", "dhash": "fcdfb7afa6d4c38d", "phash_int": -6.864124832707339e+18, "collected_at": "2026-05-22T04:28:31.702454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-07-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-07-01 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-07-01 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-07-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1625497.0, "mtime": "2002-07-07T20:07:00+00:00", "mtime_ts": 1026072420.0, "ctime": "2002-07-07T20:07:00+00:00", "sha256_file": "718f604f1a7e13f1ffdebde836834628e7167e7a686e1e2f20eb953fcbee728d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:07:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4734", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:07:01", "EXIF DateTimeDigitized": "2002:07:07 20:07:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bc6820160cb524ac82f13f787ebff85a65391fa173008320db65a4f27a82a24", "phash": "94839ccb4ba5cf43", "dhash": "f0fefefef9720634", "phash_int": -7.745174537185669e+18, "collected_at": "2026-05-22T04:28:31.780456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-01 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-01 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-08-01 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-08-01 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1641924.0, "mtime": "2002-07-07T20:08:00+00:00", "mtime_ts": 1026072480.0, "ctime": "2002-07-07T20:08:00+00:00", "sha256_file": "e8c1a7f25b74f6a9a3e8833454b78c5337f9602b87b2ab9891cca6e800c45565", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:08:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5505", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:08:01", "EXIF DateTimeDigitized": "2002:07:07 20:08:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4070c1c4c9c9c34506db540da6e2376d8891bde0921d0f24a243aa64de85b47b", "phash": "826a3558356b9577", "dhash": "c1c1c9c9c9c1454d", "phash_int": -9.049361848277954e+18, "collected_at": "2026-05-22T04:28:31.827580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-18 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-18 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-08-18 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-08-18 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1502723.0, "mtime": "2002-07-07T20:08:16+00:00", "mtime_ts": 1026072496.0, "ctime": "2002-07-07T20:08:16+00:00", "sha256_file": "c3507500ec9dcac6cfa0ac459b9a3ef73c9597df0c896e2c0bf0d42b49a3a423", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:08:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5935", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:08:18", "EXIF DateTimeDigitized": "2002:07:07 20:08:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5d797960cac1df8c099e48be0e7c52eaf8d88c024346a0adee445ded71806f0", "phash": "c5fb7b9b6308124c", "dhash": "4ec6c6c6c6c6c6c6", "phash_int": -4.180611921771753e+18, "collected_at": "2026-05-22T04:28:31.948316+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-27 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-08-27 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-08-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1677693.0, "mtime": "2002-07-07T20:08:26+00:00", "mtime_ts": 1026072506.0, "ctime": "2002-07-07T20:08:26+00:00", "sha256_file": "4cecf1c0442c4da1558957862c39198ec2ed0288e9bcae688f3b24433f99a53f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:08:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3893", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:08:27", "EXIF DateTimeDigitized": "2002:07:07 20:08:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20e292ee7742b8519ac711c210d24c14af413115a80cdb841a79ecbd7bf87e12", "phash": "d46f0b2a790a3a6b", "dhash": "a0a0a0a090a0a0b0", "phash_int": -3.139278138206701e+18, "collected_at": "2026-05-22T04:28:31.958055+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-53 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-53 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-08-53 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-08-53 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1811504.0, "mtime": "2002-07-07T20:08:52+00:00", "mtime_ts": 1026072532.0, "ctime": "2002-07-07T20:08:52+00:00", "sha256_file": "75a0a9d5c18cef66c18f400848878125801716485078b60b9af1390ce2ac4c37", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:08:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5265", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:08:53", "EXIF DateTimeDigitized": "2002:07:07 20:08:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5990afa3cf05e2b13c125128532e69d25fef2c05db6ff2ef89f5afd561df6195", "phash": "c1e88f445aa79f32", "dhash": "6282939094d4ded8", "phash_int": -4.474168706051105e+18, "collected_at": "2026-05-22T04:28:32.101917+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-43 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-08-43 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-08-43 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-08-43 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2723645.0, "mtime": "2002-07-07T20:57:54+00:00", "mtime_ts": 1026075474.0, "ctime": "2002-07-07T20:57:54+00:00", "sha256_file": "5fc2d7a0d33021ac1ba19036a55693ee42c361c0909f0192ad2eaf44504083ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:08:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6662", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:08:43", "EXIF DateTimeDigitized": "2002:07:07 20:08:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3023fd1b38c52342174e135df10c5330eb62ce01aaf2a298184dd1497d25f2b", "phash": "d598688fc187c13f", "dhash": "d0b4e0ec6c606c80", "phash_int": -3.05557738053437e+18, "collected_at": "2026-05-22T04:28:32.114022+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-36 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-11-36 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-11-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1971606.0, "mtime": "2002-07-07T20:11:34+00:00", "mtime_ts": 1026072694.0, "ctime": "2002-07-07T20:11:34+00:00", "sha256_file": "076f57d1b1fb18b571cdf005ed00781f201913f291c95423013201d4f833da97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:11:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6669", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:11:36", "EXIF DateTimeDigitized": "2002:07:07 20:11:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2f309fb8d3e68f1ac4c36b1ed399564e7b41e2b1284680cbf1de33c8d22a0e1", "phash": "a7b8dcd78f0340e2", "dhash": "733fcf4b4bcc4c26", "phash_int": -6.361091655285391e+18, "collected_at": "2026-05-22T04:28:32.188500+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-41 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-41 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-11-41 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-11-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1994038.0, "mtime": "2002-07-07T20:11:40+00:00", "mtime_ts": 1026072700.0, "ctime": "2002-07-07T20:11:40+00:00", "sha256_file": "538a2cc02119276d7481b99cbd65a38b6be7c14afbd65c2ac158fb93ac91a647", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:11:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6956", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:11:41", "EXIF DateTimeDigitized": "2002:07:07 20:11:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eaec7df6283d046bd45dac4a5f0758ca930614d39dd9a4e64776a134b3f8768f", "phash": "82ececa3a71311db", "dhash": "a623d9c9c9cdc8e4", "phash_int": -9.012568566648336e+18, "collected_at": "2026-05-22T04:28:32.237958+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-46 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-46 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-11-46 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-11-46 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2023546.0, "mtime": "2002-07-07T20:11:44+00:00", "mtime_ts": 1026072704.0, "ctime": "2002-07-07T20:11:44+00:00", "sha256_file": "9e8cd2bc498072de5197e7e3fb07861a2a336c51d489d436cdda991bdf7155b6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:11:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6967", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:11:46", "EXIF DateTimeDigitized": "2002:07:07 20:11:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f54c839599d697fcb6ebe94d64b140015e418bad0350a214b9444016fd35d00", "phash": "f3fd8d811672628a", "dhash": "3632090cccccccee", "phash_int": -8.653799678183745e+17, "collected_at": "2026-05-22T04:28:32.375043+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-54 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-11-54 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-11-54 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-11-54 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1563385.0, "mtime": "2002-07-07T20:11:52+00:00", "mtime_ts": 1026072712.0, "ctime": "2002-07-07T20:11:52+00:00", "sha256_file": "30e7c8c8d5778be7e4b87e58a17bbfa75d16db104a643f528267296bc616e4e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:11:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5740", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:11:54", "EXIF DateTimeDigitized": "2002:07:07 20:11:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1043/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2086"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "565f3819247a9f74116842924cdf2da7b2c486c7fc0dcd5fdb1159875d568393", "phash": "f7946adab6152434", "dhash": "2d83066c4c0842cb", "phash_int": -6.067425621979208e+17, "collected_at": "2026-05-22T04:28:32.479044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-00 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-00 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-12-00 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-12-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1245345.0, "mtime": "2002-07-07T20:11:58+00:00", "mtime_ts": 1026072718.0, "ctime": "2002-07-07T20:11:58+00:00", "sha256_file": "34306bf89fab22eb51cc2a050f83809bb7fa8f61a919dcee921c02a65e47de0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:12:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4578", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:12:00", "EXIF DateTimeDigitized": "2002:07:07 20:12:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3/4", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "750"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32a96a6f6775c80640f490522fab6795f9bfcabc1cde2beedc9a73687d67564e", "phash": "cd8e31b299db344c", "dhash": "6e636062f28e8393", "phash_int": -3.634913206086192e+18, "collected_at": "2026-05-22T04:28:32.516362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-05 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-05 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-12-05 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-12-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1837757.0, "mtime": "2002-07-07T20:12:04+00:00", "mtime_ts": 1026072724.0, "ctime": "2002-07-07T20:12:04+00:00", "sha256_file": "924b217b73258ed4dd3855e65ad1688690e4bd732f2d87fc2277ac0e517733e5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:12:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5625", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:12:05", "EXIF DateTimeDigitized": "2002:07:07 20:12:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "173/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6920"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e84f53bdee79a9db481d473ad6c6fec17b834d99fffe3b9227985fc4954044eb", "phash": "b1ea1d9695e3ca0a", "dhash": "7f0f8391d47ada5a", "phash_int": -5.626652251848979e+18, "collected_at": "2026-05-22T04:28:32.576864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-54 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-54 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-12-54 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-12-54 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2173080.0, "mtime": "2002-07-07T20:12:52+00:00", "mtime_ts": 1026072772.0, "ctime": "2002-07-07T20:12:52+00:00", "sha256_file": "5fb5802a08ee2e05fa3bdb7f3b33b42d1260ce0a2f88dfe60bc03d3eb3c38ab5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:12:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6483", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:12:54", "EXIF DateTimeDigitized": "2002:07:07 20:12:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6da2fa981a9c57a18bdf9bf1f695e4e987006a2a50f3e2bd33ce1023bac8531d", "phash": "dacd81b03e534967", "dhash": "90e6e32b2ba9c9cd", "phash_int": -2.680343609255704e+18, "collected_at": "2026-05-22T04:28:32.716733+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-59 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-12-59 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-12-59 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-12-59 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2253981.0, "mtime": "2002-07-07T20:12:58+00:00", "mtime_ts": 1026072778.0, "ctime": "2002-07-07T20:12:58+00:00", "sha256_file": "a027b6af652cb02f8f23b08588af184b6546e5f51a93f2a68cf004087776d467", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:12:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6429", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:12:59", "EXIF DateTimeDigitized": "2002:07:07 20:12:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "209", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5928fd6e203cfb99fe00c06e08789ff4469bbeac9f4064383f596d44ab810d2", "phash": "a7d0e8cb1760362f", "dhash": "c1389e5e584b4b6f", "phash_int": -6.354323115251583e+18, "collected_at": "2026-05-22T04:28:32.760735+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-13-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-13-07 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-13-07 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-13-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2107545.0, "mtime": "2002-07-07T20:13:06+00:00", "mtime_ts": 1026072786.0, "ctime": "2002-07-07T20:13:06+00:00", "sha256_file": "a117f27d3eedfaae337ef739b64daa3d762a88b291a88e7e43ee21b63d26d429", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:13:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4302", "EXIF ExposureTime": "1/250", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:13:07", "EXIF DateTimeDigitized": "2002:07:07 20:13:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3583/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7166"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22ae3fcb6db05b970cafb6246ea940ac719e177014026331129cd5b0b8d2fae7", "phash": "c9a9d6162909deb6", "dhash": "e09032d384c08080", "phash_int": -3.9153630103557985e+18, "collected_at": "2026-05-22T04:28:32.916759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-13-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-13-50 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-13-50 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-13-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 3426934.0, "mtime": "2002-07-07T20:58:06+00:00", "mtime_ts": 1026075486.0, "ctime": "2002-07-07T20:58:06+00:00", "sha256_file": "6a0ef62b85bd88bfbf67e74363f7578ea29b962bafdf599ea6abdb15e9ba60d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:13:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10301", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:13:50", "EXIF DateTimeDigitized": "2002:07:07 20:13:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e1199319710d6cf3612a8b2bf7d8935a3193f8b5f79824000d6152fdb890c25", "phash": "9b4c6c3666ba2dc4", "dhash": "6f51d18988181939", "phash_int": -7.256305918693201e+18, "collected_at": "2026-05-22T04:28:32.986904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-03 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-14-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-14-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2989425.0, "mtime": "2002-07-07T20:58:08+00:00", "mtime_ts": 1026075488.0, "ctime": "2002-07-07T20:58:08+00:00", "sha256_file": "a52f2465f2a0ee591b60647eb5e72a0128d4ee5a581828a1bb6b713cbe599353", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:14:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10050", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:14:03", "EXIF DateTimeDigitized": "2002:07:07 20:14:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "42b87445a3ac6614f71c12d2397486dacb8ba1de2a4430c404d0bb2646d99d13", "phash": "9b68693266892edb", "dhash": "ad92f1edcd78d065", "phash_int": -7.248427935063265e+18, "collected_at": "2026-05-22T04:28:33.035404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-21 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-14-21 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-14-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1782903.0, "mtime": "2002-07-07T20:14:20+00:00", "mtime_ts": 1026072860.0, "ctime": "2002-07-07T20:14:20+00:00", "sha256_file": "3f8eb21122a042105550101318a2f698b8c78ea7b2b88dcd445d500c869a9296", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:14:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5876", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:14:21", "EXIF DateTimeDigitized": "2002:07:07 20:14:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2851/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11404"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f6149bdb99794a8dcfeaff9943c17b3b8b8ea90d33d432215f4153e0d9cafcd", "phash": "a3c5cb98729898d7", "dhash": "c8c6c88c0cbafb4b", "phash_int": -6.645681819497228e+18, "collected_at": "2026-05-22T04:28:33.114993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-26 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-14-26 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-14-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1770999.0, "mtime": "2002-07-07T20:14:24+00:00", "mtime_ts": 1026072864.0, "ctime": "2002-07-07T20:14:24+00:00", "sha256_file": "2e5055f08393119a3c795f32f56062437b7c006d0ef48c9aec9f811c5bfa9231", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:14:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5081", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:14:26", "EXIF DateTimeDigitized": "2002:07:07 20:14:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "27011/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "54022"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6956a2e63ce4bc33627d140719b9bc7137d5ca3a51059f66370f581a4d388492", "phash": "9ce583886ff51466", "dhash": "20c4cc32b3bcfcf8", "phash_int": -7.14115701210893e+18, "collected_at": "2026-05-22T04:28:33.239229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-14-32 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-14-32 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-14-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1779563.0, "mtime": "2002-07-07T20:14:30+00:00", "mtime_ts": 1026072870.0, "ctime": "2002-07-07T20:14:30+00:00", "sha256_file": "32305db845e54dbb044e7086905860af7eaad3a96f0c167b886c64dffc146a1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:14:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5189", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:14:32", "EXIF DateTimeDigitized": "2002:07:07 20:14:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23f0e465a5c574d5f99edf611bae25ae97efd7a21a963253039930042b81f4cc", "phash": "88bcd5038afd3547", "dhash": "f0e0b6b9e9da0238", "phash_int": -8.593759777736281e+18, "collected_at": "2026-05-22T04:28:33.270307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-23 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-16-23 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-16-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1702421.0, "mtime": "2002-07-07T20:16:22+00:00", "mtime_ts": 1026072982.0, "ctime": "2002-07-07T20:16:22+00:00", "sha256_file": "35e372101442a6c92e84762e47ebd8f42006d79bf52301f06cf8e9ff942fba9d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:16:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4939", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:16:23", "EXIF DateTimeDigitized": "2002:07:07 20:16:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "237", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "befe1c0511ca4ca1bf059012d794e2ac951680558036e9cd3480fe6f92de36dd", "phash": "8db9d228ad5632e9", "dhash": "b1e0d8eaf39504e0", "phash_int": -8.234319371521609e+18, "collected_at": "2026-05-22T04:28:33.365075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-29 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-16-29 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-16-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1632914.0, "mtime": "2002-07-07T20:16:28+00:00", "mtime_ts": 1026072988.0, "ctime": "2002-07-07T20:16:28+00:00", "sha256_file": "7cb3983ab508372865149f3125b36e57c61cc018404f1f7a05b47035d2c876ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:16:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4985", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:16:29", "EXIF DateTimeDigitized": "2002:07:07 20:16:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91326a2d53ee1abb11868a6f2ba9511ed61ce8d05923de72e4e06e1cf0b79324", "phash": "8ae5688a6770cf95", "dhash": "e0f0e0cd69f99903", "phash_int": -8.438223383158534e+18, "collected_at": "2026-05-22T04:28:33.463404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-34 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-16-34 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-16-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1754028.0, "mtime": "2002-07-07T20:16:32+00:00", "mtime_ts": 1026072992.0, "ctime": "2002-07-07T20:16:32+00:00", "sha256_file": "0bf7e7a975ed64610c7ee69520c65efb682af5a4c0bcd216f8fa00efc31a5543", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:16:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5114", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:16:34", "EXIF DateTimeDigitized": "2002:07:07 20:16:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4c88809ed8ae2ee1bef825a6327d03bab4180a20212302c47c13569b45fc2b5", "phash": "d3ac31c36c33daa4", "dhash": "9eef9c48c0485a1a", "phash_int": -3.194123320308803e+18, "collected_at": "2026-05-22T04:28:33.498505+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-40 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-40 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-16-40 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-16-40 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1972294.0, "mtime": "2002-07-07T20:16:38+00:00", "mtime_ts": 1026072998.0, "ctime": "2002-07-07T20:16:38+00:00", "sha256_file": "6b3d52bf064a83ae32283775025a6d0deafb189531354984809c9217667e0ae9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:16:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5085", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:16:40", "EXIF DateTimeDigitized": "2002:07:07 20:16:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ba12b8d22282be4797c7285897f4d6402161cf339d0e01cae8c2d4f83dffee8", "phash": "f590c83e0d63fdc0", "dhash": "f6f4ca0aec2f43c0", "phash_int": -7.518809689326884e+17, "collected_at": "2026-05-22T04:28:33.591534+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-45 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-16-45 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-16-45 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-16-45 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1948049.0, "mtime": "2002-07-07T20:16:44+00:00", "mtime_ts": 1026073004.0, "ctime": "2002-07-07T20:16:44+00:00", "sha256_file": "5a6839a7ef0899f9410bfb0367e9d01d1f509f51b16802b5dbda8b8deb675d88", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:16:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4275", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:16:45", "EXIF DateTimeDigitized": "2002:07:07 20:16:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94ac976b73334853a708ebcdc804626f3904ec914d365c25f66123c5fdecc1bd", "phash": "c5d52a887717f0e8", "dhash": "f0e0545480f0ff09", "phash_int": -4.191397112596402e+18, "collected_at": "2026-05-22T04:28:33.615730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-40 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-40 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-19-40 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-19-40 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1703353.0, "mtime": "2002-07-07T20:19:38+00:00", "mtime_ts": 1026073178.0, "ctime": "2002-07-07T20:19:38+00:00", "sha256_file": "b4b98f19fd0e3455db099ad927ca3acc8ade4f2fb92bcffe2af2fa4207c3fc16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:19:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4654", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:19:40", "EXIF DateTimeDigitized": "2002:07:07 20:19:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "581/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4648"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79478a7ed25597b4050e955e56ec18683dfdc833132fec60ce57faf24ab125d2", "phash": "f48ac93295e92ad6", "dhash": "808466060c0c0402", "phash_int": -8.256263625684308e+17, "collected_at": "2026-05-22T04:28:33.707944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-45 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-45 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-19-45 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-19-45 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1711193.0, "mtime": "2002-07-07T20:19:44+00:00", "mtime_ts": 1026073184.0, "ctime": "2002-07-07T20:19:44+00:00", "sha256_file": "666c44cd55d7fcf1079a27aa9eea5fe7ea013c065c2a378b43606d11358dbd03", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:19:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4930", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:19:45", "EXIF DateTimeDigitized": "2002:07:07 20:19:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5729/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5729"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99e63635853422a36c0c5533e173b107bb715b1caaf9c3ab9274b14103ab3572", "phash": "d1b08f5cf9c08eac", "dhash": "1454c09018e0c068", "phash_int": -3.3370096943916283e+18, "collected_at": "2026-05-22T04:28:33.741060+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-51 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-51 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-19-51 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-19-51 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1643335.0, "mtime": "2002-07-07T20:19:50+00:00", "mtime_ts": 1026073190.0, "ctime": "2002-07-07T20:19:50+00:00", "sha256_file": "faa2d177365834a08295baab01bbf06ce576ea7ae5c8d2e94ab93f46534aa5bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:19:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4714", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:19:51", "EXIF DateTimeDigitized": "2002:07:07 20:19:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1071/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10710"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "66231797423b35d7cc4711609e85d69ee9a9f4ddb4c7793b56e49a8491721c53", "phash": "8581a79cba7255e5", "dhash": "f8f2c2d9bcb0807f", "phash_int": -8.82658950308467e+18, "collected_at": "2026-05-22T04:28:33.792621+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-56 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-19-56 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-19-56 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-19-56 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1803265.0, "mtime": "2002-07-07T20:19:54+00:00", "mtime_ts": 1026073194.0, "ctime": "2002-07-07T20:19:54+00:00", "sha256_file": "cd33f2ab0986e707b8967c20d4d492efb6ffd5a85457a13d2e16bbcd63bebaef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:19:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5498", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:19:56", "EXIF DateTimeDigitized": "2002:07:07 20:19:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1071/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10710"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "088c9f8a99ead5fd6861d2c951819972f876a0992d4248bb8fbde15e495ddfb7", "phash": "86c678b9937c4666", "dhash": "cda26468ed2e167e", "phash_int": -8.73516168879982e+18, "collected_at": "2026-05-22T04:28:33.831622+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-03 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-20-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-20-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1806669.0, "mtime": "2002-07-07T20:20:02+00:00", "mtime_ts": 1026073202.0, "ctime": "2002-07-07T20:20:02+00:00", "sha256_file": "32904dd5556ad4be26441cf87b8e1193f540708e44db2dea8697ff869b650211", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:20:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5508", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:20:03", "EXIF DateTimeDigitized": "2002:07:07 20:20:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7dee3ae7316e3a0ed54744f7e24e7d746f0a510aca436df4dc6088c5790b1e00", "phash": "83ce947993344e3e", "dhash": "b071ecca4b23fef8", "phash_int": -8.949052159656964e+18, "collected_at": "2026-05-22T04:28:33.877950+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-09 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-09 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-20-09 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-20-09 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1539436.0, "mtime": "2002-07-07T20:20:08+00:00", "mtime_ts": 1026073208.0, "ctime": "2002-07-07T20:20:08+00:00", "sha256_file": "66753b0009ad46fbd1073f093d1e674b350a4caf08eb9fe13083eaa0add55718", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:20:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5322", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:20:09", "EXIF DateTimeDigitized": "2002:07:07 20:20:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "27/8", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3375"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8957b0ea69b39d8f60dc2d180b3c53b747ca6fc170e68f99226dac38dab30a4a", "phash": "f184e9f18e60fb09", "dhash": "20d011ad781e9f1d", "phash_int": -1.0434519899580019e+18, "collected_at": "2026-05-22T04:28:33.914050+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-22 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-22 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-20-22 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-20-22 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2881812.0, "mtime": "2002-07-07T20:58:20+00:00", "mtime_ts": 1026075500.0, "ctime": "2002-07-07T20:58:20+00:00", "sha256_file": "d4aa727a705233e741574bb10f95410a15d65aaab3b862ebe3c074c83a8a713a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:20:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8820", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:20:22", "EXIF DateTimeDigitized": "2002:07:07 20:20:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc95c279c426cb449c4daeef08f643928ff98ef12b8376174aca08276ee58a52", "phash": "a8d3d432f3cbc314", "dhash": "9cb4d3431f2f37f0", "phash_int": -6.281443739948039e+18, "collected_at": "2026-05-22T04:28:33.977051+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-20-32 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-20-32 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-20-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2726515.0, "mtime": "2002-07-07T20:58:22+00:00", "mtime_ts": 1026075502.0, "ctime": "2002-07-07T20:58:22+00:00", "sha256_file": "f123ec350449ce11c7ca7f95e742de32584b22cdc7f32c127f9e8bb5dcfa0bd9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:20:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8914", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:20:32", "EXIF DateTimeDigitized": "2002:07:07 20:20:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec123986fd8d1cb091f05729514164f09100426fa872fb13aca69a2664d1c504", "phash": "b0ce8f61b1b382d6", "dhash": "b323ad9a98881777", "phash_int": -5.706466028075908e+18, "collected_at": "2026-05-22T04:28:34.166561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-21-05 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-21-05 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-21-05 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-21-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1825838.0, "mtime": "2002-07-07T20:21:04+00:00", "mtime_ts": 1026073264.0, "ctime": "2002-07-07T20:21:04+00:00", "sha256_file": "d67cd577501d0d16b407d227fb95cb7011c000dd2496ad8df76225bc95ea0299", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:21:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5247", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:21:05", "EXIF DateTimeDigitized": "2002:07:07 20:21:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79f889d78b9dbcba3edd27232a03a0f52b8a8ef43ec83d4120ceac0caf7bc074", "phash": "8ffff1991882864c", "dhash": "404a656534f3e6f8", "phash_int": -8.070466367381142e+18, "collected_at": "2026-05-22T04:28:34.173561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-03 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-31-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-31-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1468830.0, "mtime": "2002-07-07T20:31:02+00:00", "mtime_ts": 1026073862.0, "ctime": "2002-07-07T20:31:02+00:00", "sha256_file": "9cda9428a5d37455db10c647088471e3781eedcafc3a6bdef31477081583ad88", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:31:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3936", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:31:03", "EXIF DateTimeDigitized": "2002:07:07 20:31:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "23949/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "207", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "23949"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64c6e47434a4b1ddcdd1d2d5c4c9dc1697dcf9ce47746129f32ae0e532707201", "phash": "fcf68383c9785a11", "dhash": "000e2833d3f132e2", "phash_int": -2.1884292983682813e+17, "collected_at": "2026-05-22T04:28:34.296566+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-21-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-21-13 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-21-13 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-21-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1820514.0, "mtime": "2002-07-07T20:21:12+00:00", "mtime_ts": 1026073272.0, "ctime": "2002-07-07T20:21:12+00:00", "sha256_file": "d996e605632897ba23cc39187a99e0ce64f151a06d2546340f261c15f68287ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:21:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5233", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:21:13", "EXIF DateTimeDigitized": "2002:07:07 20:21:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db7abb746c166f5157f21b0c73d9ef74272f413c4f15249ecc7a0f0f8dd1f853", "phash": "84f4d1cb2d9c5273", "dhash": "80e4eca667e9f0f0", "phash_int": -8.866231095811878e+18, "collected_at": "2026-05-22T04:28:34.306572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-20 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-31-20 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-31-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2678679.0, "mtime": "2002-07-07T20:58:38+00:00", "mtime_ts": 1026075518.0, "ctime": "2002-07-07T20:58:38+00:00", "sha256_file": "67adaa15808fc9e05bdd9412556b059b41ecaa058850e852e987a140959c12d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:31:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7062", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:31:20", "EXIF DateTimeDigitized": "2002:07:07 20:31:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5343aa552440250a6fde09ff45151c9f98f6a46667820da2310cbd72fb537167", "phash": "c2e47be2eec3e082", "dhash": "49c8c4c4ecc4d071", "phash_int": -4.403258321062863e+18, "collected_at": "2026-05-22T04:28:34.445139+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-08 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-08 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-31-08 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-31-08 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1478359.0, "mtime": "2002-07-07T20:31:06+00:00", "mtime_ts": 1026073866.0, "ctime": "2002-07-07T20:31:06+00:00", "sha256_file": "e22fe405e020b2c8b2d940ed0b488090a3be718a4db7adfe9685fd1e6daa259b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:31:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4720", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:31:08", "EXIF DateTimeDigitized": "2002:07:07 20:31:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1019/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8152"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a88823646882f931d476698264c7fa305e4af27927a34df831f6ce7a8df69e11", "phash": "b6a9c3d65c786126", "dhash": "01eedf343c1c2c24", "phash_int": -5.284477362300756e+18, "collected_at": "2026-05-22T04:28:34.453145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-25 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-31-25 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-31-25 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-31-25 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2494562.0, "mtime": "2002-07-07T20:58:40+00:00", "mtime_ts": 1026075520.0, "ctime": "2002-07-07T20:58:40+00:00", "sha256_file": "340f0b4884c8b0bcd0a20c690e1189105227a20c57faead1140bdedc7243827b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:31:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7299", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:31:25", "EXIF DateTimeDigitized": "2002:07:07 20:31:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ae3caed7536c7e255cd2748968a241290235410bbaa89b920d71c8814819a11", "phash": "c2e079c2ee43d0ee", "dhash": "08d4c4ece4d4c030", "phash_int": -4.404386557440307e+18, "collected_at": "2026-05-22T04:28:34.644152+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-32-19 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-32-19 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-32-19 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-32-19 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2252840.0, "mtime": "2002-07-07T20:32:18+00:00", "mtime_ts": 1026073938.0, "ctime": "2002-07-07T20:32:18+00:00", "sha256_file": "21ee9b634be30206aed32089eccd8478cd22de5e35dc7f5cd1677d2fb5cf7dce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:32:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5240", "EXIF ExposureTime": "1/250", "EXIF FNumber": "71/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:32:19", "EXIF DateTimeDigitized": "2002:07:07 20:32:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "181/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[127, 42, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "181", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "38ec9eb94c56a8389d839f82e3e5fa74bf5a5c9ccb3584d762ad87e5f4cd5eca", "phash": "f09f88c0277b6e70", "dhash": "48b6261b9c889b97", "phash_int": -1.1080166244323537e+18, "collected_at": "2026-05-22T04:28:34.700151+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-04 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-36-04 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-36-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2346222.0, "mtime": "2002-07-07T20:58:46+00:00", "mtime_ts": 1026075526.0, "ctime": "2002-07-07T20:58:46+00:00", "sha256_file": "72d8fb9bdb9a2e1a28e8d178195c945f5ce745f847fbd1a58def8a8e285f793b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:36:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "3785", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:36:04", "EXIF DateTimeDigitized": "2002:07:07 20:36:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7e1e05f230da8ba0177eedc621e908ae96be7f7a5c46b75658806297579c70b", "phash": "dd0b3a4bba494d8a", "dhash": "717672723232322c", "phash_int": -2.518855469661336e+18, "collected_at": "2026-05-22T04:28:34.790890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-14 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-36-14 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-36-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 3755658.0, "mtime": "2002-07-07T20:58:48+00:00", "mtime_ts": 1026075528.0, "ctime": "2002-07-07T20:58:48+00:00", "sha256_file": "b973ea1ec15e71c62b82e8dc3ee681650a2b9208e28c600c96c534d8eba46399", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:36:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "4253", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:36:14", "EXIF DateTimeDigitized": "2002:07:07 20:36:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "147", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9145cec56d1a652161636fc79ffd989bb13f4e2cd84ddc90905c6a63963ec0bf", "phash": "dd913ac52aa25dc5", "dhash": "3a3a3a3a32323223", "phash_int": -2.4811373012061804e+18, "collected_at": "2026-05-22T04:28:34.827122+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-34 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-34 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-36-34 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-36-34 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1910907.0, "mtime": "2002-07-07T20:36:32+00:00", "mtime_ts": 1026074192.0, "ctime": "2002-07-07T20:36:32+00:00", "sha256_file": "5e187ba5eaf38c698d589b175150e63b9a898c88bd7af6cad39ea6aec84fee32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:36:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2194", "EXIF ExposureTime": "1/250", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:36:34", "EXIF DateTimeDigitized": "2002:07:07 20:36:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1081/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[229, 160, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "117", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1081"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e61936df07b6af1dd24dc1c57b81b2862de7f4b2b6dc2058a425fb94fff0f823", "phash": "d5552a6255daaa55", "dhash": "ea5a785a5a4948c8", "phash_int": -3.07450456877494e+18, "collected_at": "2026-05-22T04:28:34.912321+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-36-48 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-36-48 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-36-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1154305.0, "mtime": "2002-07-07T20:36:46+00:00", "mtime_ts": 1026074206.0, "ctime": "2002-07-07T20:36:46+00:00", "sha256_file": "41b383f4e98fd9c89a86f3410cb89960e5625bc4263167616c5e7746c2a31e6e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:36:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1927", "EXIF ExposureTime": "1/80", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:36:48", "EXIF DateTimeDigitized": "2002:07:07 20:36:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c03ed5b0fc08e089e1c5ca8af3e5eb5dc7aca4068968111d76de53975a53b2a", "phash": "d5558aaa5554aa9d", "dhash": "dadadacadac9d8c8", "phash_int": -3.07439870642981e+18, "collected_at": "2026-05-22T04:28:34.972325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-37-00 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-37-00 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-37-00 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-37-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2086610.0, "mtime": "2002-07-07T20:58:50+00:00", "mtime_ts": 1026075530.0, "ctime": "2002-07-07T20:58:50+00:00", "sha256_file": "5af2e51f3729e8395d8ff4d8479b679eb6d5a5ad24417a4c314bd50c11487091", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:37:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "2327", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:07 20:37:00", "EXIF DateTimeDigitized": "2002:07:07 20:37:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "813372aee1bca9af35d39c96d3ab36356eab68aab0e8fff4bbb9ff1212fff01f", "phash": "b38cc6926c67c78c", "dhash": "d8989a1e1888981c", "phash_int": -5.508809911994694e+18, "collected_at": "2026-05-22T04:28:35.045335+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-37-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-37-11 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-37-11 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-37-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1281791.0, "mtime": "2002-07-07T20:37:10+00:00", "mtime_ts": 1026074230.0, "ctime": "2002-07-07T20:37:10+00:00", "sha256_file": "cd958143e58f17a77109684b82ab5664505a88e2ef0488dc59ac82182c55f47a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:37:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2206", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:37:11", "EXIF DateTimeDigitized": "2002:07:07 20:37:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2157/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2157"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb15ab07e0f3b79f5d5552811e310f34594de3d42043130eeab4906d69be1e3e", "phash": "d6560cad73560ba9", "dhash": "e4f0d8ccc8eae8e8", "phash_int": -3.0021981624919624e+18, "collected_at": "2026-05-22T04:28:35.063329+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-38-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-38-12 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-38-12 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-38-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 866967.0, "mtime": "2002-07-07T20:38:10+00:00", "mtime_ts": 1026074290.0, "ctime": "2002-07-07T20:38:10+00:00", "sha256_file": "24aee8ef4cec2ef3eb7c5852ecc7e61738d7be8cf3a668406d331ecf79649e65", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:38:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1877", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:38:12", "EXIF DateTimeDigitized": "2002:07:07 20:38:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1199/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[91, 175, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2398"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa6a17aaa370dc8daa5519e00c601583bcc4449c2da5e0d011e8c316949b4f91", "phash": "8000ffff00dfff00", "dhash": "e8e8e4e4e42cc48c", "phash_int": -9.223090566158352e+18, "collected_at": "2026-05-22T04:28:35.137603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-38-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-38-35 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-38-35 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-38-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1317271.0, "mtime": "2002-07-07T20:38:34+00:00", "mtime_ts": 1026074314.0, "ctime": "2002-07-07T20:38:34+00:00", "sha256_file": "528428a537f28d1fbfa5f5cb4d9412ca01d12d9af494aa4c4055bc36ea5d0d48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:38:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2193", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:38:35", "EXIF DateTimeDigitized": "2002:07:07 20:38:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6993/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[75, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101080", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6993"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "129578f336d05f7e0c4591cd48439bf3de8578ad9d5fdb2dfb5fbc0e9c2eb07a", "phash": "ba6c6c847a9a1a9b", "dhash": "272739393939391b", "phash_int": -5.013512968921802e+18, "collected_at": "2026-05-22T04:28:35.185762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-40-15 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-40-15 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-40-15 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-40-15 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1852880.0, "mtime": "2002-07-07T20:40:14+00:00", "mtime_ts": 1026074414.0, "ctime": "2002-07-07T20:40:14+00:00", "sha256_file": "bbbb5ebad6a36e5bc660df50659c8f5811efd293bdb8de5308d66e87ce0effca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:40:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4960", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:40:15", "EXIF DateTimeDigitized": "2002:07:07 20:40:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5599/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[88, 178, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5599"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f23c4c41501a83de3857d67bc72dbf2742df4dbe7c0ef94e2a7bc0c7f95f415b", "phash": "d98d296a0c1d377a", "dhash": "7bc31cf0a10208a4", "phash_int": -2.7705126603164733e+18, "collected_at": "2026-05-22T04:28:35.230844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-42-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07\\2002-07-07 20-42-36 Canon PowerShot S40.JPG", "file_name": "2002-07-07 20-42-36 Canon PowerShot S40.JPG", "file_stem": "2002-07-07 20-42-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1292827.0, "mtime": "2002-07-07T20:42:34+00:00", "mtime_ts": 1026074554.0, "ctime": "2002-07-07T20:42:34+00:00", "sha256_file": "6e41c8fe0a03084c2d09da0c82428643ff2c14626cb35179554abea92d3c4bfa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:07 20:42:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3379", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:07 20:42:36", "EXIF DateTimeDigitized": "2002:07:07 20:42:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3679/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[38, 92, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3679"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ee1ff807cf03e426cff498727651b010999f7156b925c95d37695df9629c4c87", "phash": "d99bc2460fbc3760", "dhash": "f1d11032132080c2", "phash_int": -2.766403939921545e+18, "collected_at": "2026-05-22T04:28:35.244845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0907_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0907_IMG.JPG", "file_name": "109-0907_IMG.JPG", "file_stem": "109-0907_IMG", "file_ext": ".jpg", "file_size": 1354461.0, "mtime": "2002-07-01T16:11:36+00:00", "mtime_ts": 1025539896.0, "ctime": "2002-07-01T16:11:36+00:00", "sha256_file": "33556c3cf622a8ca595a7f43a432e46d36a09472add589e4953da075b3fc8f7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:11:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2751", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:11:38", "EXIF DateTimeDigitized": "2002:07:01 16:11:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090907", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e90e9c9dbb58b1fe9f2276be772030b249284c97cca9acd8843899a6908b5839", "phash": "9495bd0f4117c3d5", "dhash": "fcb4e0e0e0e0f0b0", "phash_int": -7.740072511352094e+18, "collected_at": "2026-05-22T04:28:35.350228+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0906_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0906_IMG.JPG", "file_name": "109-0906_IMG.JPG", "file_stem": "109-0906_IMG", "file_ext": ".jpg", "file_size": 1346565.0, "mtime": "2002-07-01T16:11:30+00:00", "mtime_ts": 1025539890.0, "ctime": "2002-07-01T16:11:30+00:00", "sha256_file": "39aeee74fbb22f4c1e7210421ee0a3423cc771cf2c27716966125f239b72e80f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:11:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2801", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:11:32", "EXIF DateTimeDigitized": "2002:07:01 16:11:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090906", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c4253c021ca7b507c980d98cd367e20b97cb473704308599beb91e1425bd83c", "phash": "9099b90f495bd1f8", "dhash": "f8f4b8e0e0e0f0b0", "phash_int": -8.027181385504797e+18, "collected_at": "2026-05-22T04:28:35.367228+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0908_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0908_IMG.JPG", "file_name": "109-0908_IMG.JPG", "file_stem": "109-0908_IMG", "file_ext": ".jpg", "file_size": 1314453.0, "mtime": "2002-07-01T16:11:46+00:00", "mtime_ts": 1025539906.0, "ctime": "2002-07-01T16:11:46+00:00", "sha256_file": "6a41a8b2c1a148bd447db9dfc244096c365fd2e0c8365ecf723cccfb9c4a3b03", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:11:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2825", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:11:47", "EXIF DateTimeDigitized": "2002:07:01 16:11:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090908", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ed0f712189bbfed5df7f30f6a0dfc5537798316c37270a58adbaa7231d84f91", "phash": "862c59fe7c118976", "dhash": "38f0f0f064e0f8f0", "phash_int": -8.77854262411385e+18, "collected_at": "2026-05-22T04:28:35.461581+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0909_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0909_IMG.JPG", "file_name": "109-0909_IMG.JPG", "file_stem": "109-0909_IMG", "file_ext": ".jpg", "file_size": 1335210.0, "mtime": "2002-07-01T16:11:50+00:00", "mtime_ts": 1025539910.0, "ctime": "2002-07-01T16:11:50+00:00", "sha256_file": "c377ba953fd97bbdbc19dceea75196f1eee929c8b6af341a9e8408ffd435dd31", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:11:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2827", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:11:52", "EXIF DateTimeDigitized": "2002:07:01 16:11:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090909", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b725b18a1fcdd651ff23f28bc1836aeb6d1e696f48cf1f2fe8d1891bf96364f", "phash": "862c59fe7c318936", "dhash": "38f0f8f064e0f8f0", "phash_int": -8.778542624111753e+18, "collected_at": "2026-05-22T04:28:35.475576+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0910_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0910_IMG.JPG", "file_name": "109-0910_IMG.JPG", "file_stem": "109-0910_IMG", "file_ext": ".jpg", "file_size": 1356583.0, "mtime": "2002-07-01T16:11:58+00:00", "mtime_ts": 1025539918.0, "ctime": "2002-07-01T16:11:58+00:00", "sha256_file": "d7147574dd8691dbacb4daf0592e3cf3d18406eaef82b6c516a3a80c96184967", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:11:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2844", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:11:59", "EXIF DateTimeDigitized": "2002:07:01 16:11:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090910", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1809064e01692d9706cce21b844b9289198b0ae7870323a702a37e5140d0d125", "phash": "90b9bb0b495bd878", "dhash": "f8fcbce0e0e0f0b0", "phash_int": -8.018172004406667e+18, "collected_at": "2026-05-22T04:28:35.539582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0911_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0911_IMG.JPG", "file_name": "109-0911_IMG.JPG", "file_stem": "109-0911_IMG", "file_ext": ".jpg", "file_size": 1380444.0, "mtime": "2002-07-01T16:12:06+00:00", "mtime_ts": 1025539926.0, "ctime": "2002-07-01T16:12:06+00:00", "sha256_file": "5a6e1748cf4b24d4e24db6e7e985167d22b381527e4a41a591b28772d720e753", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:12:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:12:07", "EXIF DateTimeDigitized": "2002:07:01 16:12:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090911", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdde54b2eb1a279f1e2591efa39645bd6232af2a53ac3fe567da56470082760d", "phash": "c4c4c1dc3d3d511f", "dhash": "f0e1c33731e1fada", "phash_int": -4.268073395175993e+18, "collected_at": "2026-05-22T04:28:35.559583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0912_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0912_IMG.JPG", "file_name": "109-0912_IMG.JPG", "file_stem": "109-0912_IMG", "file_ext": ".jpg", "file_size": 1436981.0, "mtime": "2002-07-01T16:12:12+00:00", "mtime_ts": 1025539932.0, "ctime": "2002-07-01T16:12:12+00:00", "sha256_file": "23b0d96543ed26f608e2dd331e5b8f8eec0331eabb775e2eb8e16bb203691158", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:12:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:12:14", "EXIF DateTimeDigitized": "2002:07:01 16:12:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 189, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090912", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f868a5686926209b3e6ccd1e0d5c6499f6413faf818df2fd76842f5b5ae2889a", "phash": "9c9748ba0a73568f", "dhash": "78f86c2c74383333", "phash_int": -7.163176718433036e+18, "collected_at": "2026-05-22T04:28:35.646990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0913_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0913_IMG.JPG", "file_name": "109-0913_IMG.JPG", "file_stem": "109-0913_IMG", "file_ext": ".jpg", "file_size": 1390214.0, "mtime": "2002-07-01T16:12:52+00:00", "mtime_ts": 1025539972.0, "ctime": "2002-07-01T16:12:52+00:00", "sha256_file": "85edf8691e7da561978889bbdd23146be0a3eb3fac15b236586b0ee2b571d55e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:12:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3832", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:12:54", "EXIF DateTimeDigitized": "2002:07:01 16:12:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[77, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090913", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e3496c953b812a28c6a6171f51f80b29402885ae93046e63c46e1efa20751eb", "phash": "c1cb36ce122d79b2", "dhash": "c0c3c2e2c182e6cc", "phash_int": -4.4824287454210637e+18, "collected_at": "2026-05-22T04:28:35.670172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0915_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0915_IMG.JPG", "file_name": "109-0915_IMG.JPG", "file_stem": "109-0915_IMG", "file_ext": ".jpg", "file_size": 1345053.0, "mtime": "2002-07-01T16:13:12+00:00", "mtime_ts": 1025539992.0, "ctime": "2002-07-01T16:13:12+00:00", "sha256_file": "fbda588674cbbea90ba6fd357c4d77efed8f36175ef56cf0bc894d0468590251", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:13:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3529", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:13:14", "EXIF DateTimeDigitized": "2002:07:01 16:13:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090915", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac21b8e69e134ba9b4ec94e2236e90ab2c54414dd27809c6aa834f1919d40745", "phash": "c314a3f817e13c57", "dhash": "f8f0f8d8f183c3cb", "phash_int": -4.389703450831537e+18, "collected_at": "2026-05-22T04:28:35.771723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0914_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0914_IMG.JPG", "file_name": "109-0914_IMG.JPG", "file_stem": "109-0914_IMG", "file_ext": ".jpg", "file_size": 1286913.0, "mtime": "2002-07-01T16:13:04+00:00", "mtime_ts": 1025539984.0, "ctime": "2002-07-01T16:13:04+00:00", "sha256_file": "7b12af3e92576b00de7fb7b6e5aaaaba039217f284a4fc13b44017ff547733f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:13:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2878", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:13:05", "EXIF DateTimeDigitized": "2002:07:01 16:13:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090914", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "03851d8e95195d5e3b091d5cca8c7e6c456dc942a4e2e3ed5d4a5ef02424a108", "phash": "c13ec1b6d1c936c9", "dhash": "e0e0e1e0c0c0d0d0", "phash_int": -4.521963984885566e+18, "collected_at": "2026-05-22T04:28:35.777782+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0917_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0917_IMG.JPG", "file_name": "109-0917_IMG.JPG", "file_stem": "109-0917_IMG", "file_ext": ".jpg", "file_size": 1330339.0, "mtime": "2002-07-01T16:16:14+00:00", "mtime_ts": 1025540174.0, "ctime": "2002-07-01T16:16:14+00:00", "sha256_file": "4b585d55788a689227452d42f1a4f4e26c25c3de26a1f3367b87536410d67549", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:16:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3588", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:16:16", "EXIF DateTimeDigitized": "2002:07:01 16:16:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[75, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090917", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ffdb1c669b42d7600b50763195e1f0b5482c7324cf237e7f181417ed2638240", "phash": "a75341a3a87e56ac", "dhash": "dedcfc6fefefeff7", "phash_int": -6.389691275146275e+18, "collected_at": "2026-05-22T04:28:35.865785+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0916_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0916_IMG.JPG", "file_name": "109-0916_IMG.JPG", "file_stem": "109-0916_IMG", "file_ext": ".jpg", "file_size": 1355216.0, "mtime": "2002-07-01T16:13:26+00:00", "mtime_ts": 1025540006.0, "ctime": "2002-07-01T16:13:26+00:00", "sha256_file": "c64fa8f3ce1bf7b4e501e0dd801996cae0c1ada8e506d0a611377f34b6729d80", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:13:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2282", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:13:27", "EXIF DateTimeDigitized": "2002:07:01 16:13:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090916", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e7944985828dcf9a4731d8854f62929cc741f74736ada7500e4b1000f677af1", "phash": "fa2e050b43c7d1f1", "dhash": "d103191111111111", "phash_int": -4.193921693589294e+17, "collected_at": "2026-05-22T04:28:35.871894+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0918_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0918_IMG.JPG", "file_name": "109-0918_IMG.JPG", "file_stem": "109-0918_IMG", "file_ext": ".jpg", "file_size": 1346281.0, "mtime": "2002-07-01T16:16:24+00:00", "mtime_ts": 1025540184.0, "ctime": "2002-07-01T16:16:24+00:00", "sha256_file": "a65d0ad938e12e307e98d147c9e8bf72f534d464d89e727568863ccdc7ea8617", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:16:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3833", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:16:25", "EXIF DateTimeDigitized": "2002:07:01 16:16:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090918", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74e0d80d262a7c27a3ae37ab7ad60001d452812db47cfe895c39d8ed96ec25cb", "phash": "d6dd0d313001fcee", "dhash": "c868480808094968", "phash_int": -2.9641984748299233e+18, "collected_at": "2026-05-22T04:28:35.945199+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-01\\109-0919_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-01\\109-0919_IMG.JPG", "file_name": "109-0919_IMG.JPG", "file_stem": "109-0919_IMG", "file_ext": ".jpg", "file_size": 1218601.0, "mtime": "2002-07-01T16:16:32+00:00", "mtime_ts": 1025540192.0, "ctime": "2002-07-01T16:16:32+00:00", "sha256_file": "9a9386d65bb3907573d80f895b742dec283d061cd69d8b00aeae0ca0c1fcbdb6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:01 16:16:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3538", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:01 16:16:33", "EXIF DateTimeDigitized": "2002:07:01 16:16:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[94, 353, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090919", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "146", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3b3174fd296a31c842df6b5163f6b2fdb4b320414d5ac8bb05b2936d21ccbde", "phash": "899f06d06b5937d4", "dhash": "fc7d7ddbd3db93e7", "phash_int": -8.530091676992457e+18, "collected_at": "2026-05-22T04:28:35.968416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0944_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0944_IMG.JPG", "file_name": "109-0944_IMG.JPG", "file_stem": "109-0944_IMG", "file_ext": ".jpg", "file_size": 1459074.0, "mtime": "2002-07-05T14:18:24+00:00", "mtime_ts": 1025878704.0, "ctime": "2002-07-05T14:18:24+00:00", "sha256_file": "f5a58e694be3d113863f0ee132d0d4e1b72e34cb75f2c2063a7b5e4410f9bb66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:18:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3383", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:18:26", "EXIF DateTimeDigitized": "2002:07:05 14:18:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "151/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1127/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090944", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "350", "MakerNote TargetAperture": "151", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c76947db15c076338b50c6aab0fee515edc7f98062cdc27a38c3ec5b025181d8", "phash": "e3cd8ca626195967", "dhash": "e4e412d8ccccc0c4", "phash_int": -2.0318132116425705e+18, "collected_at": "2026-05-22T04:28:36.092247+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0945_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0945_IMG.JPG", "file_name": "109-0945_IMG.JPG", "file_stem": "109-0945_IMG", "file_ext": ".jpg", "file_size": 1491157.0, "mtime": "2002-07-05T14:18:32+00:00", "mtime_ts": 1025878712.0, "ctime": "2002-07-05T14:18:32+00:00", "sha256_file": "772666488f65bce7bb15c141b81fea9816bfc28bc4f74145ff3885f58f50946e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:18:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3615", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:18:34", "EXIF DateTimeDigitized": "2002:07:05 14:18:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "153/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "822/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090945", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "351", "MakerNote TargetAperture": "153", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdfea8686cb9afcd9f69968beb6a8631b0c334b96f268d738d52748f6ec5b8b4", "phash": "e6d999a624197374", "dhash": "e6e418c8ce4cc882", "phash_int": -1.8122484361906455e+18, "collected_at": "2026-05-22T04:28:36.100569+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0946_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0946_IMG.JPG", "file_name": "109-0946_IMG.JPG", "file_stem": "109-0946_IMG", "file_ext": ".jpg", "file_size": 1499934.0, "mtime": "2002-07-05T14:18:40+00:00", "mtime_ts": 1025878720.0, "ctime": "2002-07-05T14:18:40+00:00", "sha256_file": "1d170aef8ef6f08e324c72a35d6993677e18c0339009fc2d020f03a0ebe9705a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:18:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4060", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:18:41", "EXIF DateTimeDigitized": "2002:07:05 14:18:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "47/8", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090946", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5875"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "afd58e8322a80a21b7433afcf229af4b5e7dcfc42ab1cd52c09ead790a1108c5", "phash": "e5de9e21a08f1978", "dhash": "e42c30969686c6ac", "phash_int": -1.8828937269294467e+18, "collected_at": "2026-05-22T04:28:36.230702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0947_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0947_IMG.JPG", "file_name": "109-0947_IMG.JPG", "file_stem": "109-0947_IMG", "file_ext": ".jpg", "file_size": 1493980.0, "mtime": "2002-07-05T14:18:58+00:00", "mtime_ts": 1025878738.0, "ctime": "2002-07-05T14:18:58+00:00", "sha256_file": "c2a16e9a956e253fbc972d6b527e5af9023fde479fa9773353dd80390a240221", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:18:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4591", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:18:59", "EXIF DateTimeDigitized": "2002:07:05 14:18:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4119/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090947", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "336", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4119"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fe4d326584797ebcbe6b7bdfcc384be9f1a20323c8c7f66fc9dd5a4251b2294", "phash": "fa9d9562e6875818", "dhash": "ca39395181858199", "phash_int": -3.879897408770314e+17, "collected_at": "2026-05-22T04:28:36.247708+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0949_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0949_IMG.JPG", "file_name": "109-0949_IMG.JPG", "file_stem": "109-0949_IMG", "file_ext": ".jpg", "file_size": 864177.0, "mtime": "2002-07-05T14:19:36+00:00", "mtime_ts": 1025878776.0, "ctime": "2002-07-05T14:19:36+00:00", "sha256_file": "2fe5011e4ebea1405b594639608d48db741ac3aea999fa6e26b2a9c0be3b8e45", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:19:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4973", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:19:38", "EXIF DateTimeDigitized": "2002:07:05 14:19:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2761/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090949", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5522"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4849301ff4235d915b839c6e9a353c39ee382c3ecb182bb9d12e059a6c48cd61", "phash": "cd241a6b9df286e4", "dhash": "3ba7241212011970", "phash_int": -3.6647751472590013e+18, "collected_at": "2026-05-22T04:28:36.331707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0948_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0948_IMG.JPG", "file_name": "109-0948_IMG.JPG", "file_stem": "109-0948_IMG", "file_ext": ".jpg", "file_size": 1597679.0, "mtime": "2002-07-05T14:19:04+00:00", "mtime_ts": 1025878744.0, "ctime": "2002-07-05T14:19:04+00:00", "sha256_file": "2a3ea7b98f62d48ce855dae8b4db4ad0fd064f7b51b8575b4d15bbc6382ac3af", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:19:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4994", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:19:05", "EXIF DateTimeDigitized": "2002:07:05 14:19:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2789/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090948", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "332", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5578"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a9970b0e67315415a22a96dbfe8ee15cbd63dc93bd7cf6753ebe5e4e7024ed7", "phash": "edd69238b8882b4f", "dhash": "a664602223032362", "phash_int": -1.308697869392795e+18, "collected_at": "2026-05-22T04:28:36.347800+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0950_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0950_IMG.JPG", "file_name": "109-0950_IMG.JPG", "file_stem": "109-0950_IMG", "file_ext": ".jpg", "file_size": 873372.0, "mtime": "2002-07-05T14:19:42+00:00", "mtime_ts": 1025878782.0, "ctime": "2002-07-05T14:19:42+00:00", "sha256_file": "8d7b3f5b15e9ba2021c7bea0e494fa06213951150413ea09c71b3a9eb714340b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:19:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4262", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:19:44", "EXIF DateTimeDigitized": "2002:07:05 14:19:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "921/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090950", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7368"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7f0baf9207ec740cdca853bf3679256ad45bf4a202aa16a0fe1630fde69b8ad", "phash": "b8c3c727e3c3c232", "dhash": "c0b0b5393d3e3e34", "phash_int": -5.133040176133324e+18, "collected_at": "2026-05-22T04:28:36.404799+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0951_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0951_IMG.JPG", "file_name": "109-0951_IMG.JPG", "file_stem": "109-0951_IMG", "file_ext": ".jpg", "file_size": 1653033.0, "mtime": "2002-07-05T14:19:52+00:00", "mtime_ts": 1025878792.0, "ctime": "2002-07-05T14:19:52+00:00", "sha256_file": "d16dfbfc101e1e612ff32c72167a1f24edb4cf4daf2e86edc980bd8c226b9906", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 14:19:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4180", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 14:19:54", "EXIF DateTimeDigitized": "2002:07:05 14:19:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6763/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090951", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6763"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3d5202c194bb0f5eba1a8b3ef4d5b020a26bf5eda05f11e501b1eab04b80f6a", "phash": "dc94b2caeaa13555", "dhash": "05181c2020202101", "phash_int": -2.552218504222657e+18, "collected_at": "2026-05-22T04:28:36.419802+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0952_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0952_IMG.JPG", "file_name": "109-0952_IMG.JPG", "file_stem": "109-0952_IMG", "file_ext": ".jpg", "file_size": 1536987.0, "mtime": "2002-07-05T15:24:18+00:00", "mtime_ts": 1025882658.0, "ctime": "2002-07-05T15:24:18+00:00", "sha256_file": "2e2b6b43343a936bebf4af3c556d23d7f07e862150609424fe9af8192b791525", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:24:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5249", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:24:20", "EXIF DateTimeDigitized": "2002:07:05 15:24:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090952", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5b84f80a9b7d18c87cbbf1ee9e2d615986e3b358ba57f01e34d068982bf3fb41", "phash": "c22d916797783d43", "dhash": "2c0303284c82c8c8", "phash_int": -4.4547445822906537e+18, "collected_at": "2026-05-22T04:28:36.528940+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0953_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0953_IMG.JPG", "file_name": "109-0953_IMG.JPG", "file_stem": "109-0953_IMG", "file_ext": ".jpg", "file_size": 1507923.0, "mtime": "2002-07-05T15:24:36+00:00", "mtime_ts": 1025882676.0, "ctime": "2002-07-05T15:24:36+00:00", "sha256_file": "450b34dbd40c7f2dca73829039db3820e7c70198b89293993b63cdf74bbaac62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:24:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5166", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:24:37", "EXIF DateTimeDigitized": "2002:07:05 15:24:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090953", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61b7207797741a81f95cf6d94194f3287128b365392fbf2af0ca9131b5497b57", "phash": "a5b65ca199496d5a", "dhash": "deccc7cecec7c7c3", "phash_int": -6.505910762558887e+18, "collected_at": "2026-05-22T04:28:36.540939+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0955_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0955_IMG.JPG", "file_name": "109-0955_IMG.JPG", "file_stem": "109-0955_IMG", "file_ext": ".jpg", "file_size": 1491277.0, "mtime": "2002-07-05T15:25:12+00:00", "mtime_ts": 1025882712.0, "ctime": "2002-07-05T15:25:12+00:00", "sha256_file": "21675a71d7f6dd122afa4c9891853aa5f5e068d6fb73aa541c6bf3e0ed89df0d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:25:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5143", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:25:14", "EXIF DateTimeDigitized": "2002:07:05 15:25:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "757/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090955", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6056"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85f14fb0d7d7654524510d8028621ff35cccdfc5eef45726ce63cb7377ae876e", "phash": "a96a5b9b4acc964a", "dhash": "838387879f9a92c6", "phash_int": -6.23907361123542e+18, "collected_at": "2026-05-22T04:28:36.641943+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0954_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0954_IMG.JPG", "file_name": "109-0954_IMG.JPG", "file_stem": "109-0954_IMG", "file_ext": ".jpg", "file_size": 1572241.0, "mtime": "2002-07-05T15:24:54+00:00", "mtime_ts": 1025882694.0, "ctime": "2002-07-05T15:24:54+00:00", "sha256_file": "b396b4df5f950a6675d608cdb83e577813aed0a4494f2429c6c33c6ec5abd3f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:24:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5101", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:24:56", "EXIF DateTimeDigitized": "2002:07:05 15:24:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090954", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "353", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2714"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdd2f8bd91815ccd240d0276df12b048bca7bdf5a0b9ec55d269e21672f7ab33", "phash": "978b4c966554cb63", "dhash": "4858585c4c484c46", "phash_int": -7.526838143390791e+18, "collected_at": "2026-05-22T04:28:36.648943+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0956_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0956_IMG.JPG", "file_name": "109-0956_IMG.JPG", "file_stem": "109-0956_IMG", "file_ext": ".jpg", "file_size": 1481527.0, "mtime": "2002-07-05T15:25:30+00:00", "mtime_ts": 1025882730.0, "ctime": "2002-07-05T15:25:30+00:00", "sha256_file": "9d25fb542a5b5dd3d08b8f8809076d7d0a2dcf9e53c771df92c85ce7cb0c9f56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:25:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5879", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:25:31", "EXIF DateTimeDigitized": "2002:07:05 15:25:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "121/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090956", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "968"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "040ce0486d8e5607d86cd18aafd1511d657eb7de06952ca9fac05a18adfc5df6", "phash": "e4d4abc663bc2847", "dhash": "e6242284cc272f1b", "phash_int": -1.9577510694341734e+18, "collected_at": "2026-05-22T04:28:36.771003+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0957_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0957_IMG.JPG", "file_name": "109-0957_IMG.JPG", "file_stem": "109-0957_IMG", "file_ext": ".jpg", "file_size": 1525023.0, "mtime": "2002-07-05T15:26:00+00:00", "mtime_ts": 1025882760.0, "ctime": "2002-07-05T15:26:00+00:00", "sha256_file": "772d13987e9062d9d0c70731c29660a0125dffdd9e3317bf58abe980d7b5be98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:26:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5175", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:26:02", "EXIF DateTimeDigitized": "2002:07:05 15:26:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090957", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f21fef98a04ecabada77039cc323dd2d2350c4f7bfc7be5173e21d53af4ef560", "phash": "d6a5a886e634da99", "dhash": "c6ce384c4c6564c5", "phash_int": -2.9797902810944077e+18, "collected_at": "2026-05-22T04:28:36.791242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0959_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0959_IMG.JPG", "file_name": "109-0959_IMG.JPG", "file_stem": "109-0959_IMG", "file_ext": ".jpg", "file_size": 1381276.0, "mtime": "2002-07-05T15:26:42+00:00", "mtime_ts": 1025882802.0, "ctime": "2002-07-05T15:26:42+00:00", "sha256_file": "7fffe49e78b71eb2ed978897f5e94f8f5b99f627a7f2678437428aa559a97ad7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:26:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5433", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:26:43", "EXIF DateTimeDigitized": "2002:07:05 15:26:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "261/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090959", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "350", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1305"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5627ef0e3c00f2c80a68e07350b938f5ad4b7cf40c399bcc1b7bf6967fae120", "phash": "f8b56a6cc94a989c", "dhash": "032ebc1a1a252129", "phash_int": -5.253967660526734e+17, "collected_at": "2026-05-22T04:28:36.886319+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0958_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0958_IMG.JPG", "file_name": "109-0958_IMG.JPG", "file_stem": "109-0958_IMG", "file_ext": ".jpg", "file_size": 1546399.0, "mtime": "2002-07-05T15:26:12+00:00", "mtime_ts": 1025882772.0, "ctime": "2002-07-05T15:26:12+00:00", "sha256_file": "69bafda3d7dffb9385cca12440e7b485ef4ae0ed5045c5c61be6e5f523ca8ba7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:26:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5743", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:26:14", "EXIF DateTimeDigitized": "2002:07:05 15:26:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090958", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55726b6e015e53c82993f6878d3d5f609ef4778a8516ca4a9fdeaa754d063c6f", "phash": "ded965954a94164b", "dhash": "821c6931b17cb683", "phash_int": -2.388766435467586e+18, "collected_at": "2026-05-22T04:28:36.898317+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0960_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0960_IMG.JPG", "file_name": "109-0960_IMG.JPG", "file_stem": "109-0960_IMG", "file_ext": ".jpg", "file_size": 1517095.0, "mtime": "2002-07-05T15:26:52+00:00", "mtime_ts": 1025882812.0, "ctime": "2002-07-05T15:26:52+00:00", "sha256_file": "6807fcaa798ffbb80010dd8b4c75250fe4bb91e45980f3a9e0239329f6e79eb3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:26:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5534", "EXIF ExposureTime": "1/800", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:26:53", "EXIF DateTimeDigitized": "2002:07:05 15:26:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "291/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090960", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1455"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51cfecfbcdb64ed87788ef39a89125f6454401da1431a715f8b763634b908019", "phash": "c7b9b468d41b370c", "dhash": "ac4c4e4ac7e7e464", "phash_int": -4.055011627142269e+18, "collected_at": "2026-05-22T04:28:36.978672+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0961_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0961_IMG.JPG", "file_name": "109-0961_IMG.JPG", "file_stem": "109-0961_IMG", "file_ext": ".jpg", "file_size": 1593054.0, "mtime": "2002-07-05T15:27:14+00:00", "mtime_ts": 1025882834.0, "ctime": "2002-07-05T15:27:14+00:00", "sha256_file": "1df4e9d114a5b411bfe1c0945b0146c4b0837e0fa1e2544b082882ccdbbcd000", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:27:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5406", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:27:16", "EXIF DateTimeDigitized": "2002:07:05 15:27:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090961", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "331", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "033e24d11f231e0847c9470f4e538a330de5c264b0dddab9390dd9c7ce1d213f", "phash": "c3fff007dc813e40", "dhash": "e4113173e369c898", "phash_int": -4.323473200697492e+18, "collected_at": "2026-05-22T04:28:37.010835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0962_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0962_IMG.JPG", "file_name": "109-0962_IMG.JPG", "file_stem": "109-0962_IMG", "file_ext": ".jpg", "file_size": 1474151.0, "mtime": "2002-07-05T15:27:34+00:00", "mtime_ts": 1025882854.0, "ctime": "2002-07-05T15:27:34+00:00", "sha256_file": "3f01a7311b6fee9a9dd01858874caaf179c74c3bf6960d90bc1feaff862758c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:27:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4304", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:27:36", "EXIF DateTimeDigitized": "2002:07:05 15:27:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090962", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2452e8caefab84a4523bbf3d4fcd2ef01efe80f0b2c76b0a57d30782976284eb", "phash": "c8b5d96a2bcd5252", "dhash": "f3f2f4d6c3e3f3f1", "phash_int": -3.984039245314699e+18, "collected_at": "2026-05-22T04:28:37.068167+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0963_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0963_IMG.JPG", "file_name": "109-0963_IMG.JPG", "file_stem": "109-0963_IMG", "file_ext": ".jpg", "file_size": 1360697.0, "mtime": "2002-07-05T15:27:44+00:00", "mtime_ts": 1025882864.0, "ctime": "2002-07-05T15:27:44+00:00", "sha256_file": "cee7c9700579500c31be4a0819d5122403eaa21d03fb0b593ab44ac761b3439e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:27:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3371", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:27:45", "EXIF DateTimeDigitized": "2002:07:05 15:27:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090963", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "549e767e46868c112a9af70120e4bd35a2be821c42dbf289d5c6ca6c40400504", "phash": "d2aab3554d5692a5", "dhash": "f8f9fdf5f0f8fcf8", "phash_int": -3.2666014007527624e+18, "collected_at": "2026-05-22T04:28:37.086298+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0964_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0964_IMG.JPG", "file_name": "109-0964_IMG.JPG", "file_stem": "109-0964_IMG", "file_ext": ".jpg", "file_size": 1439419.0, "mtime": "2002-07-05T15:28:06+00:00", "mtime_ts": 1025882886.0, "ctime": "2002-07-05T15:28:06+00:00", "sha256_file": "56c19fa4bae77e63479724b79b984127d4a714222b00120b08de331996cf64ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:28:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5198", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:28:07", "EXIF DateTimeDigitized": "2002:07:05 15:28:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090964", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ab2384289a86219b2f2d08941ca96e2ad7817d3b1c873fb174d6df372e96a785", "phash": "9cb4f061176c97e8", "dhash": "b030387272703278", "phash_int": -7.154829608189389e+18, "collected_at": "2026-05-22T04:28:37.181303+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0965_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0965_IMG.JPG", "file_name": "109-0965_IMG.JPG", "file_stem": "109-0965_IMG", "file_ext": ".jpg", "file_size": 1588178.0, "mtime": "2002-07-05T15:28:42+00:00", "mtime_ts": 1025882922.0, "ctime": "2002-07-05T15:28:42+00:00", "sha256_file": "32e8a7f121b1ce22227ffd5a8dd1168ba339ca04aa405619aec860dc1dfbd396", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:28:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4590", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:28:43", "EXIF DateTimeDigitized": "2002:07:05 15:28:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6067/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090965", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12134"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5f9b3940f52d019653d441ed253994564b05c7dc0bdcbca4b00023c319d92c7", "phash": "e8c58a734c9433dd", "dhash": "8181818481898181", "phash_int": -1.673779458687618e+18, "collected_at": "2026-05-22T04:28:37.189305+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0967_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0967_IMG.JPG", "file_name": "109-0967_IMG.JPG", "file_stem": "109-0967_IMG", "file_ext": ".jpg", "file_size": 1456867.0, "mtime": "2002-07-05T15:29:20+00:00", "mtime_ts": 1025882960.0, "ctime": "2002-07-05T15:29:20+00:00", "sha256_file": "cd4ac4821aae1567c8c1f85e384d543d2e8e465706a84a4e64bf7204c50df492", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:29:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4946", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:29:22", "EXIF DateTimeDigitized": "2002:07:05 15:29:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090967", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cac3419c64682a7d18c76843c2a272fbd1bcd52b84b9115a4246d9eb0a9b429f", "phash": "ab8dc2380ee378da", "dhash": "e3e2cb47379fcde9", "phash_int": -6.084993975483927e+18, "collected_at": "2026-05-22T04:28:37.271803+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0968_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0968_IMG.JPG", "file_name": "109-0968_IMG.JPG", "file_stem": "109-0968_IMG", "file_ext": ".jpg", "file_size": 1655971.0, "mtime": "2002-07-05T15:29:38+00:00", "mtime_ts": 1025882978.0, "ctime": "2002-07-05T15:29:38+00:00", "sha256_file": "981f44f849fc219bfb60c372d6f66017d5f819d9cbc5d40add7087378b0d456b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:29:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5482", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:29:40", "EXIF DateTimeDigitized": "2002:07:05 15:29:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2331/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090968", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2331"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bed55a77d446a99312aa2e0dc7e525c4f3578140ce6e6e1d6fc9b45babb1b7c", "phash": "ec6ba9544ab0696b", "dhash": "9323032d20363623", "phash_int": -1.4108478787550963e+18, "collected_at": "2026-05-22T04:28:37.339808+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0969_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0969_IMG.JPG", "file_name": "109-0969_IMG.JPG", "file_stem": "109-0969_IMG", "file_ext": ".jpg", "file_size": 1712421.0, "mtime": "2002-07-05T15:29:58+00:00", "mtime_ts": 1025882998.0, "ctime": "2002-07-05T15:29:58+00:00", "sha256_file": "f9ca319bb644646e1e91422120e7a43c9558b8596b12424ab3bda56b3be880bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:29:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5936", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:29:59", "EXIF DateTimeDigitized": "2002:07:05 15:29:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "743/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090969", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "359", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2972"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4df8a548e1ca51ec195878e1c2b59e4f163531af0b63b896078556158d08f62b", "phash": "837da48379267e83", "dhash": "cbeae4696949edcd", "phash_int": -8.971833998071923e+18, "collected_at": "2026-05-22T04:28:37.384808+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0970_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0970_IMG.JPG", "file_name": "109-0970_IMG.JPG", "file_stem": "109-0970_IMG", "file_ext": ".jpg", "file_size": 1459478.0, "mtime": "2002-07-05T15:30:22+00:00", "mtime_ts": 1025883022.0, "ctime": "2002-07-05T15:30:22+00:00", "sha256_file": "3b464c64649362fcf72e5f87ebfc643d8b8651e39edefe45d0ce9e5ed3653b21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:30:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4352", "EXIF ExposureTime": "1/400", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:30:23", "EXIF DateTimeDigitized": "2002:07:05 15:30:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "569/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090970", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2276"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f1baf0dfb0b9a25f9720e16df5187aa175cb6e7e2a1f69d413f21e79981d039", "phash": "f7484c2971ce8e35", "dhash": "4040404c1c4c4440", "phash_int": -6.281684071314519e+17, "collected_at": "2026-05-22T04:28:37.449234+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0971_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0971_IMG.JPG", "file_name": "109-0971_IMG.JPG", "file_stem": "109-0971_IMG", "file_ext": ".jpg", "file_size": 1043210.0, "mtime": "2002-07-05T15:30:32+00:00", "mtime_ts": 1025883032.0, "ctime": "2002-07-05T15:30:32+00:00", "sha256_file": "d1b60f5cb0dfa0fd9a7b48ce02cdcafc422f0021bb574fc2531f4cdf9543e2a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:30:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4885", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:30:34", "EXIF DateTimeDigitized": "2002:07:05 15:30:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2027/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090971", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2027"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e9c97c43049862117ccc8e3266bb559635071814422e390117f8d83a2392977", "phash": "a1ae56469d6ba61a", "dhash": "060e5fdbdbc7d554", "phash_int": -6.796399926366722e+18, "collected_at": "2026-05-22T04:28:37.468313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0973_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0973_IMG.JPG", "file_name": "109-0973_IMG.JPG", "file_stem": "109-0973_IMG", "file_ext": ".jpg", "file_size": 1469639.0, "mtime": "2002-07-05T15:52:54+00:00", "mtime_ts": 1025884374.0, "ctime": "2002-07-05T15:52:54+00:00", "sha256_file": "25f29f58782401147406bcf0b3a96492b4d580ca1aeda6aa92ac8ebc56eed1dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:52:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4908", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:52:55", "EXIF DateTimeDigitized": "2002:07:05 15:52:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2497/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090973", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2497"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c6a9aab1deb8c9a3350e7d6553b50f71c49c767041c022ba84b55cc96ec86a4", "phash": "c291dc4df2b72951", "dhash": "8080c8cc886360a5", "phash_int": -4.4265147313858043e+18, "collected_at": "2026-05-22T04:28:37.533512+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0974_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0974_IMG.JPG", "file_name": "109-0974_IMG.JPG", "file_stem": "109-0974_IMG", "file_ext": ".jpg", "file_size": 1579226.0, "mtime": "2002-07-05T15:53:08+00:00", "mtime_ts": 1025884388.0, "ctime": "2002-07-05T15:53:08+00:00", "sha256_file": "5698303f992ed76ad0a092282aef1a367c937ff652bc5e8792c19819c583adeb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:53:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4953", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:53:09", "EXIF DateTimeDigitized": "2002:07:05 15:53:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1577/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090974", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3154"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63feddef9dc8886f9f394c06858e79e7df0d32d191e10b62be91e7e15ba7c049", "phash": "96e3df1da0c01ca7", "dhash": "484ccc8cec31f070", "phash_int": -7.573964829963052e+18, "collected_at": "2026-05-22T04:28:37.575512+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0975_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0975_IMG.JPG", "file_name": "109-0975_IMG.JPG", "file_stem": "109-0975_IMG", "file_ext": ".jpg", "file_size": 1503086.0, "mtime": "2002-07-05T15:53:22+00:00", "mtime_ts": 1025884402.0, "ctime": "2002-07-05T15:53:22+00:00", "sha256_file": "e2588561ae0201c5d65fb91c02a65397410be7635c066737b556151f05540ea6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:53:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4790", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:53:23", "EXIF DateTimeDigitized": "2002:07:05 15:53:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "419/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090975", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4190"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "15a69879d906fa27aa285358fbc04ea464ba4051538c2713f074c10528881c04", "phash": "d3b1c64cf6b30968", "dhash": "0058181c0143c0cc", "phash_int": -3.192552626970228e+18, "collected_at": "2026-05-22T04:28:37.619513+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0976_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0976_IMG.JPG", "file_name": "109-0976_IMG.JPG", "file_stem": "109-0976_IMG", "file_ext": ".jpg", "file_size": 1350900.0, "mtime": "2002-07-05T15:53:34+00:00", "mtime_ts": 1025884414.0, "ctime": "2002-07-05T15:53:34+00:00", "sha256_file": "6d0cf9b2e4de541a82cb4625f0102015e9d8dcfbe84b070c698f9ae407f57b6f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:53:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3164", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:53:36", "EXIF DateTimeDigitized": "2002:07:05 15:53:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "263/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090976", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "352", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1315"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4bb9b4c2d994211976f6358c5c744071a59e0631ca8517e67f331efeb8a91bd", "phash": "b84b81b434edc95b", "dhash": "fef9f3271e19cfbc", "phash_int": -5.166893536495417e+18, "collected_at": "2026-05-22T04:28:37.662516+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0977_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0977_IMG.JPG", "file_name": "109-0977_IMG.JPG", "file_stem": "109-0977_IMG", "file_ext": ".jpg", "file_size": 1367703.0, "mtime": "2002-07-05T15:54:22+00:00", "mtime_ts": 1025884462.0, "ctime": "2002-07-05T15:54:22+00:00", "sha256_file": "0a30d03b8b8413c1cc3be83085d7ff1fd5573098abc583eb7c2dfc29e06ef6db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:54:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4871", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:54:23", "EXIF DateTimeDigitized": "2002:07:05 15:54:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2621/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090977", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13105"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d0fb86deb11bc1b2a5185df9f72791ed7350d33a644449f9469c779c5710750", "phash": "e5979ace0d0ccccc", "dhash": "cccc0606c6c68687", "phash_int": -1.902882107767862e+18, "collected_at": "2026-05-22T04:28:37.703515+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0978_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0978_IMG.JPG", "file_name": "109-0978_IMG.JPG", "file_stem": "109-0978_IMG", "file_ext": ".jpg", "file_size": 1255307.0, "mtime": "2002-07-05T15:54:28+00:00", "mtime_ts": 1025884468.0, "ctime": "2002-07-05T15:54:28+00:00", "sha256_file": "573ec1092a88773e4c5f6065d4f27cd308f8ac33e98f1a7fbd1999fb9c86872e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:54:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4623", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:54:30", "EXIF DateTimeDigitized": "2002:07:05 15:54:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090978", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4210f0af91f62a91ecb155ab6fa93047d46484089e46ba915a19e04aa85cc5f3", "phash": "eb7183de1c1cc03d", "dhash": "014b8b0f2bc9c9c3", "phash_int": -1.481257812450558e+18, "collected_at": "2026-05-22T04:28:37.746518+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0979_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0979_IMG.JPG", "file_name": "109-0979_IMG.JPG", "file_stem": "109-0979_IMG", "file_ext": ".jpg", "file_size": 1611480.0, "mtime": "2002-07-05T15:54:52+00:00", "mtime_ts": 1025884492.0, "ctime": "2002-07-05T15:54:52+00:00", "sha256_file": "36d3f240007b0df925a056c3c23c3b2c320ab6acc9a89366a6c7f69b2d7dec75", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:54:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5623", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:54:53", "EXIF DateTimeDigitized": "2002:07:05 15:54:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090979", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "240ee8614768eb98c3a7f00477adc871239b538c07c62812c98b41a969d7eee0", "phash": "e0c7bcce535109f2", "dhash": "280cdcd485a7b79f", "phash_int": -2.2496218945011686e+18, "collected_at": "2026-05-22T04:28:37.800046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0980_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0980_IMG.JPG", "file_name": "109-0980_IMG.JPG", "file_stem": "109-0980_IMG", "file_ext": ".jpg", "file_size": 1572187.0, "mtime": "2002-07-05T15:55:00+00:00", "mtime_ts": 1025884500.0, "ctime": "2002-07-05T15:55:00+00:00", "sha256_file": "6182cfdd2a2bc06c1743a3434e973fd5d1116145342d1dff6ad013509f5e1b7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:55:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5898", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:55:01", "EXIF DateTimeDigitized": "2002:07:05 15:55:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090980", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "332", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51db39780e60e561a7ef962f4707a4fb8209d9baba70751296d7b1b583ec1577", "phash": "cc3af1cba5d82649", "dhash": "0d24b4616261c2c6", "phash_int": -3.7304034843599734e+18, "collected_at": "2026-05-22T04:28:37.809118+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0982_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0982_IMG.JPG", "file_name": "109-0982_IMG.JPG", "file_stem": "109-0982_IMG", "file_ext": ".jpg", "file_size": 1540800.0, "mtime": "2002-07-05T15:55:16+00:00", "mtime_ts": 1025884516.0, "ctime": "2002-07-05T15:55:16+00:00", "sha256_file": "50e23c369b045cdee48cfa215d5f81832bb9f9098d59512664772ba096fd3301", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:55:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4999", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:55:17", "EXIF DateTimeDigitized": "2002:07:05 15:55:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090982", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "342", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7397db8bea846a98ac4d89bd9ce883ed41e8a9b53456831eece54e97287bd9b2", "phash": "99e7e4999309057e", "dhash": "d0ace498d9d0b89c", "phash_int": -7.356660118038445e+18, "collected_at": "2026-05-22T04:28:37.925398+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0981_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0981_IMG.JPG", "file_name": "109-0981_IMG.JPG", "file_stem": "109-0981_IMG", "file_ext": ".jpg", "file_size": 1729069.0, "mtime": "2002-07-05T15:55:08+00:00", "mtime_ts": 1025884508.0, "ctime": "2002-07-05T15:55:08+00:00", "sha256_file": "26508c034c629d39b30da0ea3667a1112c83ee3694f8c9e0e64c2e0e0b5392da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:55:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5767", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:55:09", "EXIF DateTimeDigitized": "2002:07:05 15:55:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090981", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e963c476052e63dc01cefffc9142a07f036ce8c122609c2092de91cbd001c35", "phash": "c6aae19aa7c9344b", "dhash": "cc6da5606974d1c4", "phash_int": -4.1312416538028145e+18, "collected_at": "2026-05-22T04:28:37.943549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0983_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0983_IMG.JPG", "file_name": "109-0983_IMG.JPG", "file_stem": "109-0983_IMG", "file_ext": ".jpg", "file_size": 1490680.0, "mtime": "2002-07-05T15:55:24+00:00", "mtime_ts": 1025884524.0, "ctime": "2002-07-05T15:55:24+00:00", "sha256_file": "d6de97c9d8c9e05765d2fec33742c300ddcc8f03fb5d78275d8d8e51668630eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5232", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:55:26", "EXIF DateTimeDigitized": "2002:07:05 15:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090983", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f7c9d65d8c4fec294190bd2f7db5c24ea5584747f656df809c731a94dac13d1", "phash": "e5158d3432574afc", "dhash": "e6e24a8d8fcec2e3", "phash_int": -1.939488809190733e+18, "collected_at": "2026-05-22T04:28:38.003658+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0984_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0984_IMG.JPG", "file_name": "109-0984_IMG.JPG", "file_stem": "109-0984_IMG", "file_ext": ".jpg", "file_size": 1471142.0, "mtime": "2002-07-05T15:55:32+00:00", "mtime_ts": 1025884532.0, "ctime": "2002-07-05T15:55:32+00:00", "sha256_file": "0f407a6d90c67631807d10c40d393280a504733b1ae6ddf7466f8d1cfa774f3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:55:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5161", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:55:33", "EXIF DateTimeDigitized": "2002:07:05 15:55:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090984", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18dd80362b99ee589681eb10b0668ebb4c54ce02831f15141d4e4bd5e79adc4a", "phash": "e554cf853c390b27", "dhash": "e2428b9c8ec6c2c3", "phash_int": -1.9216829698323878e+18, "collected_at": "2026-05-22T04:28:38.025732+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0986_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0986_IMG.JPG", "file_name": "109-0986_IMG.JPG", "file_stem": "109-0986_IMG", "file_ext": ".jpg", "file_size": 1608625.0, "mtime": "2002-07-05T15:56:34+00:00", "mtime_ts": 1025884594.0, "ctime": "2002-07-05T15:56:34+00:00", "sha256_file": "6579d63bcbd7942c0324418373420352c9c54d139a265e32620ca793e228b5fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:56:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4987", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:56:35", "EXIF DateTimeDigitized": "2002:07:05 15:56:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090986", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "353", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4062003a600d2643c5d30be2217f5c74aa908fcf23868ce4d263604ee03b723f", "phash": "e3d4da997023d598", "dhash": "e425478797c3c3c1", "phash_int": -2.029757179491003e+18, "collected_at": "2026-05-22T04:28:38.145861+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0985_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0985_IMG.JPG", "file_name": "109-0985_IMG.JPG", "file_stem": "109-0985_IMG", "file_ext": ".jpg", "file_size": 1618186.0, "mtime": "2002-07-05T15:56:04+00:00", "mtime_ts": 1025884564.0, "ctime": "2002-07-05T15:56:04+00:00", "sha256_file": "46e983066f72c3f906699cad5534aa0d02aebdc9a523cc65955f798dd425929c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:56:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5289", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:56:06", "EXIF DateTimeDigitized": "2002:07:05 15:56:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090985", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17b2862760f0cae28b336527ed7b8aada11416d97cb3f2ac00ebf560f129aac0", "phash": "d3aac4f76856328c", "dhash": "80c0f9092908f4d4", "phash_int": -3.1945244187795e+18, "collected_at": "2026-05-22T04:28:38.161862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0988_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0988_IMG.JPG", "file_name": "109-0988_IMG.JPG", "file_stem": "109-0988_IMG", "file_ext": ".jpg", "file_size": 1529462.0, "mtime": "2002-07-05T16:03:40+00:00", "mtime_ts": 1025885020.0, "ctime": "2002-07-05T16:03:40+00:00", "sha256_file": "4202925b04830a6b3bbe4b07e96bedab21c959f7ec9eec1ccbab5a1fdba7961b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:03:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4886", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:03:42", "EXIF DateTimeDigitized": "2002:07:05 16:03:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090988", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac3dfd0b173d5dff00bb8b94daccaecfbde88b60402c825008d5dbb1d3ef852a", "phash": "99a699669966986b", "dhash": "fefefffef9f1fbf0", "phash_int": -7.375038673833257e+18, "collected_at": "2026-05-22T04:28:38.233868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0987_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0987_IMG.JPG", "file_name": "109-0987_IMG.JPG", "file_stem": "109-0987_IMG", "file_ext": ".jpg", "file_size": 1626051.0, "mtime": "2002-07-05T15:56:46+00:00", "mtime_ts": 1025884606.0, "ctime": "2002-07-05T15:56:46+00:00", "sha256_file": "0f0e01a27d403f7936ab3b4474dc30ea9ee2376c76d6dbcf9af2ead87fa16fba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:56:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5522", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:56:47", "EXIF DateTimeDigitized": "2002:07:05 15:56:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090987", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca658d420a06acb028c09ac03bb94354422e5b7ece999219b2312fccdca2a3ed", "phash": "fa8ac1b55a42da65", "dhash": "f0fac9694d0e8291", "phash_int": -3.93289032793925e+17, "collected_at": "2026-05-22T04:28:38.244867+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0990_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0990_IMG.JPG", "file_name": "109-0990_IMG.JPG", "file_stem": "109-0990_IMG", "file_ext": ".jpg", "file_size": 1714446.0, "mtime": "2002-07-05T16:04:08+00:00", "mtime_ts": 1025885048.0, "ctime": "2002-07-05T16:04:08+00:00", "sha256_file": "4cc851369265ce6af79dfa3bb108eba04e0c643bf2cea3c5f03c9bdf994fcaf9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:04:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5123", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:04:09", "EXIF DateTimeDigitized": "2002:07:05 16:04:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090990", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7498e090231877d9378ae27c24b424eb998e722cfe420128fe7a0441ba1f0f4e", "phash": "94cbd649564b554b", "dhash": "f0fefeffd87efcfc", "phash_int": -7.72484512535522e+18, "collected_at": "2026-05-22T04:28:38.412874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0989_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0989_IMG.JPG", "file_name": "109-0989_IMG.JPG", "file_stem": "109-0989_IMG", "file_ext": ".jpg", "file_size": 1814659.0, "mtime": "2002-07-05T16:03:50+00:00", "mtime_ts": 1025885030.0, "ctime": "2002-07-05T16:03:50+00:00", "sha256_file": "7705bbf8f8ac39d4b5f9c93be9b0d9275aa53e332974a0abb2daec99437c9fdc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:03:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4651", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:03:52", "EXIF DateTimeDigitized": "2002:07:05 16:03:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090989", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "294", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e7838b88e9cb5e47f0cc8b6d784839e0172660f715a2ba0a63db67559eb1ce5", "phash": "8091c1d2f5cabed9", "dhash": "ccfefbf7f6ade3be", "phash_int": -9.182345053420732e+18, "collected_at": "2026-05-22T04:28:38.425881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0992_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0992_IMG.JPG", "file_name": "109-0992_IMG.JPG", "file_stem": "109-0992_IMG", "file_ext": ".jpg", "file_size": 1289606.0, "mtime": "2002-07-05T16:55:08+00:00", "mtime_ts": 1025888108.0, "ctime": "2002-07-05T16:55:08+00:00", "sha256_file": "abeed140d3724c4b7b358425903dd6c088cca821728de56b0f755922f18c30d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:55:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4413", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:55:09", "EXIF DateTimeDigitized": "2002:07:05 16:55:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "641/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090992", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "358", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1282"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe204f8ae9e643922ef8016752c9b425210e5b469417bdf63516ed21f9003a24", "phash": "ec9d135a95266a8d", "dhash": "30b6b6b6b3a1a3a6", "phash_int": -1.3969390296446784e+18, "collected_at": "2026-05-22T04:28:38.562879+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0991_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0991_IMG.JPG", "file_name": "109-0991_IMG.JPG", "file_stem": "109-0991_IMG", "file_ext": ".jpg", "file_size": 1242901.0, "mtime": "2002-07-05T16:55:02+00:00", "mtime_ts": 1025888102.0, "ctime": "2002-07-05T16:55:02+00:00", "sha256_file": "77dd6e2d57d8f53a772c6cbe198f6c92fa42102a5c34f3ace0061608b54139df", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:55:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4473", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:55:03", "EXIF DateTimeDigitized": "2002:07:05 16:55:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "273/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090991", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "345", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1365"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eda7a5913f0fc82f79f0dedb09fa6e58a0d94f6618080cde932ff04490547dbe", "phash": "ec9ff6da81a64205", "dhash": "303676d693918786", "phash_int": -1.3961259411231043e+18, "collected_at": "2026-05-22T04:28:38.565877+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0993_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0993_IMG.JPG", "file_name": "109-0993_IMG.JPG", "file_stem": "109-0993_IMG", "file_ext": ".jpg", "file_size": 1447406.0, "mtime": "2002-07-05T16:55:22+00:00", "mtime_ts": 1025888122.0, "ctime": "2002-07-05T16:55:22+00:00", "sha256_file": "4f9fe08202d06363f29c7bda52cb7c58e9b1c1be8ad4d29c3a3dd5275ab0ea04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 16:55:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4890", "EXIF ExposureTime": "1/250", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 16:55:24", "EXIF DateTimeDigitized": "2002:07:05 16:55:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "161/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090993", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1288"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73969170a98981124beea9f46ae7dbcdb1b4ac3dd0c1eadad38dd7bfd3e51166", "phash": "f2b35c496747152c", "dhash": "08180c4c0f103020", "phash_int": -9.58320825364704e+17, "collected_at": "2026-05-22T04:28:38.688969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0994_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0994_IMG.JPG", "file_name": "109-0994_IMG.JPG", "file_stem": "109-0994_IMG", "file_ext": ".jpg", "file_size": 1717540.0, "mtime": "2002-07-05T17:07:46+00:00", "mtime_ts": 1025888866.0, "ctime": "2002-07-05T17:07:46+00:00", "sha256_file": "e7c462b1b899222a7a7ffca4dae7f44f408ceedc1506ae484a65716e0b8297bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:07:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5629", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:07:48", "EXIF DateTimeDigitized": "2002:07:05 17:07:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090994", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "033d6a65414367788bd4570e13784f4a30826e779dd5999516f07907e7d019dd", "phash": "f6e1c85e6613586c", "dhash": "18a41e4a2e3838e5", "phash_int": -6.570237628543569e+17, "collected_at": "2026-05-22T04:28:38.697048+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0995_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0995_IMG.JPG", "file_name": "109-0995_IMG.JPG", "file_stem": "109-0995_IMG", "file_ext": ".jpg", "file_size": 1559203.0, "mtime": "2002-07-05T17:08:02+00:00", "mtime_ts": 1025888882.0, "ctime": "2002-07-05T17:08:02+00:00", "sha256_file": "3b50954790fc63b37f6156894d9499a6b17d58bc57afda07c50a782362827775", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:08:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4295", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:08:03", "EXIF DateTimeDigitized": "2002:07:05 17:08:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090995", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8974b85cf3fca8c768b6213e9725cda256bbc57573dc90d535cd26374602c49", "phash": "a9d72952bc61dc25", "dhash": "fffdf296bc698b3f", "phash_int": -6.208448125982352e+18, "collected_at": "2026-05-22T04:28:38.788966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0996_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0996_IMG.JPG", "file_name": "109-0996_IMG.JPG", "file_stem": "109-0996_IMG", "file_ext": ".jpg", "file_size": 1637619.0, "mtime": "2002-07-05T17:08:12+00:00", "mtime_ts": 1025888892.0, "ctime": "2002-07-05T17:08:12+00:00", "sha256_file": "a5498470ecd54eb483908af9a3c456e3dbeadd2ce44f0d9a97f079c945c61ca9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:08:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5180", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:08:13", "EXIF DateTimeDigitized": "2002:07:05 17:08:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090996", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f66916b666542528fdb7da20c4bc2a9816a3a5cf306b8b4e89bc442a53367b6c", "phash": "e311ed0dede404d9", "dhash": "86998dcf8b8d878f", "phash_int": -2.0846245084143276e+18, "collected_at": "2026-05-22T04:28:38.810969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0997_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0997_IMG.JPG", "file_name": "109-0997_IMG.JPG", "file_stem": "109-0997_IMG", "file_ext": ".jpg", "file_size": 1562886.0, "mtime": "2002-07-05T17:08:22+00:00", "mtime_ts": 1025888902.0, "ctime": "2002-07-05T17:08:22+00:00", "sha256_file": "dc4d174d32fde717b60439145a5acac38922bd7ffaa171f9cd37df31670b56a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:08:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5424", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:08:24", "EXIF DateTimeDigitized": "2002:07:05 17:08:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090997", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "331", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5551a5aeb842b9569d415d95354e2558c4f80220cdab0b3845c8216834fc856", "phash": "d3bcdc32181c0dde", "dhash": "3c0c7358cdcbd011", "phash_int": -3.1894323283741865e+18, "collected_at": "2026-05-22T04:28:38.959015+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0998_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0998_IMG.JPG", "file_name": "109-0998_IMG.JPG", "file_stem": "109-0998_IMG", "file_ext": ".jpg", "file_size": 1661479.0, "mtime": "2002-07-05T17:08:28+00:00", "mtime_ts": 1025888908.0, "ctime": "2002-07-05T17:08:28+00:00", "sha256_file": "af07d1636c0c9b27d72ed184b4798174cd0d8b1558a5e47993923087e787cee8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:08:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5422", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:08:30", "EXIF DateTimeDigitized": "2002:07:05 17:08:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090998", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6602041ebcdee5f49ffa53f80b53ffcd4aca40c45eb836a0cd8148e2e752b386", "phash": "c18f86d06ac53fb1", "dhash": "c0e0faa39b9ad2f6", "phash_int": -4.4992292730172047e+18, "collected_at": "2026-05-22T04:28:38.979013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\109-0999_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\109-0999_IMG.JPG", "file_name": "109-0999_IMG.JPG", "file_stem": "109-0999_IMG", "file_ext": ".jpg", "file_size": 1659771.0, "mtime": "2002-07-05T17:08:34+00:00", "mtime_ts": 1025888914.0, "ctime": "2002-07-05T17:08:34+00:00", "sha256_file": "df70edda518817fb47c64449e2bc8dab16ce72c5b05d202dcc8607938e8c14db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:08:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5464", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:08:36", "EXIF DateTimeDigitized": "2002:07:05 17:08:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090999", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92e545a77e839e139587ad2b425d248a33f6c9562effbe8e93d9db781ed5b34b", "phash": "c4f3cd74231f603c", "dhash": "008c8acdada464f2", "phash_int": -4.2548313242458276e+18, "collected_at": "2026-05-22T04:28:39.056016+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1001_IMG.JPG", "file_name": "110-1001_IMG.JPG", "file_stem": "110-1001_IMG", "file_ext": ".jpg", "file_size": 1311571.0, "mtime": "2002-07-05T17:09:42+00:00", "mtime_ts": 1025888982.0, "ctime": "2002-07-05T17:09:42+00:00", "sha256_file": "2bc3acf28748019c21fb5ea8001a1585ca6f0fc3e2587e61efe8107ac25aea13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:09:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4513", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:09:43", "EXIF DateTimeDigitized": "2002:07:05 17:09:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "951/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1902"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddbba977b7d9bcfba3ab0e58d3116a8e40e5004bdad29b9123c02648561432ab", "phash": "e7180c663b25fe89", "dhash": "ffc0c0c8c9cdc646", "phash_int": -1.7946708182885993e+18, "collected_at": "2026-05-22T04:28:39.075017+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1003_IMG.JPG", "file_name": "110-1003_IMG.JPG", "file_stem": "110-1003_IMG", "file_ext": ".jpg", "file_size": 1576384.0, "mtime": "2002-07-05T17:10:06+00:00", "mtime_ts": 1025889006.0, "ctime": "2002-07-05T17:10:06+00:00", "sha256_file": "813280ca10085ca28b4183b2cbd0a9179af3ed98c0abef797c0234a659f1bb0b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:10:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5600", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:10:07", "EXIF DateTimeDigitized": "2002:07:05 17:10:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13e8edf97dc004891ddf25def3957a876865ff6d2d0db2e0ab1cfb3f4fbd0c32", "phash": "ec29c66312dc23e7", "dhash": "81c3b3b39fd36664", "phash_int": -1.4293932778929428e+18, "collected_at": "2026-05-22T04:28:39.244024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1002_IMG.JPG", "file_name": "110-1002_IMG.JPG", "file_stem": "110-1002_IMG", "file_ext": ".jpg", "file_size": 1491261.0, "mtime": "2002-07-05T17:09:52+00:00", "mtime_ts": 1025888992.0, "ctime": "2002-07-05T17:09:52+00:00", "sha256_file": "a92d596a70b45ecc1f386581a12ad495616bbd4d71118a875785076a725431f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 17:09:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4710", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 17:09:53", "EXIF DateTimeDigitized": "2002:07:05 17:09:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "903/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1806"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b1e5c42e06e9aa3f78594e64e36c97e2960c8f560e19b5572667f1f8d778fe3", "phash": "f3cb2e981c3c6323", "dhash": "e149c898181c2c0e", "phash_int": -8.795580713771738e+17, "collected_at": "2026-05-22T04:28:39.248022+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1004_IMG.JPG", "file_name": "110-1004_IMG.JPG", "file_stem": "110-1004_IMG", "file_ext": ".jpg", "file_size": 1761231.0, "mtime": "2002-07-05T19:49:18+00:00", "mtime_ts": 1025898558.0, "ctime": "2002-07-05T19:49:18+00:00", "sha256_file": "e7f1237026aceeb6e50dd4832f01dc56e0046322fde5f1d515dea03355e93f66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 19:49:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5673", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 19:49:19", "EXIF DateTimeDigitized": "2002:07:05 19:49:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b98cbe39b5b6ff084a5397c7c2167244b7d2043d118b75e1820288c3911773d6", "phash": "84ba87c1d6617a3e", "dhash": "fcfefb84b4d2d6e4", "phash_int": -8.882638048439731e+18, "collected_at": "2026-05-22T04:28:39.368030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1005_IMG.JPG", "file_name": "110-1005_IMG.JPG", "file_stem": "110-1005_IMG", "file_ext": ".jpg", "file_size": 1681797.0, "mtime": "2002-07-05T19:49:26+00:00", "mtime_ts": 1025898566.0, "ctime": "2002-07-05T19:49:26+00:00", "sha256_file": "ab98bdbd4448296634141faa37fba31230294e504e5b0f3539ac88937759cf68", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 19:49:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4535", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 19:49:28", "EXIF DateTimeDigitized": "2002:07:05 19:49:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1157/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2314"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29c23305f234d0484f95283cca5c5c00da1491e2ff29fc6ccbdfeda0b3978eff", "phash": "d3e5e49a89296e68", "dhash": "f08e0f5ab9798944", "phash_int": -3.1778826096627267e+18, "collected_at": "2026-05-22T04:28:39.422030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1006_IMG.JPG", "file_name": "110-1006_IMG.JPG", "file_stem": "110-1006_IMG", "file_ext": ".jpg", "file_size": 1789537.0, "mtime": "2002-07-05T19:49:38+00:00", "mtime_ts": 1025898578.0, "ctime": "2002-07-05T19:49:38+00:00", "sha256_file": "733d6bd49472c3cefdb4e28feed318c4360aced4da7db344fa7e4b5fdd35ea87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 19:49:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5745", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 19:49:40", "EXIF DateTimeDigitized": "2002:07:05 19:49:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2ce8f5ebfefa5999681051badd5b3e5fee19f348d2f32991ab97dfc6f27b467", "phash": "c19ed2e52d543a63", "dhash": "f8fcf9e6c38bd0d0", "phash_int": -4.494923496319338e+18, "collected_at": "2026-05-22T04:28:39.531415+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1007_IMG.JPG", "file_name": "110-1007_IMG.JPG", "file_stem": "110-1007_IMG", "file_ext": ".jpg", "file_size": 2883381.0, "mtime": "2002-07-06T12:03:04+00:00", "mtime_ts": 1025956984.0, "ctime": "2002-07-06T12:03:04+00:00", "sha256_file": "2bfc39e0cdac69f3f87c6f679c909f64e61120ec8533e97be89164d92553f0dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 12:03:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7967", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 12:03:05", "EXIF DateTimeDigitized": "2002:07:06 12:03:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c17ebb51b7b13393b3dd084ff4c4d4569f958391704328e253338d7398fdd43", "phash": "c73938c2de0431fd", "dhash": "636bea6a68c8e828", "phash_int": -4.091176376889757e+18, "collected_at": "2026-05-22T04:28:39.607424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1008_IMG.JPG", "file_name": "110-1008_IMG.JPG", "file_stem": "110-1008_IMG", "file_ext": ".jpg", "file_size": 2918363.0, "mtime": "2002-07-06T12:03:08+00:00", "mtime_ts": 1025956988.0, "ctime": "2002-07-06T12:03:08+00:00", "sha256_file": "219a117dd22bd41a79acc5ba7de3ab5b39fdcb122d3e67b823a581627ec0b70a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 12:03:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7921", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 12:03:10", "EXIF DateTimeDigitized": "2002:07:06 12:03:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9423e3abfe99cd2d4ac37b5404826735feab1d208da2fc8678fbf14ba5d9cceb", "phash": "c72938e2de0e11fc", "dhash": "ebebea6a4ac86968", "phash_int": -4.095679839077527e+18, "collected_at": "2026-05-22T04:28:39.635420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1010_IMG.JPG", "file_name": "110-1010_IMG.JPG", "file_stem": "110-1010_IMG", "file_ext": ".jpg", "file_size": 2314258.0, "mtime": "2002-07-06T12:04:32+00:00", "mtime_ts": 1025957072.0, "ctime": "2002-07-06T12:04:32+00:00", "sha256_file": "7e59e7c418754dec677b9197bf1557d3eef31aedde3103a27bce83e30cc3f3c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 12:04:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7466", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 12:04:34", "EXIF DateTimeDigitized": "2002:07:06 12:04:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "154", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51e5b6aa7021023793b006fd53244d33d7a3ce4e8b97556bccf8fd3b2299e5d8", "phash": "896e961158aeb72b", "dhash": "e8cc5733d3dfeffc", "phash_int": -8.543726441828796e+18, "collected_at": "2026-05-22T04:28:39.764671+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1009_IMG.JPG", "file_name": "110-1009_IMG.JPG", "file_stem": "110-1009_IMG", "file_ext": ".jpg", "file_size": 2645843.0, "mtime": "2002-07-06T12:04:24+00:00", "mtime_ts": 1025957064.0, "ctime": "2002-07-06T12:04:24+00:00", "sha256_file": "a6c0f92ac981fbe55b3cf6e3b6628164fe338b1f4b36409b7041d3c79752ffa7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 12:04:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7980", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 12:04:25", "EXIF DateTimeDigitized": "2002:07:06 12:04:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cbf72108520690fc7c4cd76e4ba0c22f60d74757caa59c8b53b414c0ff6b7cb", "phash": "8b5ca4a35be4951b", "dhash": "e6a3b91959dfef77", "phash_int": -8.404661783051857e+18, "collected_at": "2026-05-22T04:28:39.781845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1011_IMG.JPG", "file_name": "110-1011_IMG.JPG", "file_stem": "110-1011_IMG", "file_ext": ".jpg", "file_size": 2780272.0, "mtime": "2002-07-06T12:10:58+00:00", "mtime_ts": 1025957458.0, "ctime": "2002-07-06T12:10:58+00:00", "sha256_file": "7a534c270cad024297bdca76858bf09c54600f492791911c65c5a0c8acad6fee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 12:10:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "10180", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 12:10:59", "EXIF DateTimeDigitized": "2002:07:06 12:10:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc7a59036d33d9fb4a39ce5ab0dc46b299700a8b4c3316b246d29a98f8be6d20", "phash": "93624e7c367196cc", "dhash": "0bcbc9dcbd545af8", "phash_int": -7.826606907020175e+18, "collected_at": "2026-05-22T04:28:39.854981+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1012_IMG.JPG", "file_name": "110-1012_IMG.JPG", "file_stem": "110-1012_IMG", "file_ext": ".jpg", "file_size": 1874751.0, "mtime": "2002-07-06T13:39:30+00:00", "mtime_ts": 1025962770.0, "ctime": "2002-07-06T13:39:30+00:00", "sha256_file": "a4e9805dc6c664e2151fe225b12176e082c7ab8b36cd6406b7e0a0a799478a1b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:39:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5300", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:39:31", "EXIF DateTimeDigitized": "2002:07:06 13:39:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14747395b9b3a741257c5bd5e55fd07bbcfafe86b4e9a74aebabd50f2a50b2a9", "phash": "d96626c386d85d87", "dhash": "cc90709052d292b4", "phash_int": -2.7814930986318976e+18, "collected_at": "2026-05-22T04:28:39.903542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1013_IMG.JPG", "file_name": "110-1013_IMG.JPG", "file_stem": "110-1013_IMG", "file_ext": ".jpg", "file_size": 2146903.0, "mtime": "2002-07-06T13:39:46+00:00", "mtime_ts": 1025962786.0, "ctime": "2002-07-06T13:39:46+00:00", "sha256_file": "e90fbb88622134005aec6e06e7b8c3ab6ca7a430c63be6c34509066e67be1d42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:39:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5371", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:39:48", "EXIF DateTimeDigitized": "2002:07:06 13:39:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f7cf7a4ceed39bf931e232fe0bdb6988d9415f37de6332e236e8039071e4a3f", "phash": "d966b24fd887581c", "dhash": "c09070d03092d89c", "phash_int": -2.7813396638497935e+18, "collected_at": "2026-05-22T04:28:39.956630+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1014_IMG.JPG", "file_name": "110-1014_IMG.JPG", "file_stem": "110-1014_IMG", "file_ext": ".jpg", "file_size": 2414062.0, "mtime": "2002-07-06T13:40:06+00:00", "mtime_ts": 1025962806.0, "ctime": "2002-07-06T13:40:06+00:00", "sha256_file": "87c3b67267b93e62d43c4feefcc1cb62156bfbc39e71120fb7bfcce3c780acf7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:40:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5788", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:40:08", "EXIF DateTimeDigitized": "2002:07:06 13:40:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9d7ca4c42a92093b6e9ce6f3f0488cfa5dfc81457613b91181b5655d0584034", "phash": "d04fb0dec332c6d2", "dhash": "e8e0c0d8e0349cc8", "phash_int": -3.436333519856286e+18, "collected_at": "2026-05-22T04:28:40.145636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1015_IMG.JPG", "file_name": "110-1015_IMG.JPG", "file_stem": "110-1015_IMG", "file_ext": ".jpg", "file_size": 2365589.0, "mtime": "2002-07-06T13:40:22+00:00", "mtime_ts": 1025962822.0, "ctime": "2002-07-06T13:40:22+00:00", "sha256_file": "e6910edb8f887857c9e8e41177823f24e50665b40aa718d412c782c390264eac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:40:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5839", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:40:23", "EXIF DateTimeDigitized": "2002:07:06 13:40:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec4ab67343f73c36cd2bf80d5d93eb09c9910b3f2fe54034ac982c173fe7fa86", "phash": "c4426b97157ce2cd", "dhash": "c0c280b0e6c42602", "phash_int": -4.3047599971680333e+18, "collected_at": "2026-05-22T04:28:40.151635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1016_IMG.JPG", "file_name": "110-1016_IMG.JPG", "file_stem": "110-1016_IMG", "file_ext": ".jpg", "file_size": 2120414.0, "mtime": "2002-07-06T13:40:38+00:00", "mtime_ts": 1025962838.0, "ctime": "2002-07-06T13:40:38+00:00", "sha256_file": "e3f3f90df3563b8501c00b96f2c97f355a7a038286908032a290a5fc5dccbca7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:40:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5012", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:40:39", "EXIF DateTimeDigitized": "2002:07:06 13:40:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3859/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3859"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c3dc769636ae7fbc8622bb31afd3bba385b62391c2e7c9f556410c6b8b0268d", "phash": "975d6067a596d09a", "dhash": "4619387279c8cc8c", "phash_int": -7.53976420287232e+18, "collected_at": "2026-05-22T04:28:40.276638+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1017_IMG.JPG", "file_name": "110-1017_IMG.JPG", "file_stem": "110-1017_IMG", "file_ext": ".jpg", "file_size": 2485932.0, "mtime": "2002-07-06T13:47:02+00:00", "mtime_ts": 1025963222.0, "ctime": "2002-07-06T13:47:02+00:00", "sha256_file": "c3f29d7a04f67935a05837cb3ac52363f43f17326b9f76b99f021626a95f27e2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:47:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6750", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:47:04", "EXIF DateTimeDigitized": "2002:07:06 13:47:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29e5429adb95d5a711a1ce1b4e60563cc832a80c4065004e3add048103171b27", "phash": "9468c2dad4dec2da", "dhash": "a082d336f4fc38cc", "phash_int": -7.752732513388281e+18, "collected_at": "2026-05-22T04:28:40.312642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\Rotation of 109-0953_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\Rotation of 109-0953_IMG.JPG", "file_name": "Rotation of 109-0953_IMG.JPG", "file_stem": "Rotation of 109-0953_IMG", "file_ext": ".jpg", "file_size": 1502597.0, "mtime": "2002-07-05T15:24:36+00:00", "mtime_ts": 1025882676.0, "ctime": "2002-07-05T15:24:36+00:00", "sha256_file": "a2037ac2866ed7d85be08dd764cc0e9ac66104e94ccfe07c669fc0565323b279", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:05 15:24:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5166", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:05 15:24:37", "EXIF DateTimeDigitized": "2002:07:05 15:24:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090953", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f503d575da8b24cf9753a799496959f3a15028d916bd240fe9d02478cdec431c", "phash": "8c72833c6ab734cb", "dhash": "2eb64635b7b6eaf3", "phash_int": -8.326448465542958e+18, "collected_at": "2026-05-22T04:28:40.434078+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-06\\110-1018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-06\\110-1018_IMG.JPG", "file_name": "110-1018_IMG.JPG", "file_stem": "110-1018_IMG", "file_ext": ".jpg", "file_size": 2501831.0, "mtime": "2002-07-06T13:47:10+00:00", "mtime_ts": 1025963230.0, "ctime": "2002-07-06T13:47:10+00:00", "sha256_file": "014913eaeb1cdfba213e7b855a04d2574c79bc6d125409d05a54e74eb3819ace", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:06 13:47:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6831", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:06 13:47:12", "EXIF DateTimeDigitized": "2002:07:06 13:47:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd097f406a37ac950ca8d2e6966147898bf58a93b15d9411e3aa7e10cbc96dc6", "phash": "9468c2dad4dfc2ca", "dhash": "a08ed636f4f878cc", "phash_int": -7.752732513388215e+18, "collected_at": "2026-05-22T04:28:40.437082+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1136_IMG.JPG", "file_name": "111-1136_IMG.JPG", "file_stem": "111-1136_IMG", "file_ext": ".jpg", "file_size": 2148207.0, "mtime": "2002-07-13T11:05:30+00:00", "mtime_ts": 1026558330.0, "ctime": "2002-07-13T11:05:30+00:00", "sha256_file": "9477f5741807c90cc49d0f140c6df6c7ad8d6c1536d580e2152f651344895ec0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:05:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6853", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:05:32", "EXIF DateTimeDigitized": "2002:07:13 11:05:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "208", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b4d4d683469aef6a751a26ec9c745487fd10c5ebf763f5c79d99b6317b9807f", "phash": "fb612c24849bda7c", "dhash": "840a09480c193918", "phash_int": -3.329363620934547e+17, "collected_at": "2026-05-22T04:28:40.639089+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1137_IMG.JPG", "file_name": "111-1137_IMG.JPG", "file_stem": "111-1137_IMG", "file_ext": ".jpg", "file_size": 2274629.0, "mtime": "2002-07-13T11:05:38+00:00", "mtime_ts": 1026558338.0, "ctime": "2002-07-13T11:05:38+00:00", "sha256_file": "4b48e545d930a3a2556b4dfde72f728ad09390505be74b57d3e2e82c91388fee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:05:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5541", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:05:40", "EXIF DateTimeDigitized": "2002:07:13 11:05:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "276", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de098adc14c9b77abc674cc02538df02404c1d16b9f1a81a43990fd7a5e2649a", "phash": "8f8f87c2c5793078", "dhash": "e8737b73f2df6bff", "phash_int": -8.102107934009774e+18, "collected_at": "2026-05-22T04:28:40.647175+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1138_IMG.JPG", "file_name": "111-1138_IMG.JPG", "file_stem": "111-1138_IMG", "file_ext": ".jpg", "file_size": 1824282.0, "mtime": "2002-07-13T11:05:44+00:00", "mtime_ts": 1026558344.0, "ctime": "2002-07-13T11:05:44+00:00", "sha256_file": "c33165c658f0725da92a671850d5712dde2da48dccd599837020e43624e76e9e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:05:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4156", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:05:45", "EXIF DateTimeDigitized": "2002:07:13 11:05:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9b51b3d05184eb0169854b11b9e633cb66d57acacfc7535d1c0f51716db05b2", "phash": "84fcb3fa613d908a", "dhash": "07c0f0f6e1f8f8d8", "phash_int": -8.864012078617358e+18, "collected_at": "2026-05-22T04:28:40.747379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1139_IMG.JPG", "file_name": "111-1139_IMG.JPG", "file_stem": "111-1139_IMG", "file_ext": ".jpg", "file_size": 1917289.0, "mtime": "2002-07-13T11:15:14+00:00", "mtime_ts": 1026558914.0, "ctime": "2002-07-13T11:15:14+00:00", "sha256_file": "4b891a5d7206942135288470dcb6d91a0d0852dd9f2967ad2c3e630e5366d6df", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:15:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6294", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:15:15", "EXIF DateTimeDigitized": "2002:07:13 11:15:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/10", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 241, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3100"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d95071130b081108b476e96d3c9791afd8c726b520aa19eec86ee36122df04d9", "phash": "89197767d8982727", "dhash": "32d0eab1e34f52cc", "phash_int": -8.567685528196471e+18, "collected_at": "2026-05-22T04:28:40.762645+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1140_IMG.JPG", "file_name": "111-1140_IMG.JPG", "file_stem": "111-1140_IMG", "file_ext": ".jpg", "file_size": 3426031.0, "mtime": "2002-07-13T11:56:46+00:00", "mtime_ts": 1026561406.0, "ctime": "2002-07-13T11:56:46+00:00", "sha256_file": "f1508d03030872ebe6563f7f437b832a9cb42ca100248dabcde3e2111f8a19c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:56:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7675", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:56:47", "EXIF DateTimeDigitized": "2002:07:13 11:56:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6611fb7e3a1e7761609c948472986ca961de1fe3482ac050dec6fc8fdd8775c0", "phash": "811a2e75fe9502f5", "dhash": "7cf9fcfcdcd6d60f", "phash_int": -9.143945009105141e+18, "collected_at": "2026-05-22T04:28:40.951535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1141_IMG.JPG", "file_name": "111-1141_IMG.JPG", "file_stem": "111-1141_IMG", "file_ext": ".jpg", "file_size": 3177059.0, "mtime": "2002-07-13T11:56:54+00:00", "mtime_ts": 1026561414.0, "ctime": "2002-07-13T11:56:54+00:00", "sha256_file": "97eda66dad5e27448c1d8339525453bbcb7cd72e8badedabc98b560b3e92173b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 11:56:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7908", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 11:56:55", "EXIF DateTimeDigitized": "2002:07:13 11:56:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "303/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[99, 102, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2424"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5377c083d52f24796f06df79410e28622cccfc402e0dfa838fce16736148a5ea", "phash": "8d1b5e3e5a72b023", "dhash": "396bd27872226264", "phash_int": -8.278919868092076e+18, "collected_at": "2026-05-22T04:28:40.958617+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1142_IMG.JPG", "file_name": "111-1142_IMG.JPG", "file_stem": "111-1142_IMG", "file_ext": ".jpg", "file_size": 2063186.0, "mtime": "2002-07-13T12:18:16+00:00", "mtime_ts": 1026562696.0, "ctime": "2002-07-13T12:18:16+00:00", "sha256_file": "0a71188375ef1ef181369110bb90e2d12a34bfac6650baeec5a5fccf7a3cd81e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:18:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5804", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:18:18", "EXIF DateTimeDigitized": "2002:07:13 12:18:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4487/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4487"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98e5adb978d3688562a12cb54dd9f224349bee4c1704987935eb95eb383bcec3", "phash": "8662cd9d6b58932e", "dhash": "ede6cc9deffcf0ec", "phash_int": -8.763215848915037e+18, "collected_at": "2026-05-22T04:28:41.066746+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1143_IMG.JPG", "file_name": "111-1143_IMG.JPG", "file_stem": "111-1143_IMG", "file_ext": ".jpg", "file_size": 2186114.0, "mtime": "2002-07-13T12:18:46+00:00", "mtime_ts": 1026562726.0, "ctime": "2002-07-13T12:18:46+00:00", "sha256_file": "65a67bec5a4ab8e149f6457dd2dc082c28930b2244ede9ddbde3b95128242231", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:18:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6489", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:18:48", "EXIF DateTimeDigitized": "2002:07:13 12:18:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4487/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4487"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bf964384994173277e593e271370a4d7f3851962b7580ce278b6954a9c311f5", "phash": "b84eb1e718c6dc2a", "dhash": "1353b9f48f068f9f", "phash_int": -5.165996116436133e+18, "collected_at": "2026-05-22T04:28:41.068756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1145_IMG.JPG", "file_name": "111-1145_IMG.JPG", "file_stem": "111-1145_IMG", "file_ext": ".jpg", "file_size": 1479960.0, "mtime": "2002-07-13T12:21:14+00:00", "mtime_ts": 1026562874.0, "ctime": "2002-07-13T12:21:14+00:00", "sha256_file": "464421fe42a684205633de3ae782bd0da9e25c74effa8a026f081b0c98570eef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:21:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5322", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:21:15", "EXIF DateTimeDigitized": "2002:07:13 12:21:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd09a12e465f4655156f21816aeb8e59625c3c226f708b014c31045d34addb2c", "phash": "ce2b70d8c29df063", "dhash": "814bb661e1302205", "phash_int": -3.590652201617461e+18, "collected_at": "2026-05-22T04:28:41.210632+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1144_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1144_IMG.JPG", "file_name": "111-1144_IMG.JPG", "file_stem": "111-1144_IMG", "file_ext": ".jpg", "file_size": 2053535.0, "mtime": "2002-07-13T12:18:56+00:00", "mtime_ts": 1026562736.0, "ctime": "2002-07-13T12:18:56+00:00", "sha256_file": "c1eaeb70fa8463c5b19e8af6c250334ba93b4e44a3a9604f7a887b185fa2b3c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:18:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6699", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:18:57", "EXIF DateTimeDigitized": "2002:07:13 12:18:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2809/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111144", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2809"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d23bf4015d9e819bb0255dcba6e7967ca7107e123413120600576bfa5659784", "phash": "c951b64eb6c99926", "dhash": "66cc9bd3abb3332f", "phash_int": -3.9401677497821036e+18, "collected_at": "2026-05-22T04:28:41.214630+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1146_IMG.JPG", "file_name": "111-1146_IMG.JPG", "file_stem": "111-1146_IMG", "file_ext": ".jpg", "file_size": 1771631.0, "mtime": "2002-07-13T12:21:24+00:00", "mtime_ts": 1026562884.0, "ctime": "2002-07-13T12:21:24+00:00", "sha256_file": "1ca1757ea19957554ee45f2d751b2c8c5046fb06153ac95c789f1ea495ce56a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:21:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5706", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:21:25", "EXIF DateTimeDigitized": "2002:07:13 12:21:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63fba826d1b00e48e32df7e31477268c13bef5f471df84d73aadbe00d081a2c0", "phash": "cc33e6d8c894f2cc", "dhash": "8003cefaf390a003", "phash_int": -3.7323858474074803e+18, "collected_at": "2026-05-22T04:28:41.406635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1147_IMG.JPG", "file_name": "111-1147_IMG.JPG", "file_stem": "111-1147_IMG", "file_ext": ".jpg", "file_size": 1504842.0, "mtime": "2002-07-13T12:21:32+00:00", "mtime_ts": 1026562892.0, "ctime": "2002-07-13T12:21:32+00:00", "sha256_file": "a17d300ee9231c8fc7db33faab4acce737281eb437253e37316a5add445f3fab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:21:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6472", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:21:34", "EXIF DateTimeDigitized": "2002:07:13 12:21:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bee50400a5d00ff89fe810a559a87fce439e285055b713e688822be9c946589", "phash": "d90ce8d51669e935", "dhash": "f0f0f2f878989291", "phash_int": -2.8066124658569436e+18, "collected_at": "2026-05-22T04:28:41.418634+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1149_IMG.JPG", "file_name": "111-1149_IMG.JPG", "file_stem": "111-1149_IMG", "file_ext": ".jpg", "file_size": 1780649.0, "mtime": "2002-07-13T12:22:14+00:00", "mtime_ts": 1026562934.0, "ctime": "2002-07-13T12:22:14+00:00", "sha256_file": "0c2f591f29b7ce602d6d005f7c962e581201440e09884a54c14b3bec1eba9bbd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:22:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6328", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:22:15", "EXIF DateTimeDigitized": "2002:07:13 12:22:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cb99a481f093202a762fa44115e57a845e94a86fbcf6d18e2af3501c3b66d0e", "phash": "c97fbc5326b6a081", "dhash": "207373705290b0b2", "phash_int": -3.927213284725973e+18, "collected_at": "2026-05-22T04:28:41.553641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1148_IMG.JPG", "file_name": "111-1148_IMG.JPG", "file_stem": "111-1148_IMG", "file_ext": ".jpg", "file_size": 1433777.0, "mtime": "2002-07-13T12:22:10+00:00", "mtime_ts": 1026562930.0, "ctime": "2002-07-13T12:22:10+00:00", "sha256_file": "4d3df9b9ddb10e586079b33298de238e9cd8bcb9f3bb062450f2c79ae9e1c503", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:22:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6434", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:22:11", "EXIF DateTimeDigitized": "2002:07:13 12:22:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111148", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "121dc7eea1fec0f28ae53b8d8d7994ba6ea7b10099ce9f44b26fd70361f40319", "phash": "cc63b7c8413cf1ac", "dhash": "00435470a2b036b2", "phash_int": -3.7189267965620424e+18, "collected_at": "2026-05-22T04:28:41.561646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1150_IMG.JPG", "file_name": "111-1150_IMG.JPG", "file_stem": "111-1150_IMG", "file_ext": ".jpg", "file_size": 2008032.0, "mtime": "2002-07-13T12:22:22+00:00", "mtime_ts": 1026562942.0, "ctime": "2002-07-13T12:22:22+00:00", "sha256_file": "46b27d3bf84baa5531b0dbda6fce5afd57c75e9153ce7d8a07df0a50f727b51e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:22:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5977", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:22:23", "EXIF DateTimeDigitized": "2002:07:13 12:22:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3cd3f0deebf21c1528611f443dc92210373599ab37d39e6887b28ddc7e6b8e06", "phash": "d968e66e990f6c84", "dhash": "e286d2f8f8107cec", "phash_int": -2.7807194072125655e+18, "collected_at": "2026-05-22T04:28:41.782896+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1151_IMG.JPG", "file_name": "111-1151_IMG.JPG", "file_stem": "111-1151_IMG", "file_ext": ".jpg", "file_size": 1921419.0, "mtime": "2002-07-13T12:22:38+00:00", "mtime_ts": 1026562958.0, "ctime": "2002-07-13T12:22:38+00:00", "sha256_file": "83e4da75d19b8eb778a9e1ed6f533f6ab97c457e92d8a67a8571832fe119fc64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:22:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5877", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:22:40", "EXIF DateTimeDigitized": "2002:07:13 12:22:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1897/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3794"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "077d291a3d41e3ba7ac48b9d76675a5b6e9df1241bba97ac8d0cc46610437b41", "phash": "cc276cd8714b8e36", "dhash": "59a764c190a121a6", "phash_int": -3.7358976890110244e+18, "collected_at": "2026-05-22T04:28:41.789993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1152_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1152_IMG.JPG", "file_name": "111-1152_IMG.JPG", "file_stem": "111-1152_IMG", "file_ext": ".jpg", "file_size": 1794068.0, "mtime": "2002-07-13T12:22:46+00:00", "mtime_ts": 1026562966.0, "ctime": "2002-07-13T12:22:46+00:00", "sha256_file": "d6ddd11596be78aabf824e08442036ed67e4081f06eeaa8d8dbded37f1048e05", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 12:22:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5632", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 12:22:48", "EXIF DateTimeDigitized": "2002:07:13 12:22:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3539/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111152", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3539"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10c76da0639b602873412f25b76eaba78d7ef15770e19b0ac9653210d28b2997", "phash": "ca2778d9438eb469", "dhash": "5da16764d0b0a110", "phash_int": -3.879999679419731e+18, "collected_at": "2026-05-22T04:28:41.886379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1153_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1153_IMG.JPG", "file_name": "111-1153_IMG.JPG", "file_stem": "111-1153_IMG", "file_ext": ".jpg", "file_size": 1736137.0, "mtime": "2002-07-13T13:26:10+00:00", "mtime_ts": 1026566770.0, "ctime": "2002-07-13T13:26:10+00:00", "sha256_file": "ee211ac52720a323d230891ca65d0259ac47ee86f9f0e06807dc46a7499f87ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 13:26:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5274", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 13:26:11", "EXIF DateTimeDigitized": "2002:07:13 13:26:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "793/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 132, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111153", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3172"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e28df2f5ffa44bc48a61e1505dbce9394b7cdbcd40e99c443446faa58b647bd5", "phash": "aa692332de6d7191", "dhash": "07fb3363e99fe7cd", "phash_int": -6.167359513320133e+18, "collected_at": "2026-05-22T04:28:41.901382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1155_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1155_IMG.JPG", "file_name": "111-1155_IMG.JPG", "file_stem": "111-1155_IMG", "file_ext": ".jpg", "file_size": 1784268.0, "mtime": "2002-07-13T13:26:52+00:00", "mtime_ts": 1026566812.0, "ctime": "2002-07-13T13:26:52+00:00", "sha256_file": "6554e4c6449ce35cf092c9eab48baa816c767715ebeae66fbfa8f3837d295ee9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 13:26:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5707", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 13:26:53", "EXIF DateTimeDigitized": "2002:07:13 13:26:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "511/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111155", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "164", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2555"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dbb98f592c5d90e3de9250a7c31865ea43642e127c63dd6314f134918c2da0c8", "phash": "8f68729ddf4a2494", "dhash": "034f276372b3f93f", "phash_int": -8.113108706326339e+18, "collected_at": "2026-05-22T04:28:42.011867+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1156_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1156_IMG.JPG", "file_name": "111-1156_IMG.JPG", "file_stem": "111-1156_IMG", "file_ext": ".jpg", "file_size": 1632473.0, "mtime": "2002-07-13T13:27:00+00:00", "mtime_ts": 1026566820.0, "ctime": "2002-07-13T13:27:00+00:00", "sha256_file": "a1b88f75e79e3aa230a747e8593ac453b51b9464a494eb767ac5ed461cdb053d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 13:27:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5572", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 13:27:01", "EXIF DateTimeDigitized": "2002:07:13 13:27:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "793/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 158, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111156", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3172"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf4b4547c7bd19142cfa80a16ddaec850ecc30b2d7e2e3892405b4f4382d6342", "phash": "8d6872cdca70b4d9", "dhash": "230b0763e2e2bbf9", "phash_int": -8.257223688593559e+18, "collected_at": "2026-05-22T04:28:42.014861+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1157_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1157_IMG.JPG", "file_name": "111-1157_IMG.JPG", "file_stem": "111-1157_IMG", "file_ext": ".jpg", "file_size": 1466215.0, "mtime": "2002-07-13T13:27:12+00:00", "mtime_ts": 1026566832.0, "ctime": "2002-07-13T13:27:12+00:00", "sha256_file": "7e9650571d0c1ffc44245ffa2ea0c80613ececa0d96113939dbf9c49153ff92e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 13:27:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5321", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 13:27:14", "EXIF DateTimeDigitized": "2002:07:13 13:27:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "422/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 183, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111157", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae2c0c11af25b260a918203a2d8e74d948c6a43ca1f975e157f96dbf66a3d51b", "phash": "cd3222c9dec976a4", "dhash": "c763d77373f3f3c2", "phash_int": -3.660825296677276e+18, "collected_at": "2026-05-22T04:28:42.143055+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1158_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1158_IMG.JPG", "file_name": "111-1158_IMG.JPG", "file_stem": "111-1158_IMG", "file_ext": ".jpg", "file_size": 2748493.0, "mtime": "2002-07-13T14:07:34+00:00", "mtime_ts": 1026569254.0, "ctime": "2002-07-13T14:07:34+00:00", "sha256_file": "ec1641dc965df03cd57fce40b7e9474aa7a5a980b2cadcaba398a0fb4a16d260", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:07:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6775", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:07:36", "EXIF DateTimeDigitized": "2002:07:13 14:07:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111158", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "183", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c40ffd60925308c69071129d29a54ee05f8e23136ce112dd655c3e4da21580b", "phash": "9b425d42ad9c636b", "dhash": "f8f9dbfecbfb3b7e", "phash_int": -7.259137108405886e+18, "collected_at": "2026-05-22T04:28:42.183059+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1159_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1159_IMG.JPG", "file_name": "111-1159_IMG.JPG", "file_stem": "111-1159_IMG", "file_ext": ".jpg", "file_size": 2102719.0, "mtime": "2002-07-13T14:08:08+00:00", "mtime_ts": 1026569288.0, "ctime": "2002-07-13T14:08:08+00:00", "sha256_file": "c49be7d893066531f9514341a0b5bac489ed316a7b1fb6c960baf8181abf4c7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:08:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5444", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:08:09", "EXIF DateTimeDigitized": "2002:07:13 14:08:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111159", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "742c8c1e3b69216d58c01a83512a2f5951266a25f1c4903e20ab602e0cc00c12", "phash": "dc4a733dc2e28c39", "dhash": "e45395a5b2360ec8", "phash_int": -2.573117527988991e+18, "collected_at": "2026-05-22T04:28:42.266059+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1160_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1160_IMG.JPG", "file_name": "111-1160_IMG.JPG", "file_stem": "111-1160_IMG", "file_ext": ".jpg", "file_size": 2385918.0, "mtime": "2002-07-13T14:08:26+00:00", "mtime_ts": 1026569306.0, "ctime": "2002-07-13T14:08:26+00:00", "sha256_file": "cd6c208cac4875b3662601deca9237c0ee5f4db963a3b0db58b22152352050ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:08:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5518", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:08:27", "EXIF DateTimeDigitized": "2002:07:13 14:08:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[63, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111160", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1192"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "001e5c6596056742b719761cf8dfad32df91dbc19a3fe4ae3054e49334692ee9", "phash": "dbb19023943f951d", "dhash": "5c91716161697175", "phash_int": -2.6161514260400973e+18, "collected_at": "2026-05-22T04:28:42.288290+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1161_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1161_IMG.JPG", "file_name": "111-1161_IMG.JPG", "file_stem": "111-1161_IMG", "file_ext": ".jpg", "file_size": 1628971.0, "mtime": "2002-07-13T14:18:00+00:00", "mtime_ts": 1026569880.0, "ctime": "2002-07-13T14:18:00+00:00", "sha256_file": "67e662a45e49e817c99b4a9723b5b75b93877a42bfb2811db74a12b35c910a61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:18:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6604", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:18:01", "EXIF DateTimeDigitized": "2002:07:13 14:18:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "429/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111161", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "429"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83acdecc32ee182db395a63752aabbd50f25b8f4f2dbb83554137af604623b38", "phash": "a0e388e9f0c8dceb", "dhash": "974ecc8c8e1e9ba4", "phash_int": -6.85348366957931e+18, "collected_at": "2026-05-22T04:28:42.386775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1162_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1162_IMG.JPG", "file_name": "111-1162_IMG.JPG", "file_stem": "111-1162_IMG", "file_ext": ".jpg", "file_size": 1592967.0, "mtime": "2002-07-13T14:18:06+00:00", "mtime_ts": 1026569886.0, "ctime": "2002-07-13T14:18:06+00:00", "sha256_file": "0c90bf629af1074b6e27b1cb0d27babeb3cd15a009105c1917d65009f8e1ceb8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:18:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6496", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:18:07", "EXIF DateTimeDigitized": "2002:07:13 14:18:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "429/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111162", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "429"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a2b5e5c5c6547bbb9fd8ad11b1f397bd56ab1f5ae75fe24ced2b94aadf78928", "phash": "a4639ae9e4c0b8eb", "dhash": "8e4fac8c8e3fbfb4", "phash_int": -6.601262299439122e+18, "collected_at": "2026-05-22T04:28:42.459777+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1163_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1163_IMG.JPG", "file_name": "111-1163_IMG.JPG", "file_stem": "111-1163_IMG", "file_ext": ".jpg", "file_size": 1640460.0, "mtime": "2002-07-13T14:38:26+00:00", "mtime_ts": 1026571106.0, "ctime": "2002-07-13T14:38:26+00:00", "sha256_file": "6f27b0af1969488db58d2f33ebc57cc2d6e0daab417b4a138b8392eb010575f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:38:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6224", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:38:27", "EXIF DateTimeDigitized": "2002:07:13 14:38:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111163", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "192", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c175a342a033e9e98610911badb8786deaa5f9497bb491433ed2360c80220ca", "phash": "87aaa426b179b91b", "dhash": "6f6d79fae8e6ecfc", "phash_int": -8.670937646455212e+18, "collected_at": "2026-05-22T04:28:42.505778+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1164_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1164_IMG.JPG", "file_name": "111-1164_IMG.JPG", "file_stem": "111-1164_IMG", "file_ext": ".jpg", "file_size": 2565655.0, "mtime": "2002-07-13T14:39:08+00:00", "mtime_ts": 1026571148.0, "ctime": "2002-07-13T14:39:08+00:00", "sha256_file": "72b90385dbb9ed4b2959cb850e4cb8a5ba7add2c70dfddcfd63a335055988490", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 14:39:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7639", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 14:39:10", "EXIF DateTimeDigitized": "2002:07:13 14:39:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5693/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111164", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5693"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f4d5206b1895a922d8201bfaa0df85754b061c64f921d2acf39cd74b67dc8a6", "phash": "d69066f619099bb6", "dhash": "ec2c7c982c4c4c64", "phash_int": -2.9857733457785907e+18, "collected_at": "2026-05-22T04:28:42.545983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1165_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1165_IMG.JPG", "file_name": "111-1165_IMG.JPG", "file_stem": "111-1165_IMG", "file_ext": ".jpg", "file_size": 2076566.0, "mtime": "2002-07-13T15:17:04+00:00", "mtime_ts": 1026573424.0, "ctime": "2002-07-13T15:17:04+00:00", "sha256_file": "6397463a04b22662eae024b99e85b342bfa62c440900aa04d343b1a810a49dc0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 15:17:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5571", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 15:17:05", "EXIF DateTimeDigitized": "2002:07:13 15:17:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111165", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8ca9cf6dcf6245ee8723c4c77ad3e746c85d7c9baca8978d223cf7c3a461011", "phash": "fe7f8181cce38348", "dhash": "2e360527334ecca4", "phash_int": -1.0822547154537594e+17, "collected_at": "2026-05-22T04:28:42.683084+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1166_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1166_IMG.JPG", "file_name": "111-1166_IMG.JPG", "file_stem": "111-1166_IMG", "file_ext": ".jpg", "file_size": 2593556.0, "mtime": "2002-07-13T15:17:08+00:00", "mtime_ts": 1026573428.0, "ctime": "2002-07-13T15:17:08+00:00", "sha256_file": "9d022f8912f0f7a310117dca137eb1f6d5c59ffab777ff0832937e73fa3fad44", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 15:17:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6710", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 15:17:09", "EXIF DateTimeDigitized": "2002:07:13 15:17:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111166", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02297018241131aa9bbd46a585a5f0679cf05f0a05394f14d7bc202feb10fee7", "phash": "f078fcfc8cc67041", "dhash": "24a19cee9a88e8f0", "phash_int": -1.118866345777795e+18, "collected_at": "2026-05-22T04:28:42.696088+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1168_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1168_IMG.JPG", "file_name": "111-1168_IMG.JPG", "file_stem": "111-1168_IMG", "file_ext": ".jpg", "file_size": 2011785.0, "mtime": "2002-07-13T15:17:18+00:00", "mtime_ts": 1026573438.0, "ctime": "2002-07-13T15:17:18+00:00", "sha256_file": "4d2f2209a3069a5a8d7763d3a3573330aab2bef29b01a1d010500c7490d437d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 15:17:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6110", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 15:17:19", "EXIF DateTimeDigitized": "2002:07:13 15:17:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111168", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7aa4713b6cef4353f5aed75de2ae92f6706afa7714290b7038210d11e643d86", "phash": "d615b6f03162e6c3", "dhash": "1c78e0da98054547", "phash_int": -3.0203068323450783e+18, "collected_at": "2026-05-22T04:28:42.838101+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1167_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1167_IMG.JPG", "file_name": "111-1167_IMG.JPG", "file_stem": "111-1167_IMG", "file_ext": ".jpg", "file_size": 2370776.0, "mtime": "2002-07-13T15:17:12+00:00", "mtime_ts": 1026573432.0, "ctime": "2002-07-13T15:17:12+00:00", "sha256_file": "795847b2268b15c4b5825a5687f9602faf0d203052a8a9c05ce3c41033c45acc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 15:17:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5651", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 15:17:14", "EXIF DateTimeDigitized": "2002:07:13 15:17:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111167", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f40a02b3a944b175c88c72c018f76da07178a4b48496e35eb2378ae5fc14ecc", "phash": "8d2ad9d65474958d", "dhash": "b05b971470f8f0d0", "phash_int": -8.27456185077671e+18, "collected_at": "2026-05-22T04:28:42.860095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1169_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1169_IMG.JPG", "file_name": "111-1169_IMG.JPG", "file_stem": "111-1169_IMG", "file_ext": ".jpg", "file_size": 2114057.0, "mtime": "2002-07-13T15:17:26+00:00", "mtime_ts": 1026573446.0, "ctime": "2002-07-13T15:17:26+00:00", "sha256_file": "d134005b79e1a34ddeff860bca701b097bdcb37f3e7d12fd5bd91d928bfb02a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 15:17:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7574", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 15:17:27", "EXIF DateTimeDigitized": "2002:07:13 15:17:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2761/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111169", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "303", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5522"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0528d87bd787949248fd588815f4cd7afa4c1773130ac0dc9b6e9fb3a34d9976", "phash": "f64a39b1c3438cd3", "dhash": "8e2461c44c161cbe", "phash_int": -6.99683356454712e+17, "collected_at": "2026-05-22T04:28:42.925169+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1170_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1170_IMG.JPG", "file_name": "111-1170_IMG.JPG", "file_stem": "111-1170_IMG", "file_ext": ".jpg", "file_size": 2495426.0, "mtime": "2002-07-13T16:09:50+00:00", "mtime_ts": 1026576590.0, "ctime": "2002-07-13T16:09:50+00:00", "sha256_file": "adbf74c702374db4bd5ce2f6cf4b043aa0d169c43f669141d9ad63b3f6d000f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:09:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6644", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:09:52", "EXIF DateTimeDigitized": "2002:07:13 16:09:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111170", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35100c52db5c640806a8d2715991b120b758e16df4d650462b73499d546d4052", "phash": "ddf4d19584133669", "dhash": "40200337367478f2", "phash_int": -2.453105456913894e+18, "collected_at": "2026-05-22T04:28:42.981172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1171_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1171_IMG.JPG", "file_name": "111-1171_IMG.JPG", "file_stem": "111-1171_IMG", "file_ext": ".jpg", "file_size": 1607400.0, "mtime": "2002-07-13T16:09:56+00:00", "mtime_ts": 1026576596.0, "ctime": "2002-07-13T16:09:56+00:00", "sha256_file": "bd492e9b51621d97e4f0f8b107d8cd79007447c9c5f9d0f6283897a4675e214f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:09:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4399", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:09:57", "EXIF DateTimeDigitized": "2002:07:13 16:09:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111171", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b1480512a9abcdfa2d161167f8bc9ba28036e6414afb6bcc96f30a26fe0067f", "phash": "8688d57b2ec4956b", "dhash": "e4f1ece5e7adcb4c", "phash_int": -8.75251115075223e+18, "collected_at": "2026-05-22T04:28:43.032170+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1172_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1172_IMG.JPG", "file_name": "111-1172_IMG.JPG", "file_stem": "111-1172_IMG", "file_ext": ".jpg", "file_size": 2447795.0, "mtime": "2002-07-13T16:10:00+00:00", "mtime_ts": 1026576600.0, "ctime": "2002-07-13T16:10:00+00:00", "sha256_file": "4db4e8ed5d3ff7cffe9adb8ac1f8ce0f18d7b466435757805bb7fe8b855d9b9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:10:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6924", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:10:02", "EXIF DateTimeDigitized": "2002:07:13 16:10:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111172", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "daa57d4c90f7c5e89b59348275d1aa41168f470d260e2d3dcd1c3b0afa33e92a", "phash": "d590cf7dcc349134", "dhash": "c0ccdc9452123263", "phash_int": -3.057716007780708e+18, "collected_at": "2026-05-22T04:28:43.085173+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1173_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1173_IMG.JPG", "file_name": "111-1173_IMG.JPG", "file_stem": "111-1173_IMG", "file_ext": ".jpg", "file_size": 2039876.0, "mtime": "2002-07-13T16:10:14+00:00", "mtime_ts": 1026576614.0, "ctime": "2002-07-13T16:10:14+00:00", "sha256_file": "3ad3214222f03ef411561b1fce818e81584865dc66fbab975352ecdfe25ed8f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:10:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5497", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:10:16", "EXIF DateTimeDigitized": "2002:07:13 16:10:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2809/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111173", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2809"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e88f9d9a6bac3b16b717a83e5baf73174ce766f505200334a9969ec251b4ba7", "phash": "8e96395ec425971b", "dhash": "e87968e5e56173e7", "phash_int": -8.172281394636679e+18, "collected_at": "2026-05-22T04:28:43.145188+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1174_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1174_IMG.JPG", "file_name": "111-1174_IMG.JPG", "file_stem": "111-1174_IMG", "file_ext": ".jpg", "file_size": 2245118.0, "mtime": "2002-07-13T16:10:22+00:00", "mtime_ts": 1026576622.0, "ctime": "2002-07-13T16:10:22+00:00", "sha256_file": "ddc017ac60a62b895fb63155864ad537337e02875f09cbe9f428bbd228da13f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:10:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6351", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:10:23", "EXIF DateTimeDigitized": "2002:07:13 16:10:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1919/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111174", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9595"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91d49e40485443608249d97a82003855fc0e202d2c8edafb3c59e1346fdcc2f3", "phash": "936c665bcaada416", "dhash": "252efe73d8d8dcec", "phash_int": -7.82376590822096e+18, "collected_at": "2026-05-22T04:28:43.188188+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1175_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1175_IMG.JPG", "file_name": "111-1175_IMG.JPG", "file_stem": "111-1175_IMG", "file_ext": ".jpg", "file_size": 2716844.0, "mtime": "2002-07-13T16:54:46+00:00", "mtime_ts": 1026579286.0, "ctime": "2002-07-13T16:54:46+00:00", "sha256_file": "c819c73b0f414f5e3b470df080a6e482af21f3b34f30a6d7827b320d7f9c3a72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:54:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8027", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:54:48", "EXIF DateTimeDigitized": "2002:07:13 16:54:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111175", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "183a8a90a57c721ff8c5f68c9bd31534b1234d54204642f17dcbbcc931cbc42c", "phash": "c10eecf632c19ad3", "dhash": "a560c1cacdcc8686", "phash_int": -4.535427232557852e+18, "collected_at": "2026-05-22T04:28:43.228252+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1176_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1176_IMG.JPG", "file_name": "111-1176_IMG.JPG", "file_stem": "111-1176_IMG", "file_ext": ".jpg", "file_size": 2596405.0, "mtime": "2002-07-13T16:54:56+00:00", "mtime_ts": 1026579296.0, "ctime": "2002-07-13T16:54:56+00:00", "sha256_file": "b768a970a21e7c015e2dbd6e00c1d34dac1f65c384acafda1c7978b990a6a896", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 16:54:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7365", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 16:54:58", "EXIF DateTimeDigitized": "2002:07:13 16:54:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111176", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "192", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dea5dc102c225a2bed2623fd84f0d3487e924fed32d9d7bf595b29d07678d8b2", "phash": "cc08e7eccc73e186", "dhash": "3171d0b2f0b06861", "phash_int": -3.744488085930123e+18, "collected_at": "2026-05-22T04:28:43.302552+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1177_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1177_IMG.JPG", "file_name": "111-1177_IMG.JPG", "file_stem": "111-1177_IMG", "file_ext": ".jpg", "file_size": 2393252.0, "mtime": "2002-07-13T17:03:22+00:00", "mtime_ts": 1026579802.0, "ctime": "2002-07-13T17:03:22+00:00", "sha256_file": "a6b0d2ddc42206f569439df05fa5fc05edadae2c4a03d99e9d3ac7ae2c229d8e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:03:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5434", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:03:24", "EXIF DateTimeDigitized": "2002:07:13 17:03:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1383/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111177", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11064"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3a472aef8f9ded3b28366a3cbf2b01527118062a72a86892c340e29c31c766e", "phash": "8c1df32741f79c48", "dhash": "ded4f0f4f3774c8c", "phash_int": -8.350250784139011e+18, "collected_at": "2026-05-22T04:28:43.327554+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1178_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1178_IMG.JPG", "file_name": "111-1178_IMG.JPG", "file_stem": "111-1178_IMG", "file_ext": ".jpg", "file_size": 2369838.0, "mtime": "2002-07-13T17:03:46+00:00", "mtime_ts": 1026579826.0, "ctime": "2002-07-13T17:03:46+00:00", "sha256_file": "819c177a79912d06bb5f8298316aa01180d2b472593b9a93f21e3ea4f58a1d6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:03:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5470", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:03:48", "EXIF DateTimeDigitized": "2002:07:13 17:03:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5019/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111178", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5019"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "37b17f2c847f0f149d1bea1e1e00a999175a63b5e2214ea904e7533516eba77c", "phash": "b624356fcd12fa24", "dhash": "5e7e1d6d675d3c7c", "phash_int": -5.322070105346868e+18, "collected_at": "2026-05-22T04:28:43.475424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1179_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1179_IMG.JPG", "file_name": "111-1179_IMG.JPG", "file_stem": "111-1179_IMG", "file_ext": ".jpg", "file_size": 2288399.0, "mtime": "2002-07-13T17:04:04+00:00", "mtime_ts": 1026579844.0, "ctime": "2002-07-13T17:04:04+00:00", "sha256_file": "6f73c28ed7996cb8fbac5640975f0e1952c1071c2fc6322a16b323a4ed3e9284", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:04:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6078", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:04:05", "EXIF DateTimeDigitized": "2002:07:13 17:04:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111179", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3806"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a443ca8c3520556c7e35ce81298bde3246351644f51c26bacc9feb3e1b4e6b77", "phash": "a03b2f929ad4d63c", "dhash": "bbfb9fbdb9bcb7ff", "phash_int": -6.900869697305782e+18, "collected_at": "2026-05-22T04:28:43.491488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1180_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1180_IMG.JPG", "file_name": "111-1180_IMG.JPG", "file_stem": "111-1180_IMG", "file_ext": ".jpg", "file_size": 1853499.0, "mtime": "2002-07-13T17:04:28+00:00", "mtime_ts": 1026579868.0, "ctime": "2002-07-13T17:04:28+00:00", "sha256_file": "d552a7f5f66bafe4f99c00ce83c3c21a5ee2c6d7f05d6f846d0c8218f95c9341", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:04:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5758", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:04:30", "EXIF DateTimeDigitized": "2002:07:13 17:04:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111180", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3806"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "720553303983ef685c65372b161916ff88945f0e45a29931c837d4ad3b8c2b1c", "phash": "db1d6604b9c926d9", "dhash": "0c109b39f0648b09", "phash_int": -2.657856034595855e+18, "collected_at": "2026-05-22T04:28:43.537489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1181_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1181_IMG.JPG", "file_name": "111-1181_IMG.JPG", "file_stem": "111-1181_IMG", "file_ext": ".jpg", "file_size": 1890647.0, "mtime": "2002-07-13T17:05:40+00:00", "mtime_ts": 1026579940.0, "ctime": "2002-07-13T17:05:40+00:00", "sha256_file": "006fef90f0b96615c19a6fc81bca7ae29cc80be1de0d211ce3d8291fe1c2cb93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:05:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5686", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:05:42", "EXIF DateTimeDigitized": "2002:07:13 17:05:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "613/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111181", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3065"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3524855eb8cd077fbce859f44ab966d9f0826aec1bbe965b7cdda67c279c444e", "phash": "db1c7206ba9946f1", "dhash": "0c5052b2e0609b0b", "phash_int": -2.658124306829458e+18, "collected_at": "2026-05-22T04:28:43.614492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1182_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1182_IMG.JPG", "file_name": "111-1182_IMG.JPG", "file_stem": "111-1182_IMG", "file_ext": ".jpg", "file_size": 2194652.0, "mtime": "2002-07-13T17:05:46+00:00", "mtime_ts": 1026579946.0, "ctime": "2002-07-13T17:05:46+00:00", "sha256_file": "6042fb417dfb4d235e06baa7fbbd623c08c418cfeb7e12ea2d80114806e42f39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:05:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5750", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:05:47", "EXIF DateTimeDigitized": "2002:07:13 17:05:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3449/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111182", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3449"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84673dceaf1d0724db235b8de76f5d53bcd01a6c19379f936cded3b692854dac", "phash": "ca1c63330dbad92e", "dhash": "4860b2b0608b090b", "phash_int": -3.883119707775379e+18, "collected_at": "2026-05-22T04:28:43.649261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1183_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1183_IMG.JPG", "file_name": "111-1183_IMG.JPG", "file_stem": "111-1183_IMG", "file_ext": ".jpg", "file_size": 2950452.0, "mtime": "2002-07-13T17:28:40+00:00", "mtime_ts": 1026581320.0, "ctime": "2002-07-13T17:28:40+00:00", "sha256_file": "368c1736ad8a2bafc190d2aa4121acf082edc89555b11f5369fb44e315e7b02d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:28:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8186", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:28:42", "EXIF DateTimeDigitized": "2002:07:13 17:28:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111183", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8ca70bdec9420331219d960f1f8964a54504b8e3b776e4db7eacacd012a6847", "phash": "f5051af30ff21645", "dhash": "1a1a2e260208091a", "phash_int": -7.911965282867552e+17, "collected_at": "2026-05-22T04:28:43.764267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1184_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1184_IMG.JPG", "file_name": "111-1184_IMG.JPG", "file_stem": "111-1184_IMG", "file_ext": ".jpg", "file_size": 2513162.0, "mtime": "2002-07-13T17:28:50+00:00", "mtime_ts": 1026581330.0, "ctime": "2002-07-13T17:28:50+00:00", "sha256_file": "0bda19c1136f003cefc13dc2cc4879b18eebb51eb4db2df3c9195747f13e857d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:28:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8096", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:28:52", "EXIF DateTimeDigitized": "2002:07:13 17:28:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3439/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111184", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3439"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dcb33eecd9b42ad65060e9e4022b0415d2c24c5538e879238629c6bfe01144d9", "phash": "fa067e41639e84c7", "dhash": "65a5a949c9190829", "phash_int": -4.305178950579966e+17, "collected_at": "2026-05-22T04:28:43.775267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1186_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1186_IMG.JPG", "file_name": "111-1186_IMG.JPG", "file_stem": "111-1186_IMG", "file_ext": ".jpg", "file_size": 2235838.0, "mtime": "2002-07-13T17:36:32+00:00", "mtime_ts": 1026581792.0, "ctime": "2002-07-13T17:36:32+00:00", "sha256_file": "6375c2ee5108a2270576eb3d1540c81f305d36054b940b3d5a585d89a1cb8e86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:36:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5409", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:36:34", "EXIF DateTimeDigitized": "2002:07:13 17:36:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1093/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111186", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4372"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40e0e35979d4429aeb1b89a12408c0aac90252f7bd98e819bbaff05cb23ccad2", "phash": "c9d9779289d832b2", "dhash": "31a0b1b2f0c0c1c1", "phash_int": -3.9019561308782464e+18, "collected_at": "2026-05-22T04:28:43.912582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1185_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1185_IMG.JPG", "file_name": "111-1185_IMG.JPG", "file_stem": "111-1185_IMG", "file_ext": ".jpg", "file_size": 2220401.0, "mtime": "2002-07-13T17:36:28+00:00", "mtime_ts": 1026581788.0, "ctime": "2002-07-13T17:36:28+00:00", "sha256_file": "3246feac903258de576fd71ee23bc729b9aed14cbb69b3d194f96b1a83fef56d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:36:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5347", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:36:30", "EXIF DateTimeDigitized": "2002:07:13 17:36:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "517/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111185", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4136"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7c3ea293e6df7107582efe70588c0c69cc756bdabd17a5c56e56c6b5e22e8093", "phash": "c9d9779289d832b2", "dhash": "31a0b0b2f1c0c1c1", "phash_int": -3.9019561308782464e+18, "collected_at": "2026-05-22T04:28:43.915584+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1187_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1187_IMG.JPG", "file_name": "111-1187_IMG.JPG", "file_stem": "111-1187_IMG", "file_ext": ".jpg", "file_size": 2006257.0, "mtime": "2002-07-13T17:41:12+00:00", "mtime_ts": 1026582072.0, "ctime": "2002-07-13T17:41:12+00:00", "sha256_file": "299c4b9bbbee58beda4f81c29751662ba80e65b64bc43a95ebf952a4d04ec7b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:41:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7007", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:41:14", "EXIF DateTimeDigitized": "2002:07:13 17:41:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "53/8", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 81, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111187", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6625"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72644146621111f1e782f1bca435294232f0d55fbfe5ac463e4ab1ed742a190a", "phash": "f7ca0b1a393172cc", "dhash": "3b6a860436051614", "phash_int": -5.916481937892017e+17, "collected_at": "2026-05-22T04:28:44.087800+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1188_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1188_IMG.JPG", "file_name": "111-1188_IMG.JPG", "file_stem": "111-1188_IMG", "file_ext": ".jpg", "file_size": 2224729.0, "mtime": "2002-07-13T17:42:10+00:00", "mtime_ts": 1026582130.0, "ctime": "2002-07-13T17:42:10+00:00", "sha256_file": "431b566eed2b2cdbfd090083a7fb4c1d9c94382af48c2a26c9accd58b2a1d460", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:13 17:42:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4390", "EXIF ExposureTime": "1/160", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:13 17:42:12", "EXIF DateTimeDigitized": "2002:07:13 17:42:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111188", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e8397cb3427ffc15e3ff074865225efb62ea9dc141d1d44c4f8edbf2eb3b401", "phash": "c4f33b8cce318c87", "dhash": "40a0c0e0e0f0d0e1", "phash_int": -4.254991746994173e+18, "collected_at": "2026-05-22T04:28:44.110799+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1189_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1189_IMG.JPG", "file_name": "111-1189_IMG.JPG", "file_stem": "111-1189_IMG", "file_ext": ".jpg", "file_size": 1981089.0, "mtime": "2002-07-14T13:51:44+00:00", "mtime_ts": 1026654704.0, "ctime": "2002-07-14T13:51:44+00:00", "sha256_file": "b11bf064e83eae4eacdb00c54d50ba533d49dfe3ebba07146aca29258fdd617c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:51:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8088", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:51:45", "EXIF DateTimeDigitized": "2002:07:14 13:51:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111189", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9327ebadb2db42164aa36d15760f8f414a26752192889c31d4c76e3f53e5c6c", "phash": "d70d29701e1541ff", "dhash": "c2c2426c4cdc5c5c", "phash_int": -2.950656619340021e+18, "collected_at": "2026-05-22T04:28:44.271806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1190_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1190_IMG.JPG", "file_name": "111-1190_IMG.JPG", "file_stem": "111-1190_IMG", "file_ext": ".jpg", "file_size": 2316664.0, "mtime": "2002-07-14T13:53:30+00:00", "mtime_ts": 1026654810.0, "ctime": "2002-07-14T13:53:30+00:00", "sha256_file": "eabb7e217aaeae0550c6ed0dc70833324775165669a9dcd0b260ab2e5f15569f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:53:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8377", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:53:32", "EXIF DateTimeDigitized": "2002:07:14 13:53:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111190", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "206", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c7a2543a351187a2a358517de39a08a619f1cbb7bd6b8625d822b67df90616b", "phash": "f10d57e48bc8e6d0", "dhash": "c25a13139e8e8c48", "phash_int": -1.0771080967623212e+18, "collected_at": "2026-05-22T04:28:44.326810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1191_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1191_IMG.JPG", "file_name": "111-1191_IMG.JPG", "file_stem": "111-1191_IMG", "file_ext": ".jpg", "file_size": 1951331.0, "mtime": "2002-07-14T13:53:38+00:00", "mtime_ts": 1026654818.0, "ctime": "2002-07-14T13:53:38+00:00", "sha256_file": "1c6a4d1fbd35976facb42d3c5d7c351eefd47de91e59cf7cb878ac87587403d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:53:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7402", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:53:39", "EXIF DateTimeDigitized": "2002:07:14 13:53:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2117/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111191", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2117"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3daccd8bf902a157f9526eb3e8206180d48e9cda79a831c633fd5a633e95bf66", "phash": "d743362445e25cf3", "dhash": "ccc858d2d2340d29", "phash_int": -2.9354430026962463e+18, "collected_at": "2026-05-22T04:28:44.359809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1192_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1192_IMG.JPG", "file_name": "111-1192_IMG.JPG", "file_stem": "111-1192_IMG", "file_ext": ".jpg", "file_size": 1820934.0, "mtime": "2002-07-14T13:53:52+00:00", "mtime_ts": 1026654832.0, "ctime": "2002-07-14T13:53:52+00:00", "sha256_file": "9a3e03b42389cd20394e1d1120656eda72f7c000a844a13600194a7ded7c6048", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:53:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7180", "EXIF ExposureTime": "1/500", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:53:53", "EXIF DateTimeDigitized": "2002:07:14 13:53:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1157/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111192", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2314"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81a88d3be939596cbc1ee5ccfda84883c9ad15a7d33d0ead61d4293c975496d1", "phash": "db7d0c11289743dd", "dhash": "73314009abc86c8f", "phash_int": -2.6309333394795223e+18, "collected_at": "2026-05-22T04:28:44.429811+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1193_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1193_IMG.JPG", "file_name": "111-1193_IMG.JPG", "file_stem": "111-1193_IMG", "file_ext": ".jpg", "file_size": 1514513.0, "mtime": "2002-07-14T13:54:02+00:00", "mtime_ts": 1026654842.0, "ctime": "2002-07-14T13:54:02+00:00", "sha256_file": "75cfc2fff87bd713dad0f556b735c886b213d6264bf6a88af9661f01c7e3831f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:54:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6910", "EXIF ExposureTime": "1/125", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:54:03", "EXIF DateTimeDigitized": "2002:07:14 13:54:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1347/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111193", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1347"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6ea1d55e8b408d40ffe6c5f4ca4ba5daf5dbfcb0a4fe9f76206df1f88980ea2d", "phash": "ff92ab6620657c81", "dhash": "4c58742e36264253", "phash_int": -3.077379231963635e+16, "collected_at": "2026-05-22T04:28:44.487514+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1200_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1200_IMG.JPG", "file_name": "111-1200_IMG.JPG", "file_stem": "111-1200_IMG", "file_ext": ".jpg", "file_size": 421654.0, "mtime": "2002-07-14T13:56:40+00:00", "mtime_ts": 1026655000.0, "ctime": "2002-07-14T13:56:40+00:00", "sha256_file": "397179f5435df35704df0023337e28f2464db73bccd8b936ac07ee11790f68dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:56:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6719", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:56:42", "EXIF DateTimeDigitized": "2002:07:14 13:56:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111200", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3704"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67c9933be87b6704dd4aada692ffd607490170c813beef821692f01f97583505", "phash": "9ad8945457272ece", "dhash": "bcb9a56978747478", "phash_int": -7.288912906938798e+18, "collected_at": "2026-05-22T04:28:44.536962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\111-1194_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\111-1194_IMG.JPG", "file_name": "111-1194_IMG.JPG", "file_stem": "111-1194_IMG", "file_ext": ".jpg", "file_size": 1854220.0, "mtime": "2002-07-14T13:54:20+00:00", "mtime_ts": 1026654860.0, "ctime": "2002-07-14T13:54:20+00:00", "sha256_file": "370cd777979296687576d07775f76c908a3b6e7e8012c1d26daeecf62fbad881", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:54:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7431", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:54:22", "EXIF DateTimeDigitized": "2002:07:14 13:54:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1011/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111194", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2022"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23312041791f6d132a76c5585831157e2ca458765d3cd116c5f2fdfcc71c6bae", "phash": "ab58d64f111d2d72", "dhash": "91911bd3cb636d5d", "phash_int": -6.099890060195452e+18, "collected_at": "2026-05-22T04:28:44.552192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1201_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1201_IMG.JPG", "file_name": "112-1201_IMG.JPG", "file_stem": "112-1201_IMG", "file_ext": ".jpg", "file_size": 386072.0, "mtime": "2002-07-14T13:56:52+00:00", "mtime_ts": 1026655012.0, "ctime": "2002-07-14T13:56:52+00:00", "sha256_file": "9239c5351e140912e63455b33b322bcf2f10d94347ae960562e021910e626610", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 13:56:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6561", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 13:56:54", "EXIF DateTimeDigitized": "2002:07:14 13:56:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "869/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121201", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1738"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d69f78487c761d5628abebbaeaeacd42cdc9cbd7befe20d2c34535eb7402aa6b", "phash": "9b4152570fb3fb04", "dhash": "c0e19976ec583c69", "phash_int": -7.259430590465443e+18, "collected_at": "2026-05-22T04:28:44.582195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1202_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1202_IMG.JPG", "file_name": "112-1202_IMG.JPG", "file_stem": "112-1202_IMG", "file_ext": ".jpg", "file_size": 574195.0, "mtime": "2002-07-14T14:32:16+00:00", "mtime_ts": 1026657136.0, "ctime": "2002-07-14T14:32:16+00:00", "sha256_file": "371ed00d03cb8e588f2fca3d1136cafb07fb6fc5a421ac1315875ea258960aaa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 14:32:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6759", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 14:32:17", "EXIF DateTimeDigitized": "2002:07:14 14:32:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8249/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121202", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8249"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb42787e38ca9d3fae5adae06eb45e8faf14d77d9ddc043b3821152de87d7f7d", "phash": "e12bca16d6e713d0", "dhash": "4d9b8b86d44c44e1", "phash_int": -2.2214597917336484e+18, "collected_at": "2026-05-22T04:28:44.583196+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1204_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1204_IMG.JPG", "file_name": "112-1204_IMG.JPG", "file_stem": "112-1204_IMG", "file_ext": ".jpg", "file_size": 522785.0, "mtime": "2002-07-14T14:32:28+00:00", "mtime_ts": 1026657148.0, "ctime": "2002-07-14T14:32:28+00:00", "sha256_file": "c9aad8fe16c7914cd566eafa1d53c8577ed46c8f47e4ac4b6ff3cacf279d7e74", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 14:32:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6610", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 14:32:29", "EXIF DateTimeDigitized": "2002:07:14 14:32:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "303/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121204", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2424"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b26916610954dbc393221a9960dc991677fb1b41a319b3b613adedad1c1d913", "phash": "e5635c17d0e7183a", "dhash": "9a4a0bce4a4e5696", "phash_int": -1.9175877589708902e+18, "collected_at": "2026-05-22T04:28:44.653197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1203_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1203_IMG.JPG", "file_name": "112-1203_IMG.JPG", "file_stem": "112-1203_IMG", "file_ext": ".jpg", "file_size": 438131.0, "mtime": "2002-07-14T14:32:22+00:00", "mtime_ts": 1026657142.0, "ctime": "2002-07-14T14:32:22+00:00", "sha256_file": "65838baf59036fd7298d571d24f5799faec7faf267ef3d802494b6092942ba78", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 14:32:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6867", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 14:32:24", "EXIF DateTimeDigitized": "2002:07:14 14:32:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1601/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121203", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1601"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "119045ff3d83e4ead5926900ea43975d0e2e78a9cb120d31f260af0274dfdbbd", "phash": "e39399ffa20607a1", "dhash": "dcd8ccc5cf4e8b87", "phash_int": -2.0481240823094292e+18, "collected_at": "2026-05-22T04:28:44.655195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1205_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1205_IMG.JPG", "file_name": "112-1205_IMG.JPG", "file_stem": "112-1205_IMG", "file_ext": ".jpg", "file_size": 471706.0, "mtime": "2002-07-14T14:32:34+00:00", "mtime_ts": 1026657154.0, "ctime": "2002-07-14T14:32:34+00:00", "sha256_file": "bb25511754a01244da21e93fb7da3ded0e2493d1e6141557792a82932b2f3d55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 14:32:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6445", "EXIF ExposureTime": "1/400", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 14:32:35", "EXIF DateTimeDigitized": "2002:07:14 14:32:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1889/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121205", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1889"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6941b00d8d21a0ad25fc3b3dc6e4e74ae37e687d4fde2c580183a3b4a8c26716", "phash": "9a825c4abb8f19cd", "dhash": "39b4d8cbc9b96430", "phash_int": -7.313181368852212e+18, "collected_at": "2026-05-22T04:28:44.691197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1206_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1206_IMG.JPG", "file_name": "112-1206_IMG.JPG", "file_stem": "112-1206_IMG", "file_ext": ".jpg", "file_size": 338696.0, "mtime": "2002-07-14T14:32:40+00:00", "mtime_ts": 1026657160.0, "ctime": "2002-07-14T14:32:40+00:00", "sha256_file": "923ab77bedfa2b2568d868520ca144f71c1c9510940f93d1520dd1ac642fa749", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 14:32:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6460", "EXIF ExposureTime": "1/500", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 14:32:42", "EXIF DateTimeDigitized": "2002:07:14 14:32:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "118/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121206", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "944"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87110e0412d49de2d88da407f2c6131be1d3cba6ed0b6754e2f5699db78bc6cf", "phash": "9d26a5de62b41a6a", "dhash": "eeea7fd4597072da", "phash_int": -7.122823386082567e+18, "collected_at": "2026-05-22T04:28:44.708293+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1207_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1207_IMG.JPG", "file_name": "112-1207_IMG.JPG", "file_stem": "112-1207_IMG", "file_ext": ".jpg", "file_size": 540071.0, "mtime": "2002-07-14T16:24:28+00:00", "mtime_ts": 1026663868.0, "ctime": "2002-07-14T16:24:28+00:00", "sha256_file": "b1764f46b805f48c00fdde04985fa7f808c2e9d785015caa629465c0551a6d5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:24:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7842", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:24:30", "EXIF DateTimeDigitized": "2002:07:14 16:24:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121207", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5922071566f7d8a3b30ebf6e5e98947f038ad1db4f28ec4519596bd6e6b30867", "phash": "ba0ddb964ce4c28b", "dhash": "735b33b6aaac1c19", "phash_int": -5.040130969376079e+18, "collected_at": "2026-05-22T04:28:44.723528+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1208_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1208_IMG.JPG", "file_name": "112-1208_IMG.JPG", "file_stem": "112-1208_IMG", "file_ext": ".jpg", "file_size": 385962.0, "mtime": "2002-07-14T16:24:34+00:00", "mtime_ts": 1026663874.0, "ctime": "2002-07-14T16:24:34+00:00", "sha256_file": "28df592f511a0c2e217ad7e80299524406497169d4aa8219fd5eb47100352bb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:24:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6838", "EXIF ExposureTime": "1/50", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:24:36", "EXIF DateTimeDigitized": "2002:07:14 16:24:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121208", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "184", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1490"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "798042de74266ccc3512c3e3c043cfbc43fdc9a869ce5f1e6de81818db60ca6a", "phash": "a64abaa59d343725", "dhash": "ede9e9e0e6aec60e", "phash_int": -6.46414909466711e+18, "collected_at": "2026-05-22T04:28:44.768686+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1209_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1209_IMG.JPG", "file_name": "112-1209_IMG.JPG", "file_stem": "112-1209_IMG", "file_ext": ".jpg", "file_size": 403072.0, "mtime": "2002-07-14T16:24:44+00:00", "mtime_ts": 1026663884.0, "ctime": "2002-07-14T16:24:44+00:00", "sha256_file": "2f41415db664ef005a3e09c4c71917517ac7acecee3efbbb36caba81767a4a4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:24:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6591", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:24:45", "EXIF DateTimeDigitized": "2002:07:14 16:24:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1133/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121209", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1133"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cef4102ca921332fc7abe7fb354e427ab057903de366edb4d004f7eec91c7876", "phash": "e068167ef816e5b2", "dhash": "8583cb938ba66ce4", "phash_int": -2.276544877051845e+18, "collected_at": "2026-05-22T04:28:44.778687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1210_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1210_IMG.JPG", "file_name": "112-1210_IMG.JPG", "file_stem": "112-1210_IMG", "file_ext": ".jpg", "file_size": 412020.0, "mtime": "2002-07-14T16:24:52+00:00", "mtime_ts": 1026663892.0, "ctime": "2002-07-14T16:24:52+00:00", "sha256_file": "5df5266c746f306c82d214d56eadf9cfa03c88f6ac1f43a49967456fbc22dca7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:24:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6337", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:24:53", "EXIF DateTimeDigitized": "2002:07:14 16:24:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1077/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121210", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2154"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0564fa76b62dee791452a23d17913e1adfdf200ca1e72954aaf9eb4bd564f0a2", "phash": "89d37398acaf4652", "dhash": "9199ebf3f7b1bb6b", "phash_int": -8.515335370858084e+18, "collected_at": "2026-05-22T04:28:44.809819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1211_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1211_IMG.JPG", "file_name": "112-1211_IMG.JPG", "file_stem": "112-1211_IMG", "file_ext": ".jpg", "file_size": 597226.0, "mtime": "2002-07-14T16:25:00+00:00", "mtime_ts": 1026663900.0, "ctime": "2002-07-14T16:25:00+00:00", "sha256_file": "4b7c553591ad3fec1d8a45c7a986c5af7db648361beaf6f4e5c44f175fd377c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:25:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8414", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:25:02", "EXIF DateTimeDigitized": "2002:07:14 16:25:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4279/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121211", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4279"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0b18cbcef51a0596c9247536a58f670f32e0e4355c268f6f3cc5ce1724cf5ca", "phash": "ba674538b40eda56", "dhash": "57aae97d3d3b37b4", "phash_int": -5.0149635502124e+18, "collected_at": "2026-05-22T04:28:44.811818+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1212_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1212_IMG.JPG", "file_name": "112-1212_IMG.JPG", "file_stem": "112-1212_IMG", "file_ext": ".jpg", "file_size": 477963.0, "mtime": "2002-07-14T16:25:08+00:00", "mtime_ts": 1026663908.0, "ctime": "2002-07-14T16:25:08+00:00", "sha256_file": "d68538bdfc997941506358d12eaae0afe9c6f987caf65f7aca5a00b3f7bcbe9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 16:25:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6950", "EXIF ExposureTime": "1/125", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 16:25:09", "EXIF DateTimeDigitized": "2002:07:14 16:25:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4119/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121212", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4119"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c4d7484ddea8adc1a8ef6763fd9a3a020ed7e3f99cb21efa78d7559ec54635c", "phash": "c2e0c896f5db269c", "dhash": "c082c5c424687830", "phash_int": -4.4042998848729155e+18, "collected_at": "2026-05-22T04:28:44.857106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1213_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1213_IMG.JPG", "file_name": "112-1213_IMG.JPG", "file_stem": "112-1213_IMG", "file_ext": ".jpg", "file_size": 603971.0, "mtime": "2002-07-14T17:02:14+00:00", "mtime_ts": 1026666134.0, "ctime": "2002-07-14T17:02:14+00:00", "sha256_file": "a5954b3d349c8f5c4a29c32a275eda05a8d4f98f90a1d7eaac273bbc8082f3e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 17:02:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7901", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 17:02:16", "EXIF DateTimeDigitized": "2002:07:14 17:02:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121213", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdb296c41b3f3d3ad6974f375c163b1c47c115fe9703b6ee88b411abeab07b49", "phash": "98b9edc2a3171cca", "dhash": "5b1b33b9b9b93933", "phash_int": -7.441655489037395e+18, "collected_at": "2026-05-22T04:28:44.861115+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1215_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1215_IMG.JPG", "file_name": "112-1215_IMG.JPG", "file_stem": "112-1215_IMG", "file_ext": ".jpg", "file_size": 472019.0, "mtime": "2002-07-14T17:03:52+00:00", "mtime_ts": 1026666232.0, "ctime": "2002-07-14T17:03:52+00:00", "sha256_file": "903e1bf5975968eb69a2027b2fa4df7197b0fd3d4b7abaaa2c4bd1310dcb87fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 17:03:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7828", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 17:03:53", "EXIF DateTimeDigitized": "2002:07:14 17:03:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121215", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a10348d192ec2625afb9ab7f160ae571608c45a10498383c01cf0e7a46242bde", "phash": "c1788ce075c393be", "dhash": "9531484a4ad0e0f0", "phash_int": -4.5056965315078666e+18, "collected_at": "2026-05-22T04:28:44.882107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1214_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1214_IMG.JPG", "file_name": "112-1214_IMG.JPG", "file_stem": "112-1214_IMG", "file_ext": ".jpg", "file_size": 534521.0, "mtime": "2002-07-14T17:02:34+00:00", "mtime_ts": 1026666154.0, "ctime": "2002-07-14T17:02:34+00:00", "sha256_file": "88904ed2d5fcd756079ec4a644c105c363c77e046316d7b6119ea66ee47fab3b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 17:02:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7273", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 17:02:35", "EXIF DateTimeDigitized": "2002:07:14 17:02:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121214", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "febdd09a5d9b51b93386479cd8ae2359fce8c3e8cdca2bd078c3d696ef90dc81", "phash": "d72594860999fce6", "dhash": "ae8c2a5341044090", "phash_int": -2.943783478009136e+18, "collected_at": "2026-05-22T04:28:44.884106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1216_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1216_IMG.JPG", "file_name": "112-1216_IMG.JPG", "file_stem": "112-1216_IMG", "file_ext": ".jpg", "file_size": 537819.0, "mtime": "2002-07-14T17:09:26+00:00", "mtime_ts": 1026666566.0, "ctime": "2002-07-14T17:09:26+00:00", "sha256_file": "1a6c1d99cfbc7b2f954e65eede37b180af260de3946b8e60fe210a08b772af8f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 17:09:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8254", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 17:09:27", "EXIF DateTimeDigitized": "2002:07:14 17:09:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121216", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3538185f9cfcf194e15aa91c17645eec4fd1bcedfbe62ecd8a8c8902094715a5", "phash": "b649397a1629672e", "dhash": "3a58464c6c0d156c", "phash_int": -5.311651088986184e+18, "collected_at": "2026-05-22T04:28:44.908180+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-13\\112-1217_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-13\\112-1217_IMG.JPG", "file_name": "112-1217_IMG.JPG", "file_stem": "112-1217_IMG", "file_ext": ".jpg", "file_size": 461251.0, "mtime": "2002-07-14T17:09:34+00:00", "mtime_ts": 1026666574.0, "ctime": "2002-07-14T17:09:34+00:00", "sha256_file": "ed1575f6793c1a1ec17ffab6ab3ebda8c16c36413dad90f27c06df6d6e732e78", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:14 17:09:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7486", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:14 17:09:35", "EXIF DateTimeDigitized": "2002:07:14 17:09:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121217", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4446e8bf493ef8729d8ace3239d88d9ea961fe1b79570cf58371b434f5bd7c70", "phash": "e929f18e73d18d42", "dhash": "d3d3cacba3e3d3d6", "phash_int": -1.6455185946964426e+18, "collected_at": "2026-05-22T04:28:44.913177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1218_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1218_IMG.JPG", "file_name": "112-1218_IMG.JPG", "file_stem": "112-1218_IMG", "file_ext": ".jpg", "file_size": 388218.0, "mtime": "2002-07-19T21:43:46+00:00", "mtime_ts": 1027115026.0, "ctime": "2002-07-19T21:43:46+00:00", "sha256_file": "3045f3ba19ccef8ab8f93f409f5b34cd4f993ce8412cb40b05a721e592788cab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:43:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6032", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:43:48", "EXIF DateTimeDigitized": "2002:07:19 21:43:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121218", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eefda63c1d52139e17f1d4034d20becfcbf2359b389f43d57fc8c052d75d5877", "phash": "c4d1c79ec34dc623", "dhash": "e090a0b0942430e0", "phash_int": -4.264407887447735e+18, "collected_at": "2026-05-22T04:28:44.944280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1219_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1219_IMG.JPG", "file_name": "112-1219_IMG.JPG", "file_stem": "112-1219_IMG", "file_ext": ".jpg", "file_size": 304325.0, "mtime": "2002-07-19T21:44:00+00:00", "mtime_ts": 1027115040.0, "ctime": "2002-07-19T21:44:00+00:00", "sha256_file": "f4024c30337e7103b88fcf5b840cfa83917a73c4bde6f4e909da7999dc920849", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:44:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3981", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:44:01", "EXIF DateTimeDigitized": "2002:07:19 21:44:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121219", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65488", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "471b723141db6787eaa246232d0ccc9791e7e2c93f4277d1bc1f857b684dfc47", "phash": "d2f3e43196c9a5c2", "dhash": "0809091809188084", "phash_int": -3.2460000047696676e+18, "collected_at": "2026-05-22T04:28:44.946280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1221_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1221_IMG.JPG", "file_name": "112-1221_IMG.JPG", "file_stem": "112-1221_IMG", "file_ext": ".jpg", "file_size": 335893.0, "mtime": "2002-07-19T21:44:20+00:00", "mtime_ts": 1027115060.0, "ctime": "2002-07-19T21:44:20+00:00", "sha256_file": "80d52ce7f66ecd4f9d2eac5484f6e1e1d74b455cd53a2fe6c9fbcf9c56a64724", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:44:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4809", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:44:21", "EXIF DateTimeDigitized": "2002:07:19 21:44:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2867/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121221", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2867"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a9018753ed7a58fe709b14f1bce06a206774d142fb89107157221ae6e75cb4ca", "phash": "d2e4991864df7607", "dhash": "ac9c4dad89395191", "phash_int": -3.2503047010040243e+18, "collected_at": "2026-05-22T04:28:44.967420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1220_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1220_IMG.JPG", "file_name": "112-1220_IMG.JPG", "file_stem": "112-1220_IMG", "file_ext": ".jpg", "file_size": 330634.0, "mtime": "2002-07-19T21:44:08+00:00", "mtime_ts": 1027115048.0, "ctime": "2002-07-19T21:44:08+00:00", "sha256_file": "2dd55125712475dc7a198a20a80cfc59529af1f5e730b0d4717016599814b4c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:44:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4559", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:44:10", "EXIF DateTimeDigitized": "2002:07:19 21:44:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121220", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd78c1f53b60cb73771afe9085db34e0e4337a35d8b98e2bedfd43f364aed31e", "phash": "ffb0928f2c3b1470", "dhash": "3630343322636122", "phash_int": -2.2356854516804496e+16, "collected_at": "2026-05-22T04:28:44.970420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1222_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1222_IMG.JPG", "file_name": "112-1222_IMG.JPG", "file_stem": "112-1222_IMG", "file_ext": ".jpg", "file_size": 331696.0, "mtime": "2002-07-19T21:44:30+00:00", "mtime_ts": 1027115070.0, "ctime": "2002-07-19T21:44:30+00:00", "sha256_file": "6f8ccb83e0a9bb970cf2e4c58a8c4d072e4de956af787146747434728f384349", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:44:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4497", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:44:31", "EXIF DateTimeDigitized": "2002:07:19 21:44:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3231/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121222", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65475", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3231"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f246f919de087878c4755cdbf22fee7c1812c8a999deb3d54e4b7cd454ced52b", "phash": "f8fb894a7249a3d0", "dhash": "19392a131d31b2b6", "phash_int": -5.0565958031103494e+17, "collected_at": "2026-05-22T04:28:44.989486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1223_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1223_IMG.JPG", "file_name": "112-1223_IMG.JPG", "file_stem": "112-1223_IMG", "file_ext": ".jpg", "file_size": 347944.0, "mtime": "2002-07-19T21:44:50+00:00", "mtime_ts": 1027115090.0, "ctime": "2002-07-19T21:44:50+00:00", "sha256_file": "7ffa2a3548b9b5fc494a28049b83c47f15cf5f2366970934ce70ee0d0786d12d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:44:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4817", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:44:52", "EXIF DateTimeDigitized": "2002:07:19 21:44:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121223", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8ab8340d24461d869a7a0dfa8b200ef2d860308c9bcdc87abe5bffdfe8cc378", "phash": "c7b899c6334871d9", "dhash": "606c506c6c64624a", "phash_int": -4.0553223879041715e+18, "collected_at": "2026-05-22T04:28:44.991487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1225_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1225_IMG.JPG", "file_name": "112-1225_IMG.JPG", "file_stem": "112-1225_IMG", "file_ext": ".jpg", "file_size": 251481.0, "mtime": "2002-07-19T21:45:44+00:00", "mtime_ts": 1027115144.0, "ctime": "2002-07-19T21:45:44+00:00", "sha256_file": "758cf9a0d9c594be96a8f82ee7bc68fa5850a54acbbf03b3c0b2427f8bf796d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:45:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3283", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:45:46", "EXIF DateTimeDigitized": "2002:07:19 21:45:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "899/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121225", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "899"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7d298144bbaed6ce8a0d959896b72e91fe5f0fface79f9069a92568b18eccb3", "phash": "e5dc1973960ce925", "dhash": "000006244e0e8606", "phash_int": -1.883602559918348e+18, "collected_at": "2026-05-22T04:28:45.011581+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1224_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1224_IMG.JPG", "file_name": "112-1224_IMG.JPG", "file_stem": "112-1224_IMG", "file_ext": ".jpg", "file_size": 322123.0, "mtime": "2002-07-19T21:45:16+00:00", "mtime_ts": 1027115116.0, "ctime": "2002-07-19T21:45:16+00:00", "sha256_file": "efe856e81961439691de7c4d28b503b19fa618cbbb0a7db330012af5ee225ab2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:45:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5023", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:45:18", "EXIF DateTimeDigitized": "2002:07:19 21:45:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121224", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65468", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5659d15b988589c68fd7f8bdd5d87d0b4788dacb9f36799a5c9897fcca6b0093", "phash": "ee1ccb39c112a4ed", "dhash": "6322203137370981", "phash_int": -1.2889319444220055e+18, "collected_at": "2026-05-22T04:28:45.013583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1226_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1226_IMG.JPG", "file_name": "112-1226_IMG.JPG", "file_stem": "112-1226_IMG", "file_ext": ".jpg", "file_size": 381260.0, "mtime": "2002-07-19T21:45:56+00:00", "mtime_ts": 1027115156.0, "ctime": "2002-07-19T21:45:56+00:00", "sha256_file": "6a040d7bfc578cfe6b4fec5d628ae93bee8aca9847b98fd19abe352cf09e3aac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:45:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5132", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:45:58", "EXIF DateTimeDigitized": "2002:07:19 21:45:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121226", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65494", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "afe44342ad2ba3ab426dcbe385ba4b158a631130804b8c2a3ee3af92ae3ec46f", "phash": "de21d697898f1c13", "dhash": "f00d7733b9682830", "phash_int": -2.440433576721835e+18, "collected_at": "2026-05-22T04:28:45.034659+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1227_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1227_IMG.JPG", "file_name": "112-1227_IMG.JPG", "file_stem": "112-1227_IMG", "file_ext": ".jpg", "file_size": 326846.0, "mtime": "2002-07-19T21:46:12+00:00", "mtime_ts": 1027115172.0, "ctime": "2002-07-19T21:46:12+00:00", "sha256_file": "4e2a57127ebe53c58bd7ac69d815167416a609e4fb035e1a13ad7c2c3376ec13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:46:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4676", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:46:13", "EXIF DateTimeDigitized": "2002:07:19 21:46:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "91/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121227", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65464", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1820"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69eafd5e1912d3ecd3b67b4106e644a3560a455faf01bdf2158bcfacfbe2481f", "phash": "9b768b6d12e4156c", "dhash": "6869792c32d2d379", "phash_int": -7.244449649994231e+18, "collected_at": "2026-05-22T04:28:45.038785+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1228_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1228_IMG.JPG", "file_name": "112-1228_IMG.JPG", "file_stem": "112-1228_IMG", "file_ext": ".jpg", "file_size": 276914.0, "mtime": "2002-07-19T21:46:24+00:00", "mtime_ts": 1027115184.0, "ctime": "2002-07-19T21:46:24+00:00", "sha256_file": "cbc9353ecd044db2605c2921b0aa8625cb8c82a9df55526a7b18c0d04f06c287", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 21:46:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2852", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 21:46:26", "EXIF DateTimeDigitized": "2002:07:19 21:46:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3887/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121228", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65485", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "222", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3887"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27bec90eb4a9b4df7dbe57baf823d1e36f24c98ac0dc96359c73c8c55bf10c76", "phash": "a8d557d65922d6c1", "dhash": "f0f0b7b7b32dad31", "phash_int": -6.281017527168215e+18, "collected_at": "2026-05-22T04:28:45.053863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1229_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1229_IMG.JPG", "file_name": "112-1229_IMG.JPG", "file_stem": "112-1229_IMG", "file_ext": ".jpg", "file_size": 391329.0, "mtime": "2002-07-19T22:39:24+00:00", "mtime_ts": 1027118364.0, "ctime": "2002-07-19T22:39:24+00:00", "sha256_file": "60548f0d4a0eea91c9445ca2355e1a7b41ee1053a9162b71df9c82f570e2b629", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 22:39:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6079", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 22:39:25", "EXIF DateTimeDigitized": "2002:07:19 22:39:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121229", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c987a6c2f0a59466f415c3c1d19da3459b41658830b5cb8348f2fcc7eff8142", "phash": "955a58adb7c7c828", "dhash": "90bce8485e96d2ec", "phash_int": -7.68473231101842e+18, "collected_at": "2026-05-22T04:28:45.063998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1230_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1230_IMG.JPG", "file_name": "112-1230_IMG.JPG", "file_stem": "112-1230_IMG", "file_ext": ".jpg", "file_size": 391800.0, "mtime": "2002-07-19T22:39:30+00:00", "mtime_ts": 1027118370.0, "ctime": "2002-07-19T22:39:30+00:00", "sha256_file": "2ff1e7aa342f4c6970f06be4d45742f59eb468bac7a2c160c6af70f0cc3d955e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:19 22:39:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6021", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:19 22:39:32", "EXIF DateTimeDigitized": "2002:07:19 22:39:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121230", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a63503625c8fbe49ccf146f22a96abac8d58d9c18f9402f349b1d593b90e71a7", "phash": "955e58a9b7c3c829", "dhash": "943cf8684e96d2d4", "phash_int": -7.683606428291709e+18, "collected_at": "2026-05-22T04:28:45.080090+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1231_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1231_IMG.JPG", "file_name": "112-1231_IMG.JPG", "file_stem": "112-1231_IMG", "file_ext": ".jpg", "file_size": 555474.0, "mtime": "2002-07-20T15:15:02+00:00", "mtime_ts": 1027178102.0, "ctime": "2002-07-20T15:15:02+00:00", "sha256_file": "4f5ccef516f05153204cdf2b780ede7abbe8b25b8bc882c2a21b0aef1bb1db66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:20 15:15:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5777", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:20 15:15:03", "EXIF DateTimeDigitized": "2002:07:20 15:15:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121231", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b5d2a45494fb1c88e29a37bacef37edf35b5325905eb82349de2729e5892576", "phash": "87878b0f70e0b98f", "dhash": "ca68e68cee78609c", "phash_int": -8.680816858298796e+18, "collected_at": "2026-05-22T04:28:45.132092+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1232_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1232_IMG.JPG", "file_name": "112-1232_IMG.JPG", "file_stem": "112-1232_IMG", "file_ext": ".jpg", "file_size": 495153.0, "mtime": "2002-07-20T15:15:06+00:00", "mtime_ts": 1027178106.0, "ctime": "2002-07-20T15:15:06+00:00", "sha256_file": "1d7477b8f48a559a0dfd94e459341882f117724d57893fb927ecbb8788deebe6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:20 15:15:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5090", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:20 15:15:08", "EXIF DateTimeDigitized": "2002:07:20 15:15:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121232", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa2edda961939ba705ab33855db4fde7326a4e1910b67a112e0dde700745f860", "phash": "c59b81334f5582bd", "dhash": "d0e6706250c586e2", "phash_int": -4.2076273694732774e+18, "collected_at": "2026-05-22T04:28:45.138091+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1233_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1233_IMG.JPG", "file_name": "112-1233_IMG.JPG", "file_stem": "112-1233_IMG", "file_ext": ".jpg", "file_size": 484478.0, "mtime": "2002-07-20T15:15:10+00:00", "mtime_ts": 1027178110.0, "ctime": "2002-07-20T15:15:10+00:00", "sha256_file": "90f47a23d59de829031e684e4c8ecc7df606e65a4349a3939943f7d03e4cd2ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:20 15:15:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5014", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:20 15:15:12", "EXIF DateTimeDigitized": "2002:07:20 15:15:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121233", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b6ff237ba7555b97267e1176d5d771e33f935d42f55a88055773cdf12a5d442", "phash": "d595d12a2a2addd4", "dhash": "e6c8dcf4a8c295b0", "phash_int": -3.0563067930747295e+18, "collected_at": "2026-05-22T04:28:45.157258+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-19\\112-1234_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-19\\112-1234_IMG.JPG", "file_name": "112-1234_IMG.JPG", "file_stem": "112-1234_IMG", "file_ext": ".jpg", "file_size": 317087.0, "mtime": "2002-07-20T15:15:28+00:00", "mtime_ts": 1027178128.0, "ctime": "2002-07-20T15:15:28+00:00", "sha256_file": "87cbcc92786aeddf988899274ca3bc12d745da5d4c785b25327418f75a5d2319", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:20 15:15:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5384", "EXIF ExposureTime": "1/400", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:20 15:15:30", "EXIF DateTimeDigitized": "2002:07:20 15:15:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6349/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3635199/280", "EXIF FocalPlaneYResolution": "2726399/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121234", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "288", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6349"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60365cb798f0d9d729767881734aca51543ebc57db63802074368adaccc183f6", "phash": "c7992674e0dad4c3", "dhash": "9df671b9c02265cc", "phash_int": -4.0641749052946627e+18, "collected_at": "2026-05-22T04:28:45.161262+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1279_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1279_IMG.JPG", "file_name": "112-1279_IMG.JPG", "file_stem": "112-1279_IMG", "file_ext": ".jpg", "file_size": 1527229.0, "mtime": "2002-07-27T23:26:06+00:00", "mtime_ts": 1027812366.0, "ctime": "2002-07-27T23:26:06+00:00", "sha256_file": "806c3d740e7eade7d31d20fde299418480af40fc9d56a92aaa2c5ebf59d17899", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:26:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5303", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:26:08", "EXIF DateTimeDigitized": "2002:07:27 23:26:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121279", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "665231c07d6acb74e6aafd2487cbe22403621124083d1e08df78f252d1e084dc", "phash": "a5563a874db0e395", "dhash": "8c8eae36564fbebb", "phash_int": -6.532969856655891e+18, "collected_at": "2026-05-22T04:28:45.241629+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1280_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1280_IMG.JPG", "file_name": "112-1280_IMG.JPG", "file_stem": "112-1280_IMG", "file_ext": ".jpg", "file_size": 1623125.0, "mtime": "2002-07-27T23:26:22+00:00", "mtime_ts": 1027812382.0, "ctime": "2002-07-27T23:26:22+00:00", "sha256_file": "2f4fd11c3a603a0acec7b8b5120a24c6417455425439c516662806dead51a38c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:26:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5562", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:26:23", "EXIF DateTimeDigitized": "2002:07:27 23:26:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121280", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dea3f73c9465e9af7eea1ccd5ee816eaeacdd66465ab3c59a3807c5d30f65b01", "phash": "a36ab59a56edd102", "dhash": "8323434ed5d96b6e", "phash_int": -6.671320223507952e+18, "collected_at": "2026-05-22T04:28:45.250747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1281_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1281_IMG.JPG", "file_name": "112-1281_IMG.JPG", "file_stem": "112-1281_IMG", "file_ext": ".jpg", "file_size": 1327849.0, "mtime": "2002-07-27T23:26:36+00:00", "mtime_ts": 1027812396.0, "ctime": "2002-07-27T23:26:36+00:00", "sha256_file": "129cce5e5eb0618b59c69f4b461acc94d8da95c70cc2894211960c50caf222b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:26:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4273", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:26:37", "EXIF DateTimeDigitized": "2002:07:27 23:26:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121281", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "073e73d47a4061403adfba7ac4ccabd025823a5259bf7a862ec4fe3b1dd3e8d1", "phash": "d92698d32c9267f8", "dhash": "e261e1f15359b9b2", "phash_int": -2.799382085610871e+18, "collected_at": "2026-05-22T04:28:45.340647+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1282_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1282_IMG.JPG", "file_name": "112-1282_IMG.JPG", "file_stem": "112-1282_IMG", "file_ext": ".jpg", "file_size": 1563168.0, "mtime": "2002-07-27T23:26:46+00:00", "mtime_ts": 1027812406.0, "ctime": "2002-07-27T23:26:46+00:00", "sha256_file": "4b22efd20bfa218920760c9c89802880c2504794dabf8c6df7c250cd45f223ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:26:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5522", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:26:47", "EXIF DateTimeDigitized": "2002:07:27 23:26:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121282", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45946886a4956852ad40ec919b1a8cd66f40cda2dfbe5a0f2f380d77c449ba1f", "phash": "8570f58f70659a4e", "dhash": "e0c094d6ed5166b4", "phash_int": -8.831288872858707e+18, "collected_at": "2026-05-22T04:28:45.356747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1283_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1283_IMG.JPG", "file_name": "112-1283_IMG.JPG", "file_stem": "112-1283_IMG", "file_ext": ".jpg", "file_size": 1331914.0, "mtime": "2002-07-27T23:26:58+00:00", "mtime_ts": 1027812418.0, "ctime": "2002-07-27T23:26:58+00:00", "sha256_file": "42bdab4de6a0f630b60bc85dca694584dead23ed817949641939a7f6cada5c85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:26:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4711", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:26:59", "EXIF DateTimeDigitized": "2002:07:27 23:26:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121283", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8ce44bc53af89096ed4d11591294c7e3cb8509ae4e4b06feaad39fcceff9f93", "phash": "ff7ef90cc0116093", "dhash": "202c5c6567667290", "phash_int": -3.63179138150972e+16, "collected_at": "2026-05-22T04:28:45.396744+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1284_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1284_IMG.JPG", "file_name": "112-1284_IMG.JPG", "file_stem": "112-1284_IMG", "file_ext": ".jpg", "file_size": 1426675.0, "mtime": "2002-07-27T23:27:16+00:00", "mtime_ts": 1027812436.0, "ctime": "2002-07-27T23:27:16+00:00", "sha256_file": "930ea59b2af66b0b0e3f5cdf41783df6bfc146f656ae65af3a6e90bd82809083", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:27:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:27:17", "EXIF DateTimeDigitized": "2002:07:27 23:27:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121284", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32a0cd3a5fabe90340cb23c7f732c088c50b15769b3a3dba43ca6ddb2ab3d065", "phash": "c23d3ae0c7993ce2", "dhash": "020c20e2c080e9e9", "phash_int": -4.4503361196763884e+18, "collected_at": "2026-05-22T04:28:45.437747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1285_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1285_IMG.JPG", "file_name": "112-1285_IMG.JPG", "file_stem": "112-1285_IMG", "file_ext": ".jpg", "file_size": 1612714.0, "mtime": "2002-07-27T23:28:36+00:00", "mtime_ts": 1027812516.0, "ctime": "2002-07-27T23:28:36+00:00", "sha256_file": "598ec7ed17b9989184942e1289b2b8c1c55127ed320ed1e80f6c796603d10d82", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:28:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5098", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:28:37", "EXIF DateTimeDigitized": "2002:07:27 23:28:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121285", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "074c39ac97ad90191ef28684e3cde5b65d1949f1bf049386b6f01f5e5e6d3769", "phash": "976a2956d225629f", "dhash": "f863e5e868e8f2f2", "phash_int": -7.536165573581512e+18, "collected_at": "2026-05-22T04:28:45.489837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1286_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1286_IMG.JPG", "file_name": "112-1286_IMG.JPG", "file_stem": "112-1286_IMG", "file_ext": ".jpg", "file_size": 1489059.0, "mtime": "2002-07-27T23:29:56+00:00", "mtime_ts": 1027812596.0, "ctime": "2002-07-27T23:29:56+00:00", "sha256_file": "8728f91fb2cd793aa547f2b780333ffcca59d51f0fda0f9d494473a3570ba6c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:29:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5124", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:29:57", "EXIF DateTimeDigitized": "2002:07:27 23:29:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121286", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf23b1647e13a7d098e03d2684c19ad1d4b7ade43bca0bd0ae9fb4743abaa447", "phash": "9e6335ce10616f9a", "dhash": "03038fb93123343c", "phash_int": -7.033719033868227e+18, "collected_at": "2026-05-22T04:28:45.509840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1287_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1287_IMG.JPG", "file_name": "112-1287_IMG.JPG", "file_stem": "112-1287_IMG", "file_ext": ".jpg", "file_size": 1477717.0, "mtime": "2002-07-27T23:30:06+00:00", "mtime_ts": 1027812606.0, "ctime": "2002-07-27T23:30:06+00:00", "sha256_file": "12454643c5a4f6430025308e46be0cad9fba3817b96274d0b41c9681da936c85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:30:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4682", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:30:07", "EXIF DateTimeDigitized": "2002:07:27 23:30:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121287", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7bd0b218bd5b833a486a21a84f6dff5c07546529b446e7851f704b21ab9a8f68", "phash": "b45d5b8a7455b6a0", "dhash": "b07876a6aeedce9e", "phash_int": -5.450099323833043e+18, "collected_at": "2026-05-22T04:28:45.565842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1288_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1288_IMG.JPG", "file_name": "112-1288_IMG.JPG", "file_stem": "112-1288_IMG", "file_ext": ".jpg", "file_size": 1932477.0, "mtime": "2002-07-27T23:30:14+00:00", "mtime_ts": 1027812614.0, "ctime": "2002-07-27T23:30:14+00:00", "sha256_file": "f8e6bb0cb41e2383cf84f9b0a6a15e3acf75170048b02950fb9fed597edfaade", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:27 23:30:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4711", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:27 23:30:15", "EXIF DateTimeDigitized": "2002:07:27 23:30:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121288", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3eae8abbf607e82f2a36ca9e9c7a43d72676ee0a1a618f4e9068deb61ca03ae2", "phash": "cb7461966c21d3ce", "dhash": "e0e0d06169596b6b", "phash_int": -3.7862940880245996e+18, "collected_at": "2026-05-22T04:28:45.585909+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1289_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1289_IMG.JPG", "file_name": "112-1289_IMG.JPG", "file_stem": "112-1289_IMG", "file_ext": ".jpg", "file_size": 1698193.0, "mtime": "2002-07-28T00:16:02+00:00", "mtime_ts": 1027815362.0, "ctime": "2002-07-28T00:16:02+00:00", "sha256_file": "7fefe5692732c00361b00f96da9bf31ddb64058ccce077510a5721d9f96bd81b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5085", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:03", "EXIF DateTimeDigitized": "2002:07:28 00:16:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121289", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01dd2a26c97d067cb794e2bc00b740e3d7b2204833c79e919f4c8ff506d1dd27", "phash": "8c247301fd87fc47", "dhash": "9ee6e6f2f6f26830", "phash_int": -8.348421356852348e+18, "collected_at": "2026-05-22T04:28:45.651131+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1290_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1290_IMG.JPG", "file_name": "112-1290_IMG.JPG", "file_stem": "112-1290_IMG", "file_ext": ".jpg", "file_size": 1856601.0, "mtime": "2002-07-28T00:16:10+00:00", "mtime_ts": 1027815370.0, "ctime": "2002-07-28T00:16:10+00:00", "sha256_file": "abe9dc976a7ca024f099055a42bc50f1d2b884ba1f5575dba8a35a81cc3aa56a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5873", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:12", "EXIF DateTimeDigitized": "2002:07:28 00:16:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121290", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dda2e648f4b15a4a3b52ca79647359f68c25a1338f64838cbd09530e15ef57f1", "phash": "852575bf885a067e", "dhash": "c2e2d4d5f5647898", "phash_int": -8.852540027040037e+18, "collected_at": "2026-05-22T04:28:45.663131+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1291_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1291_IMG.JPG", "file_name": "112-1291_IMG.JPG", "file_stem": "112-1291_IMG", "file_ext": ".jpg", "file_size": 1743575.0, "mtime": "2002-07-28T00:16:18+00:00", "mtime_ts": 1027815378.0, "ctime": "2002-07-28T00:16:18+00:00", "sha256_file": "c12a74fda185847227c7307cc9a7989972647e4496a692cfb059f2566bce6b38", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:19", "EXIF DateTimeDigitized": "2002:07:28 00:16:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121291", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "012eb1c1b0c34642502cc3e81d6242b6501a906c209a691bc25dac7617d1f942", "phash": "974a2aa5ded42b45", "dhash": "6dc9d85c4eceeeea", "phash_int": -7.545171333809427e+18, "collected_at": "2026-05-22T04:28:45.740320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1292_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1292_IMG.JPG", "file_name": "112-1292_IMG.JPG", "file_stem": "112-1292_IMG", "file_ext": ".jpg", "file_size": 1856543.0, "mtime": "2002-07-28T00:16:26+00:00", "mtime_ts": 1027815386.0, "ctime": "2002-07-28T00:16:26+00:00", "sha256_file": "bb6f93babf17e79e0452fe09d878bcb3f7a5b334a4748e304f14702aebc7877b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3692", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:28", "EXIF DateTimeDigitized": "2002:07:28 00:16:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121292", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83aea551f45b8c7430858b14ac9edc6549f373d13a5308eaf7a240aeb3dd530c", "phash": "dc59b25dc83275a8", "dhash": "8090b0b0b070acad", "phash_int": -2.5688259965777044e+18, "collected_at": "2026-05-22T04:28:45.764319+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1293_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1293_IMG.JPG", "file_name": "112-1293_IMG.JPG", "file_stem": "112-1293_IMG", "file_ext": ".jpg", "file_size": 1549230.0, "mtime": "2002-07-28T00:16:42+00:00", "mtime_ts": 1027815402.0, "ctime": "2002-07-28T00:16:42+00:00", "sha256_file": "ef0635e8aebf0e99455093f8ee2c1cf283c0764b902d41f245b51029ef54ea96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5262", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:43", "EXIF DateTimeDigitized": "2002:07:28 00:16:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121293", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f470471e5a8d1be63c34b8976be13a14a5b47451862b2b7b94e2cee34d75a755", "phash": "854b2cba51c66dbc", "dhash": "9e2cc6ca9e3eb6e6", "phash_int": -8.841924264664339e+18, "collected_at": "2026-05-22T04:28:45.832661+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1295_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1295_IMG.JPG", "file_name": "112-1295_IMG.JPG", "file_stem": "112-1295_IMG", "file_ext": ".jpg", "file_size": 1475902.0, "mtime": "2002-07-28T00:16:56+00:00", "mtime_ts": 1027815416.0, "ctime": "2002-07-28T00:16:56+00:00", "sha256_file": "1838f03a53f70ba8500e10cf3b0574200f1fb5220efd17b822257f9af7111bac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:16:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4054", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:16:57", "EXIF DateTimeDigitized": "2002:07:28 00:16:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121295", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d644ed285a56bea32b905bf3be30eae333d57ce413ff91ba942c021d545930ad", "phash": "d924d335e6996c32", "dhash": "58687072f0727079", "phash_int": -2.799880839862064e+18, "collected_at": "2026-05-22T04:28:45.851730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1296_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1296_IMG.JPG", "file_name": "112-1296_IMG.JPG", "file_stem": "112-1296_IMG", "file_ext": ".jpg", "file_size": 1581006.0, "mtime": "2002-07-28T00:17:06+00:00", "mtime_ts": 1027815426.0, "ctime": "2002-07-28T00:17:06+00:00", "sha256_file": "eebfc2e9dbdccc170639f97aa6cc9e1d6675708577b91fdc84a92c23fc1ed23f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:17:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5388", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:17:08", "EXIF DateTimeDigitized": "2002:07:28 00:17:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121296", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e88eade1b8cdb35d64e7cf8fc1e445efc9d92bfa403e05821df7f3c82ed9bac", "phash": "906b25d69e216fb4", "dhash": "c34692b0b0e896d6", "phash_int": -8.040291106033668e+18, "collected_at": "2026-05-22T04:28:45.914775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1297_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1297_IMG.JPG", "file_name": "112-1297_IMG.JPG", "file_stem": "112-1297_IMG", "file_ext": ".jpg", "file_size": 1690654.0, "mtime": "2002-07-28T00:17:34+00:00", "mtime_ts": 1027815454.0, "ctime": "2002-07-28T00:17:34+00:00", "sha256_file": "6469bd3aac5e559f8a6fb418a657f93637355acca1d9e0cd62c2cd46df57efe7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:17:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5693", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:17:36", "EXIF DateTimeDigitized": "2002:07:28 00:17:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121297", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0c19a9ea6a1568e8032f895d8b496ea336425a6632fc3f7c76881dc14f0f9ea", "phash": "d52e2afd964b4a24", "dhash": "f2f1e444341092cc", "phash_int": -3.085481426065602e+18, "collected_at": "2026-05-22T04:28:46.014775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1298_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1298_IMG.JPG", "file_name": "112-1298_IMG.JPG", "file_stem": "112-1298_IMG", "file_ext": ".jpg", "file_size": 1687563.0, "mtime": "2002-07-28T00:17:48+00:00", "mtime_ts": 1027815468.0, "ctime": "2002-07-28T00:17:48+00:00", "sha256_file": "2ef116b1f418067bdbbaf416924e11a39828be99d0d2f3d8a9d8b4606e7276da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:17:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5637", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:17:50", "EXIF DateTimeDigitized": "2002:07:28 00:17:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121298", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f42333d0903076a328c09baee4d197dfa44bc1d340e4507ee19424855fd95a6c", "phash": "d42329fd964b2974", "dhash": "e6ebdacc341010cc", "phash_int": -3.160636344358983e+18, "collected_at": "2026-05-22T04:28:46.044780+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\112-1299_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\112-1299_IMG.JPG", "file_name": "112-1299_IMG.JPG", "file_stem": "112-1299_IMG", "file_ext": ".jpg", "file_size": 1690999.0, "mtime": "2002-07-28T00:17:56+00:00", "mtime_ts": 1027815476.0, "ctime": "2002-07-28T00:17:56+00:00", "sha256_file": "e55f6480404513903fcfe84f21ed94b107c02a969b205969f0512b9189e5e51e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:17:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:17:58", "EXIF DateTimeDigitized": "2002:07:28 00:17:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121299", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e16844f914721755c0d5af24a1ec0e44751b9a096c8f51db91e2cec621f4e11", "phash": "8a556aafc6b44939", "dhash": "60e9d8e4df5737e1", "phash_int": -8.478753420269566e+18, "collected_at": "2026-05-22T04:28:46.211903+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1301_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1301_IMG.JPG", "file_name": "113-1301_IMG.JPG", "file_stem": "113-1301_IMG", "file_ext": ".jpg", "file_size": 1703878.0, "mtime": "2002-07-28T00:18:14+00:00", "mtime_ts": 1027815494.0, "ctime": "2002-07-28T00:18:14+00:00", "sha256_file": "386036fd081decce5e5d464c5e9b921802f0d8b9154d59c4df9c65834120fa62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:18:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5459", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:18:16", "EXIF DateTimeDigitized": "2002:07:28 00:18:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131301", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "263ec150dfdb0a6db9cb7a82424d75a9a8fc9ec3a511a1f672735d5ce0ae0b85", "phash": "d603fc982760df32", "dhash": "78e8cdc9e8b1a920", "phash_int": -3.0252967942369526e+18, "collected_at": "2026-05-22T04:28:46.218899+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1302_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1302_IMG.JPG", "file_name": "113-1302_IMG.JPG", "file_stem": "113-1302_IMG", "file_ext": ".jpg", "file_size": 1714996.0, "mtime": "2002-07-28T00:19:32+00:00", "mtime_ts": 1027815572.0, "ctime": "2002-07-28T00:19:32+00:00", "sha256_file": "3d8f3a54f84d05774e458ccc5702fa9843d2ea1b89c1feb581f1dcb31500b2f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:19:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4936", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:19:34", "EXIF DateTimeDigitized": "2002:07:28 00:19:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131302", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af4f97df922cfd824e1c7d8d69a42534390147eb156939c2e0e227ecdbc6be5c", "phash": "9c6a679949b4a26b", "dhash": "7c78b53070f8f0f0", "phash_int": -7.175809148197232e+18, "collected_at": "2026-05-22T04:28:46.423033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1303_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1303_IMG.JPG", "file_name": "113-1303_IMG.JPG", "file_stem": "113-1303_IMG", "file_ext": ".jpg", "file_size": 1630136.0, "mtime": "2002-07-28T00:19:52+00:00", "mtime_ts": 1027815592.0, "ctime": "2002-07-28T00:19:52+00:00", "sha256_file": "9301d67428006b5b5045ddfa005424c4646057c76be91967b25404d98c6683ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:19:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5109", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:19:53", "EXIF DateTimeDigitized": "2002:07:28 00:19:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131303", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "853661472abcd2ca6f7b2b81c11c0b4772d9fefb289e81f6cb1050c2bc7a4dba", "phash": "9c552556954bb659", "dhash": "f6e4baf8f8ecfbf6", "phash_int": -7.181792976970205e+18, "collected_at": "2026-05-22T04:28:46.458036+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1304_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1304_IMG.JPG", "file_name": "113-1304_IMG.JPG", "file_stem": "113-1304_IMG", "file_ext": ".jpg", "file_size": 1651015.0, "mtime": "2002-07-28T00:20:08+00:00", "mtime_ts": 1027815608.0, "ctime": "2002-07-28T00:20:08+00:00", "sha256_file": "af58ca1e08de0b06a20eceaa20ce3a30de01d2a29f000d87e3000e44ee46778a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:20:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:20:10", "EXIF DateTimeDigitized": "2002:07:28 00:20:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131304", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f78183214817b0e464167500e158d4c8027e102c78e9f6a0899be94a36c1d5e8", "phash": "9b2066a789db1b65", "dhash": "ad255959d9583838", "phash_int": -7.268696928817571e+18, "collected_at": "2026-05-22T04:28:46.512231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1305_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1305_IMG.JPG", "file_name": "113-1305_IMG.JPG", "file_stem": "113-1305_IMG", "file_ext": ".jpg", "file_size": 1591602.0, "mtime": "2002-07-28T00:20:40+00:00", "mtime_ts": 1027815640.0, "ctime": "2002-07-28T00:20:40+00:00", "sha256_file": "4e8fc592b73a9b6918e9498e06e15ccbe52ba0a4f90023e08446533b1144a0b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:20:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5675", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:20:42", "EXIF DateTimeDigitized": "2002:07:28 00:20:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131305", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ea6ee6399f5f3b0a5bda4258ea1ebe6077603769ec9880c5054d1fd644b0ad3", "phash": "85525ebae14c3733", "dhash": "383cd6f2967636a2", "phash_int": -8.839898961838066e+18, "collected_at": "2026-05-22T04:28:46.568229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1306_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1306_IMG.JPG", "file_name": "113-1306_IMG.JPG", "file_stem": "113-1306_IMG", "file_ext": ".jpg", "file_size": 1643445.0, "mtime": "2002-07-28T00:20:48+00:00", "mtime_ts": 1027815648.0, "ctime": "2002-07-28T00:20:48+00:00", "sha256_file": "9ba6b4248613e41e3aa1a1a5b704bda7efa6f5e0e5eb454732b89bf0a277879a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:20:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5950", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:20:49", "EXIF DateTimeDigitized": "2002:07:28 00:20:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131306", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44370e9263057c532a67f2ec825f411869be6c1b3627da72ee66115da654185c", "phash": "a95656b7e3c83522", "dhash": "9c3cb3d3db76b3f3", "phash_int": -6.244708485502062e+18, "collected_at": "2026-05-22T04:28:46.597420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1307_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1307_IMG.JPG", "file_name": "113-1307_IMG.JPG", "file_stem": "113-1307_IMG", "file_ext": ".jpg", "file_size": 1697736.0, "mtime": "2002-07-28T00:29:38+00:00", "mtime_ts": 1027816178.0, "ctime": "2002-07-28T00:29:38+00:00", "sha256_file": "4d800544da8617d7997693b5ae19462e9b08310290e4dc7613b1ce794b4778b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:29:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6400", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:29:39", "EXIF DateTimeDigitized": "2002:07:28 00:29:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131307", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e7e831f5c56b2f39f69ba32559a8a40f3a31ee50cde9d623c4f5e6d0a3c5f22", "phash": "fc1560fb9a070c67", "dhash": "a486b26a2ba34aa7", "phash_int": -2.82212767903577e+17, "collected_at": "2026-05-22T04:28:46.643041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1308_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1308_IMG.JPG", "file_name": "113-1308_IMG.JPG", "file_stem": "113-1308_IMG", "file_ext": ".jpg", "file_size": 1653225.0, "mtime": "2002-07-28T00:29:48+00:00", "mtime_ts": 1027816188.0, "ctime": "2002-07-28T00:29:48+00:00", "sha256_file": "3166d6c010e6036b95724649648220477dfc1d640e8c25a849f2cdc6c7d0e3dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:29:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6077", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:29:49", "EXIF DateTimeDigitized": "2002:07:28 00:29:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131308", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23c1ae0885c1b0f07ccf1657991290f3738b13bdcc21828489410f462cffbea4", "phash": "a62b708d895f749c", "dhash": "4b4b2dd7f75444ac", "phash_int": -6.472956286217522e+18, "collected_at": "2026-05-22T04:28:46.707046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1309_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1309_IMG.JPG", "file_name": "113-1309_IMG.JPG", "file_stem": "113-1309_IMG", "file_ext": ".jpg", "file_size": 1684424.0, "mtime": "2002-07-28T00:29:54+00:00", "mtime_ts": 1027816194.0, "ctime": "2002-07-28T00:29:54+00:00", "sha256_file": "343bd2af9630145252d0b2c0650a418abadebc3c220ea4d8aa382366f5565e43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:29:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6245", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:29:56", "EXIF DateTimeDigitized": "2002:07:28 00:29:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131309", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67a503445412d4aad839d33f217037bb40bc2264616fde4b81e4651c0f7c62e4", "phash": "a60b70cfa90774bc", "dhash": "494909577754448c", "phash_int": -6.481963201473318e+18, "collected_at": "2026-05-22T04:28:46.739046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1311_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1311_IMG.JPG", "file_name": "113-1311_IMG.JPG", "file_stem": "113-1311_IMG", "file_ext": ".jpg", "file_size": 220956.0, "mtime": "2002-07-28T00:35:14+00:00", "mtime_ts": 1027816514.0, "ctime": "2002-07-28T00:35:14+00:00", "sha256_file": "a986255a123825aa09b344f65fae170f6d75289a88621062b556c2599cbad4e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:35:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5737", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:35:16", "EXIF DateTimeDigitized": "2002:07:28 00:35:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131311", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "528658b3368fdf9ea8c35c802bd6c63c358e04004ff464e2c6b99ee934e658e9", "phash": "b62b79c48903767c", "dhash": "c3cb6dcbb544d43a", "phash_int": -5.320024649788852e+18, "collected_at": "2026-05-22T04:28:46.767057+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-27\\113-1310_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-27\\113-1310_IMG.JPG", "file_name": "113-1310_IMG.JPG", "file_stem": "113-1310_IMG", "file_ext": ".jpg", "file_size": 1562486.0, "mtime": "2002-07-28T00:30:04+00:00", "mtime_ts": 1027816204.0, "ctime": "2002-07-28T00:30:04+00:00", "sha256_file": "db1825ce98e8a2ff393b79fe83040df426fc87230ce307fa43afbddea0ec40eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 00:30:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5093", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 00:30:05", "EXIF DateTimeDigitized": "2002:07:28 00:30:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131310", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e08406ae213b3437c9a6f3839d476995f2b395aca7d70c49411d6592d209ca8", "phash": "8e4154ef07a07f72", "dhash": "73f1f56b63633734", "phash_int": -8.196176461235716e+18, "collected_at": "2026-05-22T04:28:46.782046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1313_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1313_IMG.JPG", "file_name": "113-1313_IMG.JPG", "file_stem": "113-1313_IMG", "file_ext": ".jpg", "file_size": 599152.0, "mtime": "2002-07-28T13:13:52+00:00", "mtime_ts": 1027862032.0, "ctime": "2002-07-28T13:13:52+00:00", "sha256_file": "1b703414fa7acb6171a51fbd6a7949767236d82ae41446c8e1fd0e432fd17ee8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:13:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6048", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:13:54", "EXIF DateTimeDigitized": "2002:07:28 13:13:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131313", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7af734add541777d7913e0827cbde11fd55418e0768595e07d4813a399f3a65b", "phash": "d784481b7bcc33c6", "dhash": "70c6e66c68586008", "phash_int": -2.9171273757509417e+18, "collected_at": "2026-05-22T04:28:46.844359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1312_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1312_IMG.JPG", "file_name": "113-1312_IMG.JPG", "file_stem": "113-1312_IMG", "file_ext": ".jpg", "file_size": 622088.0, "mtime": "2002-07-28T13:13:34+00:00", "mtime_ts": 1027862014.0, "ctime": "2002-07-28T13:13:34+00:00", "sha256_file": "0a71e139b6bc8d3acafbf29e3baa0c25517b56dc94559aed5752af7426f1b398", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:13:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5939", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:13:35", "EXIF DateTimeDigitized": "2002:07:28 13:13:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131312", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "587ed307cc7d30db2f19fe52c56c242fd16d15262bb534d3537dcd97d72720d6", "phash": "d3f5641d611e611b", "dhash": "8e8e9a88d8f868c8", "phash_int": -3.173520285066436e+18, "collected_at": "2026-05-22T04:28:46.846362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1314_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1314_IMG.JPG", "file_name": "113-1314_IMG.JPG", "file_stem": "113-1314_IMG", "file_ext": ".jpg", "file_size": 535003.0, "mtime": "2002-07-28T13:14:28+00:00", "mtime_ts": 1027862068.0, "ctime": "2002-07-28T13:14:28+00:00", "sha256_file": "45f9d5de6d800de3dd08f48872a5041be0be4b5125d1065dc04d85064d3f95db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:14:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5735", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:14:30", "EXIF DateTimeDigitized": "2002:07:28 13:14:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131314", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e9f52eb8f61b107dde959cca171f7b66b3dc236151c293edc77c45e1d437892", "phash": "fc8f0f1333711172", "dhash": "6b6323241c10240c", "phash_int": -2.479628793402446e+17, "collected_at": "2026-05-22T04:28:46.925413+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1315_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1315_IMG.JPG", "file_name": "113-1315_IMG.JPG", "file_stem": "113-1315_IMG", "file_ext": ".jpg", "file_size": 577707.0, "mtime": "2002-07-28T13:15:02+00:00", "mtime_ts": 1027862102.0, "ctime": "2002-07-28T13:15:02+00:00", "sha256_file": "ae8bd507386478826f01db9148c6e260584ac38369377c5f023ea883d1688a63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:15:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5567", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:15:03", "EXIF DateTimeDigitized": "2002:07:28 13:15:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131315", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1154aad67f0b8107892980c011e71306e4e0dd4687fdb5b4729f99f2e86d8d0f", "phash": "b5b227d70a0a39dc", "dhash": "cc8e96bbba3a22a2", "phash_int": -5.354173202450205e+18, "collected_at": "2026-05-22T04:28:46.927413+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1317_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1317_IMG.JPG", "file_name": "113-1317_IMG.JPG", "file_stem": "113-1317_IMG", "file_ext": ".jpg", "file_size": 622032.0, "mtime": "2002-07-28T13:15:38+00:00", "mtime_ts": 1027862138.0, "ctime": "2002-07-28T13:15:38+00:00", "sha256_file": "f88a0406a4c10e47fd4b8779a596b6b7903fdee7629047fd6a0e4c69b8dc0a5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:15:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6046", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:15:39", "EXIF DateTimeDigitized": "2002:07:28 13:15:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131317", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6244af328b92eb7c6a93f2a41b6e78d7ce0176e3ff30cd24ba54bcce0141d2d6", "phash": "a6a63d741040fcfd", "dhash": "864765ed2dc5eeb6", "phash_int": -6.43839104858135e+18, "collected_at": "2026-05-22T04:28:46.990600+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1316_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1316_IMG.JPG", "file_name": "113-1316_IMG.JPG", "file_stem": "113-1316_IMG", "file_ext": ".jpg", "file_size": 687136.0, "mtime": "2002-07-28T13:15:08+00:00", "mtime_ts": 1027862108.0, "ctime": "2002-07-28T13:15:08+00:00", "sha256_file": "fe5df026a8066f5c404c5f1b1c325622469ab2a9d09925c273c30c19061aa46d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:15:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7320", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:15:10", "EXIF DateTimeDigitized": "2002:07:28 13:15:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131316", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "335c41e1d182fd239b3dffc8c0304c22ca9726b9bbe9d5497709230e448ddb9d", "phash": "efbd461ee807081d", "dhash": "632f1e1e1fadeec3", "phash_int": -1.1717032294907228e+18, "collected_at": "2026-05-22T04:28:46.993598+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1318_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1318_IMG.JPG", "file_name": "113-1318_IMG.JPG", "file_stem": "113-1318_IMG", "file_ext": ".jpg", "file_size": 503116.0, "mtime": "2002-07-28T13:15:46+00:00", "mtime_ts": 1027862146.0, "ctime": "2002-07-28T13:15:46+00:00", "sha256_file": "175ccc453fdbaeaa9923ffa19b329f1a63d6ef657c01051d1ac7d217bf4f58a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:15:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5099", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:15:48", "EXIF DateTimeDigitized": "2002:07:28 13:15:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131318", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "182", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a35c723753ea5932e00a5c26e3dae7a66c55f6e5cd3801dc00f70fa4c7f999bb", "phash": "a09c5f0e37d19ac9", "dhash": "7897969e97919098", "phash_int": -6.873514416603555e+18, "collected_at": "2026-05-22T04:28:47.058775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1319_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1319_IMG.JPG", "file_name": "113-1319_IMG.JPG", "file_stem": "113-1319_IMG", "file_ext": ".jpg", "file_size": 534397.0, "mtime": "2002-07-28T13:15:58+00:00", "mtime_ts": 1027862158.0, "ctime": "2002-07-28T13:15:58+00:00", "sha256_file": "007bc231b0f0f2dab4ef29431a35ae00f519d54cab5ffb067d0086b07877a084", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:15:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4560", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:15:59", "EXIF DateTimeDigitized": "2002:07:28 13:15:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131319", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e322ceecd034341db1ef0fb8b4b30400e5506b419db3efb8b4df1d66e6facbe1", "phash": "839c1c136c8f369f", "dhash": "70f0c1c3c3cbd890", "phash_int": -8.963258288622848e+18, "collected_at": "2026-05-22T04:28:47.064775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1320_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1320_IMG.JPG", "file_name": "113-1320_IMG.JPG", "file_stem": "113-1320_IMG", "file_ext": ".jpg", "file_size": 546381.0, "mtime": "2002-07-28T13:16:10+00:00", "mtime_ts": 1027862170.0, "ctime": "2002-07-28T13:16:10+00:00", "sha256_file": "a9e02ad53c9dfafce319b30f0cc33df865509b6d59a796160ce5f6fa7fc59c3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:16:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5199", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:16:12", "EXIF DateTimeDigitized": "2002:07:28 13:16:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131320", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8383ded95aa02fb11132a9d138c1b125ce006bc025ff9b25cc224a524598710b", "phash": "abdb541ee4703e12", "dhash": "aa4b6b8b2b6bface", "phash_int": -6.063159981665927e+18, "collected_at": "2026-05-22T04:28:47.103776+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1321_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1321_IMG.JPG", "file_name": "113-1321_IMG.JPG", "file_stem": "113-1321_IMG", "file_ext": ".jpg", "file_size": 468540.0, "mtime": "2002-07-28T13:16:20+00:00", "mtime_ts": 1027862180.0, "ctime": "2002-07-28T13:16:20+00:00", "sha256_file": "0628fda1a1582e5793e823cf263eea14b6af3d67a444d7367bcf939445143b00", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:16:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4900", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:16:21", "EXIF DateTimeDigitized": "2002:07:28 13:16:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131321", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccc83c3e1299dc4de89c1f03173083a91e9bfadef8dad39c8de956bfd14329e3", "phash": "9c9079c275ebc2c3", "dhash": "3dbcb676f4f57b32", "phash_int": -7.165093131037457e+18, "collected_at": "2026-05-22T04:28:47.107777+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1322_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1322_IMG.JPG", "file_name": "113-1322_IMG.JPG", "file_stem": "113-1322_IMG", "file_ext": ".jpg", "file_size": 798324.0, "mtime": "2002-07-28T13:16:28+00:00", "mtime_ts": 1027862188.0, "ctime": "2002-07-28T13:16:28+00:00", "sha256_file": "8e9e07be7799f8b0614b1b729371a68ffc41db1662d7d27255d697eb39f0b614", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:16:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6528", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:16:29", "EXIF DateTimeDigitized": "2002:07:28 13:16:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131322", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "220", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc53eeee1a8e76581e57649797b935e754f69b24a6afa970d3b2b26843991a07", "phash": "d6cc6cc6913b871a", "dhash": "e4e474d9cc6c0d2e", "phash_int": -2.9688784542480773e+18, "collected_at": "2026-05-22T04:28:47.189632+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1323_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1323_IMG.JPG", "file_name": "113-1323_IMG.JPG", "file_stem": "113-1323_IMG", "file_ext": ".jpg", "file_size": 1153628.0, "mtime": "2002-07-28T13:18:22+00:00", "mtime_ts": 1027862302.0, "ctime": "2002-07-28T13:18:22+00:00", "sha256_file": "5cc7f93e79d1c43d923ae6708c1b14be0ae3f7ce2587ce23bab2cc2f7ce7e110", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:18:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7741", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:18:24", "EXIF DateTimeDigitized": "2002:07:28 13:18:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131323", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "804476c37efc46660e9089a8696a4151b0d9559dff069f80d392b04c60299f3a", "phash": "d49e21ae02e99f72", "dhash": "e6ae38d8e4648294", "phash_int": -3.126024060091654e+18, "collected_at": "2026-05-22T04:28:47.200630+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1325_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1325_IMG.JPG", "file_name": "113-1325_IMG.JPG", "file_stem": "113-1325_IMG", "file_ext": ".jpg", "file_size": 1038915.0, "mtime": "2002-07-28T13:19:20+00:00", "mtime_ts": 1027862360.0, "ctime": "2002-07-28T13:19:20+00:00", "sha256_file": "9255ff65ae1b78aa8a09eb6a8742060a59d96a690db359341d5026c90a28cd33", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:19:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7338", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:19:22", "EXIF DateTimeDigitized": "2002:07:28 13:19:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131325", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ffb4eec4ff66833a71c86b7cfd2c4217e37bd9031c8bb7514227464aeede9475", "phash": "c46e26c30f17ea33", "dhash": "61834366c0d4dc97", "phash_int": -4.2924507756238003e+18, "collected_at": "2026-05-22T04:28:47.259761+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1324_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1324_IMG.JPG", "file_name": "113-1324_IMG.JPG", "file_stem": "113-1324_IMG", "file_ext": ".jpg", "file_size": 841959.0, "mtime": "2002-07-28T13:19:08+00:00", "mtime_ts": 1027862348.0, "ctime": "2002-07-28T13:19:08+00:00", "sha256_file": "8ba6a708989f6b75a037e71d100d56da620272252a9835356682eb9a151eb321", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:19:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6364", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:19:09", "EXIF DateTimeDigitized": "2002:07:28 13:19:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131324", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "249c1101c728c0676cf49ac287be5045bcfddb5304cbd6f093bb1d3cceeaabbe", "phash": "f22e12e11bd57938", "dhash": "9ded35610b0b9418", "phash_int": -9.958377095583844e+17, "collected_at": "2026-05-22T04:28:47.263759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1326_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1326_IMG.JPG", "file_name": "113-1326_IMG.JPG", "file_stem": "113-1326_IMG", "file_ext": ".jpg", "file_size": 1106463.0, "mtime": "2002-07-28T13:19:42+00:00", "mtime_ts": 1027862382.0, "ctime": "2002-07-28T13:19:42+00:00", "sha256_file": "0106d8ea783e939897f789d24e3ad28c040967afb2e635a35c59e45e6e7a06c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:19:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6605", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:19:44", "EXIF DateTimeDigitized": "2002:07:28 13:19:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131326", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bea216268c57a8ad4337f51f044b202ea27ba8c889da83d68e381a50301dab9", "phash": "863f01e87683d5bc", "dhash": "6f63686c24a2d3d4", "phash_int": -8.773291451162045e+18, "collected_at": "2026-05-22T04:28:47.306766+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1327_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1327_IMG.JPG", "file_name": "113-1327_IMG.JPG", "file_stem": "113-1327_IMG", "file_ext": ".jpg", "file_size": 939750.0, "mtime": "2002-07-28T13:19:56+00:00", "mtime_ts": 1027862396.0, "ctime": "2002-07-28T13:19:56+00:00", "sha256_file": "ea20bdf7893c00fffb385920442fb4acad519977d2076626056f78caa741e8c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:19:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6769", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:19:57", "EXIF DateTimeDigitized": "2002:07:28 13:19:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131327", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e30522ac6dc0185d419249aa1828bdcc3fe3f9234428895d2d0aab87571cba9d", "phash": "eae8e9cec9a18315", "dhash": "2323dac3e1e98bc3", "phash_int": -1.5197077998822024e+18, "collected_at": "2026-05-22T04:28:47.307761+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1328_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1328_IMG.JPG", "file_name": "113-1328_IMG.JPG", "file_stem": "113-1328_IMG", "file_ext": ".jpg", "file_size": 2449935.0, "mtime": "2002-07-28T13:20:30+00:00", "mtime_ts": 1027862430.0, "ctime": "2002-07-28T13:20:30+00:00", "sha256_file": "61ca225ca2934d9cd89c128ed92e417c6ef5e4804a8ed85567e820d3a32d2782", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:20:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8703", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:20:31", "EXIF DateTimeDigitized": "2002:07:28 13:20:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131328", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdee4b4dd342e9e982c7f24de4eb83dd7a37faf7b6c20f8deb7e6d39cdd7c5cb", "phash": "c7cde08cb0b352f4", "dhash": "e4604848ececcc8c", "phash_int": -4.0493335950716227e+18, "collected_at": "2026-05-22T04:28:47.401765+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1329_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1329_IMG.JPG", "file_name": "113-1329_IMG.JPG", "file_stem": "113-1329_IMG", "file_ext": ".jpg", "file_size": 3274523.0, "mtime": "2002-07-28T13:21:08+00:00", "mtime_ts": 1027862468.0, "ctime": "2002-07-28T13:21:08+00:00", "sha256_file": "c1cd0695e872028053a3ad4a11f92964b772c28eeb0e2d671e30facb7d1ff549", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:21:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8668", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:21:09", "EXIF DateTimeDigitized": "2002:07:28 13:21:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131329", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d279e22544dcc66fb960f23e067b8f05b71b27c717f7748c346fe5e83d44ec1d", "phash": "c53e84c56d16fdc0", "dhash": "36b7b25ca3d2c4b2", "phash_int": -4.2338006162080404e+18, "collected_at": "2026-05-22T04:28:47.428766+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1330_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1330_IMG.JPG", "file_name": "113-1330_IMG.JPG", "file_stem": "113-1330_IMG", "file_ext": ".jpg", "file_size": 2661485.0, "mtime": "2002-07-28T13:21:18+00:00", "mtime_ts": 1027862478.0, "ctime": "2002-07-28T13:21:18+00:00", "sha256_file": "6833715c52664e39a4c3fd77795711366a74c4caff0c0b7410bd9c5e27398af1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:21:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8874", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:21:19", "EXIF DateTimeDigitized": "2002:07:28 13:21:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131330", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a0f84dfdc21bcbf2d9e3e1bb8abac11a0fe0e9380f958d0b177b4f6214521d3", "phash": "c6cd169bb4b5cc30", "dhash": "f8c0e6e699e9e8ec", "phash_int": -4.1216132259665807e+18, "collected_at": "2026-05-22T04:28:47.537770+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1331_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1331_IMG.JPG", "file_name": "113-1331_IMG.JPG", "file_stem": "113-1331_IMG", "file_ext": ".jpg", "file_size": 2480557.0, "mtime": "2002-07-28T13:21:52+00:00", "mtime_ts": 1027862512.0, "ctime": "2002-07-28T13:21:52+00:00", "sha256_file": "cb239690f4a5ca183391e3aabd27131b3edddbf9f523761c934016b77c33404d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:21:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7437", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:21:54", "EXIF DateTimeDigitized": "2002:07:28 13:21:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131331", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f05b11475b69412ceaf7295f67393cea3bcddf8c8480d75cb1682c61206ea35", "phash": "d034a1a135edbce6", "dhash": "9ed828305810c0d0", "phash_int": -3.4439501012650076e+18, "collected_at": "2026-05-22T04:28:47.554771+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1332_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1332_IMG.JPG", "file_name": "113-1332_IMG.JPG", "file_stem": "113-1332_IMG", "file_ext": ".jpg", "file_size": 2338990.0, "mtime": "2002-07-28T13:22:06+00:00", "mtime_ts": 1027862526.0, "ctime": "2002-07-28T13:22:06+00:00", "sha256_file": "8f56bd791ff7636ef46695738632cc73639a76109646de4f281ff226c27c6a3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:22:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7168", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:22:07", "EXIF DateTimeDigitized": "2002:07:28 13:22:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131332", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87b3d95bcdc437d1532eec5d8da991f51961bd38e68d671b19c1110ea68567fb", "phash": "c9623c974af1b855", "dhash": "638312d1c83a5233", "phash_int": -3.9355165038733087e+18, "collected_at": "2026-05-22T04:28:47.682775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1333_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1333_IMG.JPG", "file_name": "113-1333_IMG.JPG", "file_stem": "113-1333_IMG", "file_ext": ".jpg", "file_size": 1881594.0, "mtime": "2002-07-28T13:23:50+00:00", "mtime_ts": 1027862630.0, "ctime": "2002-07-28T13:23:50+00:00", "sha256_file": "5c6b5bfab8ca2fecf3fb2c7ceae1f8c3d792655cf27b85a13b3f0928659807ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:23:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7009", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:23:51", "EXIF DateTimeDigitized": "2002:07:28 13:23:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131333", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cae5b5b57a5ec121276826388323887fbdd571e1e640d240cd2c920f5c49b11", "phash": "cf07cb3590d3b14c", "dhash": "40616018360ac9b1", "phash_int": -3.5286283520979963e+18, "collected_at": "2026-05-22T04:28:47.685862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1335_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1335_IMG.JPG", "file_name": "113-1335_IMG.JPG", "file_stem": "113-1335_IMG", "file_ext": ".jpg", "file_size": 1913911.0, "mtime": "2002-07-28T14:29:20+00:00", "mtime_ts": 1027866560.0, "ctime": "2002-07-28T14:29:20+00:00", "sha256_file": "46439d14a9df15847f8db74725f01754817e62ead3e2ae5a5c738355e3641cdc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 14:29:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8055", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 14:29:21", "EXIF DateTimeDigitized": "2002:07:28 14:29:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131335", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3bbcd79ecb26bc8a8ba23b909928ff9f8b34776d18a844dbc8beb6888e5fde9f", "phash": "c4d5422b49369ff8", "dhash": "c29034b4b3528db1", "phash_int": -4.263428718556963e+18, "collected_at": "2026-05-22T04:28:47.792362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1334_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1334_IMG.JPG", "file_name": "113-1334_IMG.JPG", "file_stem": "113-1334_IMG", "file_ext": ".jpg", "file_size": 1695374.0, "mtime": "2002-07-28T13:24:18+00:00", "mtime_ts": 1027862658.0, "ctime": "2002-07-28T13:24:18+00:00", "sha256_file": "c14251f0edf37de1536bcbbe89afbae06edd10af22ba297c60a42c1d7144ab3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 13:24:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6269", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 13:24:19", "EXIF DateTimeDigitized": "2002:07:28 13:24:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131334", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88088e56d1578852f4dcbf0392a728cea6bc5837b3c822816471dd74bb0bfe90", "phash": "f29f617e67310423", "dhash": "6a309c180d25818d", "phash_int": -9.639445997089577e+17, "collected_at": "2026-05-22T04:28:47.813563+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1336_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1336_IMG.JPG", "file_name": "113-1336_IMG.JPG", "file_stem": "113-1336_IMG", "file_ext": ".jpg", "file_size": 1737636.0, "mtime": "2002-07-28T14:29:42+00:00", "mtime_ts": 1027866582.0, "ctime": "2002-07-28T14:29:42+00:00", "sha256_file": "2010e665205c5da5cbff303ff2ab22c43b3d497af5cd4343b5129b0f5cf13b19", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 14:29:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7433", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 14:29:44", "EXIF DateTimeDigitized": "2002:07:28 14:29:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131336", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b38819e968251a57a104d74a19f6332942698566a3dd9df123e5131d7135ab20", "phash": "c8a85b5734e0ebd8", "dhash": "91abb3b7aa5032aa", "phash_int": -3.987837039929136e+18, "collected_at": "2026-05-22T04:28:47.920609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1337_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1337_IMG.JPG", "file_name": "113-1337_IMG.JPG", "file_stem": "113-1337_IMG", "file_ext": ".jpg", "file_size": 1775010.0, "mtime": "2002-07-28T14:30:04+00:00", "mtime_ts": 1027866604.0, "ctime": "2002-07-28T14:30:04+00:00", "sha256_file": "a33776e060cf0ac485a1b6b020dd89145b9abc732c971c4c3f033b8243fad16e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 14:30:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7716", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 14:30:06", "EXIF DateTimeDigitized": "2002:07:28 14:30:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131337", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8347ad1a6d7fb7239eed1024f6765e6906b960fad4c059b462fce4f5479d1397", "phash": "ded4696b323530aa", "dhash": "5264242c69635547", "phash_int": -2.390169593102127e+18, "collected_at": "2026-05-22T04:28:47.924607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1338_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1338_IMG.JPG", "file_name": "113-1338_IMG.JPG", "file_stem": "113-1338_IMG", "file_ext": ".jpg", "file_size": 2794648.0, "mtime": "2002-07-28T15:19:02+00:00", "mtime_ts": 1027869542.0, "ctime": "2002-07-28T15:19:02+00:00", "sha256_file": "7de2ff71b55ee49e5070ca970e4f79e36700db26309c0f96c4bbc9b6edb77d17", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:19:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8427", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 15:19:04", "EXIF DateTimeDigitized": "2002:07:28 15:19:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131338", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "877fe043cbf9f9daeabfc236bf77e3949dc78088e710e17ac64ae829c203a55d", "phash": "956e1cb3ca9d04f2", "dhash": "78696649c9de1a9c", "phash_int": -7.679168756096105e+18, "collected_at": "2026-05-22T04:28:48.036334+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1339_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1339_IMG.JPG", "file_name": "113-1339_IMG.JPG", "file_stem": "113-1339_IMG", "file_ext": ".jpg", "file_size": 2266513.0, "mtime": "2002-07-28T15:19:08+00:00", "mtime_ts": 1027869548.0, "ctime": "2002-07-28T15:19:08+00:00", "sha256_file": "f968e17b5c682de5db67d93c7b47891e62798e389a88cccd425053479bcd3fae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:19:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8295", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 15:19:10", "EXIF DateTimeDigitized": "2002:07:28 15:19:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2209/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131339", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2209"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b029d6d1aee71574c160ba911405f37bf0261455f2c38c1bac180836a851422e", "phash": "b4490eb7b2a32b3c", "dhash": "c3f0b38c2c6e2f26", "phash_int": -5.455813291443803e+18, "collected_at": "2026-05-22T04:28:48.044400+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1341_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1341_IMG.JPG", "file_name": "113-1341_IMG.JPG", "file_stem": "113-1341_IMG", "file_ext": ".jpg", "file_size": 1652567.0, "mtime": "2002-07-28T15:21:10+00:00", "mtime_ts": 1027869670.0, "ctime": "2002-07-28T15:21:10+00:00", "sha256_file": "ff010163bc5db59259f353be8d8cd90db3462734dae9a2809d22ee3bde267112", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:21:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7391", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 15:21:11", "EXIF DateTimeDigitized": "2002:07:28 15:21:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "559/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[46, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131341", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1118"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0886c82d3a7928f86da5bdf1ba6ea8f37ce367f4bfb2cfe0a5d23650072a6770", "phash": "c660391d8e2f875e", "dhash": "448ccce4e4e40aca", "phash_int": -4.152256057333283e+18, "collected_at": "2026-05-22T04:28:48.112611+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1340_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1340_IMG.JPG", "file_name": "113-1340_IMG.JPG", "file_stem": "113-1340_IMG", "file_ext": ".jpg", "file_size": 1740570.0, "mtime": "2002-07-28T15:21:04+00:00", "mtime_ts": 1027869664.0, "ctime": "2002-07-28T15:21:04+00:00", "sha256_file": "ad2b7a6c4cdd14056db4d75f7de577262523afd9e143a47f219d00297def7288", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:21:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7456", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 15:21:06", "EXIF DateTimeDigitized": "2002:07:28 15:21:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1049/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131340", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1049"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5b78461f90ccaabf4e8f2c5eba2678adc0f98d832df6172fffd05041dcf2b32", "phash": "c57933028c3da36f", "dhash": "941c5472e1cc56d6", "phash_int": -4.217283490019958e+18, "collected_at": "2026-05-22T04:28:48.122703+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1342_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1342_IMG.JPG", "file_name": "113-1342_IMG.JPG", "file_stem": "113-1342_IMG", "file_ext": ".jpg", "file_size": 1155480.0, "mtime": "2002-07-28T15:21:18+00:00", "mtime_ts": 1027869678.0, "ctime": "2002-07-28T15:21:18+00:00", "sha256_file": "1c029f53eb243a7f7af4254bd68e326ba83650d1e214e11d658a61ee51aa7dcc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:21:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 15:21:19", "EXIF DateTimeDigitized": "2002:07:28 15:21:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1029/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[67, 198, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131342", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1029"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2a2f3ef6c42b25372eb5cd062ffc007d2cce472d62b916c18ab8aad06572eb2", "phash": "cf6672830ba15f16", "dhash": "cb66616363e28f57", "phash_int": -3.5019857530725745e+18, "collected_at": "2026-05-22T04:28:48.210708+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1343_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1343_IMG.JPG", "file_name": "113-1343_IMG.JPG", "file_stem": "113-1343_IMG", "file_ext": ".jpg", "file_size": 4111427.0, "mtime": "2002-07-30T22:08:34+00:00", "mtime_ts": 1028066914.0, "ctime": "2002-07-30T22:08:34+00:00", "sha256_file": "62422b85c74d8bd0600c7d23bc9cbc6ae26e91ddb11421f2d2844f735a861038", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 15:21:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "11754", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:28 15:21:52", "EXIF DateTimeDigitized": "2002:07:28 15:21:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131343", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29953c74e1ff5e55d4e3db6dfce7ea5611fedd51fd5ef0029ee89efd8e18e6cf", "phash": "db0936274772927a", "dhash": "9c72b9737379092c", "phash_int": -2.6635381622826225e+18, "collected_at": "2026-05-22T04:28:48.274899+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1344_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1344_IMG.JPG", "file_name": "113-1344_IMG.JPG", "file_stem": "113-1344_IMG", "file_ext": ".jpg", "file_size": 1727406.0, "mtime": "2002-07-28T16:07:04+00:00", "mtime_ts": 1027872424.0, "ctime": "2002-07-28T16:07:04+00:00", "sha256_file": "58646f5f22f3d77da51fca78a0975d332829800eebc0e6c649dae0b8b87d4f7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:07:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6954", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:07:05", "EXIF DateTimeDigitized": "2002:07:28 16:07:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131344", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e99c4c52dad5c29a5c7db310991c3d02d5402714c13f2b8f5f7f6a8742bc033b", "phash": "868059596be7636d", "dhash": "93f4e6e5f5b53561", "phash_int": -8.754899435010956e+18, "collected_at": "2026-05-22T04:28:48.376309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1345_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1345_IMG.JPG", "file_name": "113-1345_IMG.JPG", "file_stem": "113-1345_IMG", "file_ext": ".jpg", "file_size": 1693465.0, "mtime": "2002-07-28T16:07:12+00:00", "mtime_ts": 1027872432.0, "ctime": "2002-07-28T16:07:12+00:00", "sha256_file": "3fce4ce1e38c71edc24e158d940fb259cbf77d24899a67f9f862f000f49d5378", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:07:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6990", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:07:13", "EXIF DateTimeDigitized": "2002:07:28 16:07:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131345", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c46cc424eda58d97aaf7d758bfe6bddc75bdb38b87ddb04e922018ee565e23f", "phash": "82e06d5c6de3e166", "dhash": "a3e8cdcbaba96947", "phash_int": -9.016086210247664e+18, "collected_at": "2026-05-22T04:28:48.380309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1346_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1346_IMG.JPG", "file_name": "113-1346_IMG.JPG", "file_stem": "113-1346_IMG", "file_ext": ".jpg", "file_size": 1736942.0, "mtime": "2002-07-28T16:07:30+00:00", "mtime_ts": 1027872450.0, "ctime": "2002-07-28T16:07:30+00:00", "sha256_file": "87af2ff8e45d9f8a4e335bc2197fc59dce6cd1a27fcf66d271dcd653fdef3926", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:07:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6006", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:07:32", "EXIF DateTimeDigitized": "2002:07:28 16:07:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131346", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fde5ce0e528d0ee2b4ab4f5532624f4e3ad904de71a715d4d882475eb1bbbd5", "phash": "c9cbc8f9b33e4406", "dhash": "13c3e11bcbb3b9b8", "phash_int": -3.905807277034159e+18, "collected_at": "2026-05-22T04:28:48.491317+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1347_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1347_IMG.JPG", "file_name": "113-1347_IMG.JPG", "file_stem": "113-1347_IMG", "file_ext": ".jpg", "file_size": 1753425.0, "mtime": "2002-07-28T16:07:48+00:00", "mtime_ts": 1027872468.0, "ctime": "2002-07-28T16:07:48+00:00", "sha256_file": "b26440995829de64661d2a0b26dbe675a39febf5f1285b62e2ba039c8689eb0f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:07:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7674", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:07:49", "EXIF DateTimeDigitized": "2002:07:28 16:07:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131347", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b29264311296c9dfaba7ccd167de357ffcd978d82146d6ad239651a147c6b8e8", "phash": "c4a3733c4c6fe270", "dhash": "e5fcd576b53144c4", "phash_int": -4.2774485182542065e+18, "collected_at": "2026-05-22T04:28:48.493316+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1349_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1349_IMG.JPG", "file_name": "113-1349_IMG.JPG", "file_stem": "113-1349_IMG", "file_ext": ".jpg", "file_size": 1992235.0, "mtime": "2002-07-28T16:10:46+00:00", "mtime_ts": 1027872646.0, "ctime": "2002-07-28T16:10:46+00:00", "sha256_file": "db45bc66c110b21ef278b84b028eef1da2d96014a2b2d44effdd06e3fc647e63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:10:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7180", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:10:47", "EXIF DateTimeDigitized": "2002:07:28 16:10:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "731/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131349", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7310"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbfb1336fdfd37cc10bfba6d511797177c8234947f009853ed2db283c79646c9", "phash": "f511f74383e80765", "dhash": "5e1e36874644074e", "phash_int": -7.875765904652351e+17, "collected_at": "2026-05-22T04:28:48.649307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1350_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1350_IMG.JPG", "file_name": "113-1350_IMG.JPG", "file_stem": "113-1350_IMG", "file_ext": ".jpg", "file_size": 1966699.0, "mtime": "2002-07-28T16:10:52+00:00", "mtime_ts": 1027872652.0, "ctime": "2002-07-28T16:10:52+00:00", "sha256_file": "4596d96c30f1d71352a5002ba2d8cbed6f63906ccf49a2d0369add02ff52f3fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:10:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7827", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:10:53", "EXIF DateTimeDigitized": "2002:07:28 16:10:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1147/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131350", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4588"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3ca8779c64d577aac5fbbc4c5795e49f06b77d60517cdcdcfe98de305e6ce3e", "phash": "aa5d97e545560f88", "dhash": "6032313193ab8dcd", "phash_int": -6.170608903461138e+18, "collected_at": "2026-05-22T04:28:48.660307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1351_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1351_IMG.JPG", "file_name": "113-1351_IMG.JPG", "file_stem": "113-1351_IMG", "file_ext": ".jpg", "file_size": 2046006.0, "mtime": "2002-07-28T16:10:56+00:00", "mtime_ts": 1027872656.0, "ctime": "2002-07-28T16:10:56+00:00", "sha256_file": "5bef2bd2cf216b1ffc72aa0f1b44098652d4b56af06a23f08f61305186f9831a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:10:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7910", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:10:58", "EXIF DateTimeDigitized": "2002:07:28 16:10:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2079/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131351", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "206", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10395"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e096875bcd1eff80e8663c766d5743fc21b8a3cf1ae6acfbf8a17a08161d2fe2", "phash": "aa5d97a167451e89", "dhash": "603331b3abadc6ec", "phash_int": -6.170609194949599e+18, "collected_at": "2026-05-22T04:28:48.760312+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1352_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1352_IMG.JPG", "file_name": "113-1352_IMG.JPG", "file_stem": "113-1352_IMG", "file_ext": ".jpg", "file_size": 1754806.0, "mtime": "2002-07-28T16:11:02+00:00", "mtime_ts": 1027872662.0, "ctime": "2002-07-28T16:11:02+00:00", "sha256_file": "8e4b3ea136a362ff80b9207b4573903ec5cb6bf1214fc9389789668a7bf2cc24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:11:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6615", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:11:03", "EXIF DateTimeDigitized": "2002:07:28 16:11:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3343/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131352", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3343"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79deee96cdc692d89e0b102410f26da4c5ae6b8009cd173b4ea77f6bc4e3de86", "phash": "8d17565a039cbb9c", "dhash": "6d415adef3ab23d5", "phash_int": -8.280054445289719e+18, "collected_at": "2026-05-22T04:28:48.768313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1353_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1353_IMG.JPG", "file_name": "113-1353_IMG.JPG", "file_stem": "113-1353_IMG", "file_ext": ".jpg", "file_size": 1887211.0, "mtime": "2002-07-28T16:11:08+00:00", "mtime_ts": 1027872668.0, "ctime": "2002-07-28T16:11:08+00:00", "sha256_file": "a79b807b0dbb6d873ac6feace36f929a411798afad03eaf9577e92a537bbaaa1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 16:11:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7213", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 16:11:10", "EXIF DateTimeDigitized": "2002:07:28 16:11:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131353", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67bdbe82eb27597f522c1bf48690047de9d5c24856480208cc77ec3c230eeb76", "phash": "fc583b08c276359e", "dhash": "3b3332a4e0b62f2e", "phash_int": -2.6339566939286998e+17, "collected_at": "2026-05-22T04:28:48.888401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1354_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1354_IMG.JPG", "file_name": "113-1354_IMG.JPG", "file_stem": "113-1354_IMG", "file_ext": ".jpg", "file_size": 2486273.0, "mtime": "2002-07-28T17:59:50+00:00", "mtime_ts": 1027879190.0, "ctime": "2002-07-28T17:59:50+00:00", "sha256_file": "56feeb0099e0c0c12d5f52429af286f60e4d01c6676d2ad68a668e2fc51ac7bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 17:59:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6098", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 17:59:51", "EXIF DateTimeDigitized": "2002:07:28 17:59:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2457/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131354", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4914"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "586e17bb6abe66b601cb9a40cc09cdfed368b212fd591778b8a6113f0db52ca1", "phash": "c7437874763c7483", "dhash": "84d1c0ece8e4f16b", "phash_int": -4.0882915951270656e+18, "collected_at": "2026-05-22T04:28:48.902398+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1355_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1355_IMG.JPG", "file_name": "113-1355_IMG.JPG", "file_stem": "113-1355_IMG", "file_ext": ".jpg", "file_size": 2427929.0, "mtime": "2002-07-28T17:59:54+00:00", "mtime_ts": 1027879194.0, "ctime": "2002-07-28T17:59:54+00:00", "sha256_file": "1636adb97669f0e8a87051eaf3757c3e211e78a7aac9482f498bceabe197865d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 17:59:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6013", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 17:59:56", "EXIF DateTimeDigitized": "2002:07:28 17:59:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2457/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131355", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4914"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a86c1bf7b118fc10d184c30d24a508a7453d350bed1c4d89cc4f83384571653", "phash": "c742387476bcd48b", "dhash": "0cc1c0ecc8ecf17b", "phash_int": -4.0886434388395407e+18, "collected_at": "2026-05-22T04:28:49.077277+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1356_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1356_IMG.JPG", "file_name": "113-1356_IMG.JPG", "file_stem": "113-1356_IMG", "file_ext": ".jpg", "file_size": 3538181.0, "mtime": "2002-07-28T18:00:08+00:00", "mtime_ts": 1027879208.0, "ctime": "2002-07-28T18:00:08+00:00", "sha256_file": "bfbcfef93e03d2533c5afd88d98322e62d8734d77372c456f0304a6adc33c6bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:00:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8726", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:00:09", "EXIF DateTimeDigitized": "2002:07:28 18:00:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131356", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44ee46112644d56e946a740e895fe1afaca4bc46c99b2bdd5d0813ac2459834f", "phash": "855520a7cf493bb9", "dhash": "ccd494f0dcccd6d7", "phash_int": -8.83912278853542e+18, "collected_at": "2026-05-22T04:28:49.088429+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1358_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1358_IMG.JPG", "file_name": "113-1358_IMG.JPG", "file_stem": "113-1358_IMG", "file_ext": ".jpg", "file_size": 2798401.0, "mtime": "2002-07-28T18:00:16+00:00", "mtime_ts": 1027879216.0, "ctime": "2002-07-28T18:00:16+00:00", "sha256_file": "acb5615ab5bf2452e676357fb9974488b9e14d857fe52f31bb2f946f1d3da6e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:00:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7208", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:00:18", "EXIF DateTimeDigitized": "2002:07:28 18:00:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131358", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b498c3fc20b35c176e42de9fd597a54fac52fc8423ef52a6a1cc33bb1334ac7a", "phash": "d02c5cd6e0693bec", "dhash": "a6363f9b40c88080", "phash_int": -3.4462775368875223e+18, "collected_at": "2026-05-22T04:28:49.268528+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1357_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1357_IMG.JPG", "file_name": "113-1357_IMG.JPG", "file_stem": "113-1357_IMG", "file_ext": ".jpg", "file_size": 3339409.0, "mtime": "2002-07-28T18:00:12+00:00", "mtime_ts": 1027879212.0, "ctime": "2002-07-28T18:00:12+00:00", "sha256_file": "38b32d24bf18d7d10f2f1b48eba846afd0f13b22bdccd6d1f5217a02a02239be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:00:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7648", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:00:14", "EXIF DateTimeDigitized": "2002:07:28 18:00:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131357", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abfc1725dd38acdd9a5fef0d6113a78c7ef53e00120804da985461bbe0573d76", "phash": "d7629290d85e589f", "dhash": "e9484900d0d0e0f0", "phash_int": -2.9266156570343936e+18, "collected_at": "2026-05-22T04:28:49.285650+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1359_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1359_IMG.JPG", "file_name": "113-1359_IMG.JPG", "file_stem": "113-1359_IMG", "file_ext": ".jpg", "file_size": 3139756.0, "mtime": "2002-07-28T18:00:22+00:00", "mtime_ts": 1027879222.0, "ctime": "2002-07-28T18:00:22+00:00", "sha256_file": "fb3f2b8c6cc13cb9f75103ff74f331080e054449fc8a37198b71fd6a1342e185", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:00:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6983", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:00:23", "EXIF DateTimeDigitized": "2002:07:28 18:00:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131359", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aea54e4324b5a35f2b465a816611016df6206d421bf79199e620212d937854cd", "phash": "c73f2781c04624ff", "dhash": "4b5b4fc082a44080", "phash_int": -4.0895064983990344e+18, "collected_at": "2026-05-22T04:28:49.348029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1360_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1360_IMG.JPG", "file_name": "113-1360_IMG.JPG", "file_stem": "113-1360_IMG", "file_ext": ".jpg", "file_size": 1245278.0, "mtime": "2002-07-28T18:00:54+00:00", "mtime_ts": 1027879254.0, "ctime": "2002-07-28T18:00:54+00:00", "sha256_file": "7abdd36df2b1412aa06326aa7ebd251190fd1c33adc9f660ef545971709f6f92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:00:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8211", "EXIF ExposureTime": "1/50", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:00:55", "EXIF DateTimeDigitized": "2002:07:28 18:00:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "717/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131360", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "717"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf361940e6d5c189a259794a466f7a6390ce234fa23b13667c82ca52ee86d45b", "phash": "9c894a1af7e19ac6", "dhash": "b933624e2439946c", "phash_int": -7.167115852295071e+18, "collected_at": "2026-05-22T04:28:49.413327+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1361_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1361_IMG.JPG", "file_name": "113-1361_IMG.JPG", "file_stem": "113-1361_IMG", "file_ext": ".jpg", "file_size": 1134930.0, "mtime": "2002-07-28T18:01:08+00:00", "mtime_ts": 1027879268.0, "ctime": "2002-07-28T18:01:08+00:00", "sha256_file": "dfb18a64d01701565e9118eeab11dd2ac9f9a659f85fa326dfcf0512a1910d4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:01:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7604", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:01:10", "EXIF DateTimeDigitized": "2002:07:28 18:01:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "89/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131361", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "712"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9fcbe5396efef16f6baab093d183cceb1e22b2fc49bec86bd867b81ebe8040d", "phash": "9f695a16f191b264", "dhash": "5163435676696828", "phash_int": -6.959932694535753e+18, "collected_at": "2026-05-22T04:28:49.460323+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1367_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1367_IMG.JPG", "file_name": "113-1367_IMG.JPG", "file_stem": "113-1367_IMG", "file_ext": ".jpg", "file_size": 2656164.0, "mtime": "2002-07-28T18:29:28+00:00", "mtime_ts": 1027880968.0, "ctime": "2002-07-28T18:29:28+00:00", "sha256_file": "37ff765e67dca3c5e3044d9d39de029e8606e3548ccc018d9a2645895de3fe1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:29:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7344", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:29:29", "EXIF DateTimeDigitized": "2002:07:28 18:29:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 192, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131367", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d266f8c5d868179bd4925bf514b6b7d7c3270ff77bebafd7874a579162fe80f", "phash": "c26f788736aa4758", "dhash": "4794c9cdc8ea99b0", "phash_int": -4.436194585803602e+18, "collected_at": "2026-05-22T04:28:49.653171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1368_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1368_IMG.JPG", "file_name": "113-1368_IMG.JPG", "file_stem": "113-1368_IMG", "file_ext": ".jpg", "file_size": 2505161.0, "mtime": "2002-07-28T18:29:42+00:00", "mtime_ts": 1027880982.0, "ctime": "2002-07-28T18:29:42+00:00", "sha256_file": "5bc6af06958cc208bf5f0a8ded6b41aff69bb42e7a14e5d18909f0d957905c64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:29:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6762", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:29:44", "EXIF DateTimeDigitized": "2002:07:28 18:29:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[85, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131368", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "140", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd44c3067cb8bb77fe6e908fe8c58c8cf74bb263c032603bf97499137abf68cd", "phash": "917a0ee47c8d3971", "dhash": "88c9db7a9e9ac6e6", "phash_int": -7.964036616546339e+18, "collected_at": "2026-05-22T04:28:49.767504+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1369_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1369_IMG.JPG", "file_name": "113-1369_IMG.JPG", "file_stem": "113-1369_IMG", "file_ext": ".jpg", "file_size": 2124996.0, "mtime": "2002-07-28T18:33:52+00:00", "mtime_ts": 1027881232.0, "ctime": "2002-07-28T18:33:52+00:00", "sha256_file": "099cd97fe551e1a9298734f5e537ee4410ba7d416b24ba4b15183773f8837893", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:33:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5946", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:33:53", "EXIF DateTimeDigitized": "2002:07:28 18:33:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2668/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131369", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "21344"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f57ae680977ed8ed0f83bb16b4e7d7465cdd4722676322fa7575c4473d5ac37", "phash": "c2eeefd918243153", "dhash": "2541c1e0f8f8ecfc", "phash_int": -4.400316070202429e+18, "collected_at": "2026-05-22T04:28:49.808679+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1370_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1370_IMG.JPG", "file_name": "113-1370_IMG.JPG", "file_stem": "113-1370_IMG", "file_ext": ".jpg", "file_size": 3906168.0, "mtime": "2002-07-30T22:11:36+00:00", "mtime_ts": 1028067096.0, "ctime": "2002-07-30T22:11:36+00:00", "sha256_file": "1491a7afb56bbd145fc522ebf04960fa16bdd66d61c50825737a0b3e856d68e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:33:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7938", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:28 18:33:59", "EXIF DateTimeDigitized": "2002:07:28 18:33:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131370", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce358b0d3e0ffd98b1536959a10bd57efd5aba57f9ddb4e719f8edb4518857fa", "phash": "e99634d687a83c0f", "dhash": "a8921383c3939393", "phash_int": -1.6150453203621489e+18, "collected_at": "2026-05-22T04:28:49.888708+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1371_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1371_IMG.JPG", "file_name": "113-1371_IMG.JPG", "file_stem": "113-1371_IMG", "file_ext": ".jpg", "file_size": 3493050.0, "mtime": "2002-07-30T22:11:40+00:00", "mtime_ts": 1028067100.0, "ctime": "2002-07-30T22:11:40+00:00", "sha256_file": "7aec5f534781ab5fafe26774a11d813dbd157b067d70a58628160365a6471516", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:34:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8368", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:28 18:34:17", "EXIF DateTimeDigitized": "2002:07:28 18:34:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131371", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a8b3c1ddf8b73de29a9517f3834094ce3d1e7bfaa7b9cf3a4b88927897905f8", "phash": "f52a9a609b21d756", "dhash": "921212929296969a", "phash_int": -7.806418456851355e+17, "collected_at": "2026-05-22T04:28:49.958903+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1372_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1372_IMG.JPG", "file_name": "113-1372_IMG.JPG", "file_stem": "113-1372_IMG", "file_ext": ".jpg", "file_size": 3559303.0, "mtime": "2002-07-30T22:11:42+00:00", "mtime_ts": 1028067102.0, "ctime": "2002-07-30T22:11:42+00:00", "sha256_file": "4b30dbb3a199960fd3e74fb0f6da90f82bf5fc6103e6b557aae576b8bb3974b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:34:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8204", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:28 18:34:36", "EXIF DateTimeDigitized": "2002:07:28 18:34:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131372", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "25085b902e63239bef4703392be69af1855c54ac9c7aa4bd903cbcb81abf4c5a", "phash": "d4f88f6b8ad45c82", "dhash": "b0949494d494ccec", "phash_int": -3.100570651391141e+18, "collected_at": "2026-05-22T04:28:50.027959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1373_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1373_IMG.JPG", "file_name": "113-1373_IMG.JPG", "file_stem": "113-1373_IMG", "file_ext": ".jpg", "file_size": 3101027.0, "mtime": "2002-07-30T22:11:44+00:00", "mtime_ts": 1028067104.0, "ctime": "2002-07-30T22:11:44+00:00", "sha256_file": "ec9ff74b7e793b6308190ce6c10b775815e6d7193bedccc7b764a85485f1f464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:35:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8012", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:28 18:35:07", "EXIF DateTimeDigitized": "2002:07:28 18:35:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131373", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e91bd4c2084b8a8b89587349a10caff25dbef22e5eccb1c75b375ab6f5ff050", "phash": "80adadabbc953586", "dhash": "dfd7d4d4d4c4f0b0", "phash_int": -9.174485912768925e+18, "collected_at": "2026-05-22T04:28:50.071205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1374_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1374_IMG.JPG", "file_name": "113-1374_IMG.JPG", "file_stem": "113-1374_IMG", "file_ext": ".jpg", "file_size": 1958236.0, "mtime": "2002-07-28T18:35:20+00:00", "mtime_ts": 1027881320.0, "ctime": "2002-07-28T18:35:20+00:00", "sha256_file": "73aede9cbf55a798399e9f82d1f8f2346eb8cdfcf0c313794bded2542150b862", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:28 18:35:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4982", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:28 18:35:22", "EXIF DateTimeDigitized": "2002:07:28 18:35:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131374", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "171", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4643f1fd3c8c04a60b085fe2785fda92dbbf8400b11cfe21b5249dac2c17f86a", "phash": "91b1f8ec7e4e4a81", "dhash": "1498d96ebef8e0f0", "phash_int": -7.948298172717184e+18, "collected_at": "2026-05-22T04:28:50.114624+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1375_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1375_IMG.JPG", "file_name": "113-1375_IMG.JPG", "file_stem": "113-1375_IMG", "file_ext": ".jpg", "file_size": 1631355.0, "mtime": "2002-07-29T11:38:50+00:00", "mtime_ts": 1027942730.0, "ctime": "2002-07-29T11:38:50+00:00", "sha256_file": "11aa91caeb314ff43efd479b677af7937cb12f194ef4fdfdf172c122bd488dbc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:38:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4615", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:38:52", "EXIF DateTimeDigitized": "2002:07:29 11:38:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131375", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b00e27ed30398f03ea9bfc9ca69e026b346bd83eb77e710e76c16e57bbc6502", "phash": "8a8af51365d26b17", "dhash": "f9f9f1f1f9f97922", "phash_int": -8.463683086027953e+18, "collected_at": "2026-05-22T04:28:50.150729+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1376_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1376_IMG.JPG", "file_name": "113-1376_IMG.JPG", "file_stem": "113-1376_IMG", "file_ext": ".jpg", "file_size": 1415470.0, "mtime": "2002-07-29T11:39:00+00:00", "mtime_ts": 1027942740.0, "ctime": "2002-07-29T11:39:00+00:00", "sha256_file": "26ff6c68fbf3eaf3685504c71f2cc0fdee87955e86437a3d9b70a45e407172b6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:39:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4106", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:39:01", "EXIF DateTimeDigitized": "2002:07:29 11:39:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131376", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f990ea93c34f73a9d5ca88bc0e38ac2eceed0d4bb32919a879e907dacc8d97d", "phash": "c0bf01809cdfd7f0", "dhash": "f0d050408080c090", "phash_int": -4.5579226459762954e+18, "collected_at": "2026-05-22T04:28:50.208730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1377_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1377_IMG.JPG", "file_name": "113-1377_IMG.JPG", "file_stem": "113-1377_IMG", "file_ext": ".jpg", "file_size": 1627943.0, "mtime": "2002-07-29T11:39:12+00:00", "mtime_ts": 1027942752.0, "ctime": "2002-07-29T11:39:12+00:00", "sha256_file": "249ca00a8709f071bfccd91ad674cd0a6c133631bfdc10814ca7bec17623205e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:39:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6205", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:39:14", "EXIF DateTimeDigitized": "2002:07:29 11:39:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131377", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7621d05e67ef1272fe44cf9a482358f7d12b30da41fe8e9e6a6bc8d14be30c0", "phash": "f99e4b2112ca33cd", "dhash": "7830282d1a1ad210", "phash_int": -4.598475065239665e+17, "collected_at": "2026-05-22T04:28:50.278882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1378_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1378_IMG.JPG", "file_name": "113-1378_IMG.JPG", "file_stem": "113-1378_IMG", "file_ext": ".jpg", "file_size": 1577688.0, "mtime": "2002-07-29T11:39:24+00:00", "mtime_ts": 1027942764.0, "ctime": "2002-07-29T11:39:24+00:00", "sha256_file": "d623ea82057ba2ad204b94ce579c65fa1656c47602bb48bcbd84c242d63c7f95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:39:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6299", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:39:25", "EXIF DateTimeDigitized": "2002:07:29 11:39:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131378", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "432ad2000f3d40c2aeba64f69b1dafe4a4724a246d6333df00e6f518124b0ac7", "phash": "dae43de1f852434a", "dhash": "1c34f9b999d95919", "phash_int": -2.673944238008155e+18, "collected_at": "2026-05-22T04:28:50.333467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1379_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1379_IMG.JPG", "file_name": "113-1379_IMG.JPG", "file_stem": "113-1379_IMG", "file_ext": ".jpg", "file_size": 1575819.0, "mtime": "2002-07-29T11:39:32+00:00", "mtime_ts": 1027942772.0, "ctime": "2002-07-29T11:39:32+00:00", "sha256_file": "bece64cf2a31c55f616c00c7f2bee9089121cae4e6b2f6475faebb5066baa6cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:39:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4625", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:39:34", "EXIF DateTimeDigitized": "2002:07:29 11:39:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131379", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ad61d6f319fef6a0b00b70e241a29690c717e09420f29080790c5cea1feb2473", "phash": "c5d53e1a21642f9b", "dhash": "e4ecc4c6c8f0f0f0", "phash_int": -4.1913755962480927e+18, "collected_at": "2026-05-22T04:28:50.355561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1380_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1380_IMG.JPG", "file_name": "113-1380_IMG.JPG", "file_stem": "113-1380_IMG", "file_ext": ".jpg", "file_size": 1893043.0, "mtime": "2002-07-29T11:39:52+00:00", "mtime_ts": 1027942792.0, "ctime": "2002-07-29T11:39:52+00:00", "sha256_file": "028975939b337a214f5312e72a402df31d18ef75b3f0f6af954d4f2b8e10458a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:39:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5381", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:39:54", "EXIF DateTimeDigitized": "2002:07:29 11:39:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131380", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccaa1869ebc52a0d27991e0e43ba239fc4ffbc8710e8570da1569f51632b1f3e", "phash": "e0bb1df80ec40fe4", "dhash": "9d9f8787878787a6", "phash_int": -2.2531742373319762e+18, "collected_at": "2026-05-22T04:28:50.417004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1381_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1381_IMG.JPG", "file_name": "113-1381_IMG.JPG", "file_stem": "113-1381_IMG", "file_ext": ".jpg", "file_size": 1782657.0, "mtime": "2002-07-29T11:40:16+00:00", "mtime_ts": 1027942816.0, "ctime": "2002-07-29T11:40:16+00:00", "sha256_file": "8a246b0bedbbf7260be076a2d5aa49cd179aae32cb7ae4c92763757bb0537651", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:40:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6074", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:40:17", "EXIF DateTimeDigitized": "2002:07:29 11:40:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131381", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e0063b9fad253bb029b72b1bedc00e8d0ef984e23ac08db300364881b9a0b5e", "phash": "fbfc4164b1221979", "dhash": "040210051487c9d8", "phash_int": -2.8928437533421734e+17, "collected_at": "2026-05-22T04:28:50.457004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1382_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1382_IMG.JPG", "file_name": "113-1382_IMG.JPG", "file_stem": "113-1382_IMG", "file_ext": ".jpg", "file_size": 1961340.0, "mtime": "2002-07-29T11:40:24+00:00", "mtime_ts": 1027942824.0, "ctime": "2002-07-29T11:40:24+00:00", "sha256_file": "bb1bc4bd83364255aa6d34de2d077300195e775d8371b3e7a80d24562aa797fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:40:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6271", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:40:25", "EXIF DateTimeDigitized": "2002:07:29 11:40:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131382", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c727c8f9e384f4aa04ab72ec632dc6741f839d60a0dc53bee96cde668c630bfb", "phash": "c46a43292c97bced", "dhash": "e0e46464e6a6e446", "phash_int": -4.293545450623485e+18, "collected_at": "2026-05-22T04:28:50.535129+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1384_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1384_IMG.JPG", "file_name": "113-1384_IMG.JPG", "file_stem": "113-1384_IMG", "file_ext": ".jpg", "file_size": 1850220.0, "mtime": "2002-07-29T11:40:46+00:00", "mtime_ts": 1027942846.0, "ctime": "2002-07-29T11:40:46+00:00", "sha256_file": "38773c89a36fcc647ba7d231fa3efde25bac382aeda5aa0db5a09aab1c99c898", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:40:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6562", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:40:48", "EXIF DateTimeDigitized": "2002:07:29 11:40:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131384", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bdd2da787482f7ba4a51399723255e06ab020e5f1240aaae58b25617d08eb1d2", "phash": "cbe37d90892b3c62", "dhash": "73614351e0b0e872", "phash_int": -3.755019604566787e+18, "collected_at": "2026-05-22T04:28:50.672673+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1385_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1385_IMG.JPG", "file_name": "113-1385_IMG.JPG", "file_stem": "113-1385_IMG", "file_ext": ".jpg", "file_size": 1694412.0, "mtime": "2002-07-29T11:40:58+00:00", "mtime_ts": 1027942858.0, "ctime": "2002-07-29T11:40:58+00:00", "sha256_file": "0d784d90e1c77061740b88fca81f5631954e01af26777e937e3e416bdc11a388", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:41:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5717", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:41:00", "EXIF DateTimeDigitized": "2002:07:29 11:41:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 239, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131385", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e9a5bbfb88cbbd1c191639b0e11e4a3f91abadc8ff52ea46e07093dbc4fc879", "phash": "8a4e8433cc627fe3", "dhash": "6aab2ff75bdbd8f0", "phash_int": -8.480695690284859e+18, "collected_at": "2026-05-22T04:28:50.689674+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1386_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1386_IMG.JPG", "file_name": "113-1386_IMG.JPG", "file_stem": "113-1386_IMG", "file_ext": ".jpg", "file_size": 1700186.0, "mtime": "2002-07-29T11:41:06+00:00", "mtime_ts": 1027942866.0, "ctime": "2002-07-29T11:41:06+00:00", "sha256_file": "315a753c87f38c3d8b4e4fa31e983abdf6302fa77bd0f4ec482f7fca476f3124", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:41:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5856", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:41:08", "EXIF DateTimeDigitized": "2002:07:29 11:41:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[105, 161, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131386", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "131", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3502a57efd79dd92a3d43c2ac6011b107b618957c35bb313bebb691687851d56", "phash": "b1fb4cce049619f1", "dhash": "011a9a9a9a9b54d6", "phash_int": -5.621815262118013e+18, "collected_at": "2026-05-22T04:28:50.866920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1387_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1387_IMG.JPG", "file_name": "113-1387_IMG.JPG", "file_stem": "113-1387_IMG", "file_ext": ".jpg", "file_size": 1456149.0, "mtime": "2002-07-29T11:41:20+00:00", "mtime_ts": 1027942880.0, "ctime": "2002-07-29T11:41:20+00:00", "sha256_file": "65443b330d3abf432b397b096fc2cad2408977f00d760752f558d86deb802c09", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:41:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4066", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:41:21", "EXIF DateTimeDigitized": "2002:07:29 11:41:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131387", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce824914987ede097f609120618c122d474323cd963319a1d1a1ecc18e285fe4", "phash": "ca2b24deb31d6364", "dhash": "c587c33909212286", "phash_int": -3.878966115143163e+18, "collected_at": "2026-05-22T04:28:50.884914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1388_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1388_IMG.JPG", "file_name": "113-1388_IMG.JPG", "file_stem": "113-1388_IMG", "file_ext": ".jpg", "file_size": 1471867.0, "mtime": "2002-07-29T11:45:36+00:00", "mtime_ts": 1027943136.0, "ctime": "2002-07-29T11:45:36+00:00", "sha256_file": "cfa0e7cb08e70cc7730e696e67dffbb5c2c98307da0290b9c5822a0f0c29c9b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:45:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6124", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:45:37", "EXIF DateTimeDigitized": "2002:07:29 11:45:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 184, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131388", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "133", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd6b1448af760821d6f40b4b312b6e18c4e1ac5174e7b21775a6c4d00a8d8b28", "phash": "d0da8e074f789897", "dhash": "e8f8b890e0c4c4c4", "phash_int": -3.3972468068483994e+18, "collected_at": "2026-05-22T04:28:51.063326+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1389_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1389_IMG.JPG", "file_name": "113-1389_IMG.JPG", "file_stem": "113-1389_IMG", "file_ext": ".jpg", "file_size": 1688391.0, "mtime": "2002-07-29T11:46:00+00:00", "mtime_ts": 1027943160.0, "ctime": "2002-07-29T11:46:00+00:00", "sha256_file": "a560c1ce6c79a383efa002adeda338d5336a9d00225121ce71d4d38cdff181b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:46:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6252", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:46:02", "EXIF DateTimeDigitized": "2002:07:29 11:46:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[35, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131389", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c279411fed35fd862472385769d243a0a3dd3a9c5400d84e81a42da05522c68", "phash": "a0e1522f772b760d", "dhash": "8f9f9f8b676feb9c", "phash_int": -6.854106794064906e+18, "collected_at": "2026-05-22T04:28:51.077407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\07-28\\113-1390_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\07-28\\113-1390_IMG.JPG", "file_name": "113-1390_IMG.JPG", "file_stem": "113-1390_IMG", "file_ext": ".jpg", "file_size": 1707956.0, "mtime": "2002-07-29T11:46:12+00:00", "mtime_ts": 1027943172.0, "ctime": "2002-07-29T11:46:12+00:00", "sha256_file": "5858289d91e5370779121a18292bd5e1cbbbaaed2bca8f2097ae7ebf941d26ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:29 11:46:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7053", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:29 11:46:13", "EXIF DateTimeDigitized": "2002:07:29 11:46:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[108, 157, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131390", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9a5d0015f687abf12dba10f0e706b9069b3e95c6a711e3955c6102c4b4461fc", "phash": "b79a616d4f606d60", "dhash": "183818786c6686c6", "phash_int": -5.21675009624425e+18, "collected_at": "2026-05-22T04:28:51.214225+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-39 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-39 Canon PowerShot S40.JPG", "file_name": "2002-07-09 20-51-39 Canon PowerShot S40.JPG", "file_stem": "2002-07-09 20-51-39 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1911493.0, "mtime": "2002-07-09T20:51:38+00:00", "mtime_ts": 1026247898.0, "ctime": "2002-07-09T20:51:38+00:00", "sha256_file": "9328c2fffb22ed4e457b7cda7c3644b68ba63b9802b4e28e4c608801ff0341d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:09 20:51:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5829", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:09 20:51:39", "EXIF DateTimeDigitized": "2002:07:09 20:51:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71c025ed0a87f87df5be1d8d6d2ab549a6508ee7387493db2a2ce88fe1dc770a", "phash": "922b65ead7523a89", "dhash": "61f43af8f8f9e0e8", "phash_int": -7.914119860864271e+18, "collected_at": "2026-05-22T04:28:51.242351+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-48 Canon PowerShot S40.JPG", "file_name": "2002-07-09 20-51-48 Canon PowerShot S40.JPG", "file_stem": "2002-07-09 20-51-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1927446.0, "mtime": "2002-07-09T20:51:46+00:00", "mtime_ts": 1026247906.0, "ctime": "2002-07-09T20:51:46+00:00", "sha256_file": "7938684f444bf911c1397b6538cf1385dde2ce286f7fd070afa5000f27291b9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:09 20:51:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6007", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:09 20:51:48", "EXIF DateTimeDigitized": "2002:07:09 20:51:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "813e3a626b1a41532f6c69c9c6dc96cfd25c5a0f6f58b3e18e6069a239c22ee6", "phash": "d73b56a54a946cd0", "dhash": "685959f8d0c6ccec", "phash_int": -2.937659064008283e+18, "collected_at": "2026-05-22T04:28:51.356358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-53 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\09\\2002-07-09 20-51-53 Canon PowerShot S40.JPG", "file_name": "2002-07-09 20-51-53 Canon PowerShot S40.JPG", "file_stem": "2002-07-09 20-51-53 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2061796.0, "mtime": "2002-07-09T20:51:52+00:00", "mtime_ts": 1026247912.0, "ctime": "2002-07-09T20:51:52+00:00", "sha256_file": "aa44328de9b145cc9c5af47cd0a1af341cfdcc0989c1f673fa51ff8498a7017a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:09 20:51:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6576", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:09 20:51:53", "EXIF DateTimeDigitized": "2002:07:09 20:51:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23fa1937cf52566c1440006d1cbc7d9c243fdd56dc630518ad612c27bafcd0d2", "phash": "956a438743737a5c", "dhash": "d175319e7478dcf0", "phash_int": -7.680251966295672e+18, "collected_at": "2026-05-22T04:28:51.370497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 19-07-09 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 19-07-09 Canon PowerShot S40.JPG", "file_name": "2002-07-12 19-07-09 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 19-07-09 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1659237.0, "mtime": "2002-07-12T19:07:08+00:00", "mtime_ts": 1026500828.0, "ctime": "2002-07-12T19:07:08+00:00", "sha256_file": "79d36c25d79cb51cc10a0e0ecb3bcc729b5d288d537d1e7dc57948e589a47faa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 19:07:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5345", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 19:07:09", "EXIF DateTimeDigitized": "2002:07:12 19:07:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1453/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1453"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54ada8f3426af89802544ca210097e20eca41b1126b93cd253e0efa72ee23249", "phash": "d0d73e2c53397123", "dhash": "e060d8d0d494b091", "phash_int": -3.398179033731993e+18, "collected_at": "2026-05-22T04:28:51.464116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 19-07-14 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 19-07-14 Canon PowerShot S40.JPG", "file_name": "2002-07-12 19-07-14 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 19-07-14 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1598951.0, "mtime": "2002-07-12T19:07:12+00:00", "mtime_ts": 1026500832.0, "ctime": "2002-07-12T19:07:12+00:00", "sha256_file": "0de1688ad618f0dbd27ff9953b5a725fbafc08bafe79c3b022e85b8cc12cd9f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 19:07:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4683", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 19:07:14", "EXIF DateTimeDigitized": "2002:07:12 19:07:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "198/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101087", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1584"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dda6a11fed3de970cdf0f2fe9096fd784b51f816a240eab689d70de2c4dce81f", "phash": "d4df73204633d94a", "dhash": "e47050b4b4969291", "phash_int": -3.107638635408402e+18, "collected_at": "2026-05-22T04:28:51.481203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-23 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-00-23 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-00-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1653806.0, "mtime": "2002-07-12T20:00:22+00:00", "mtime_ts": 1026504022.0, "ctime": "2002-07-12T20:00:22+00:00", "sha256_file": "2a8c39b748b36dd2643a8c4cfbf9ae0b6d380cd1e1bdcd9717c208673b919112", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:00:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5341", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:00:23", "EXIF DateTimeDigitized": "2002:07:12 20:00:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a141a30b1dc18e8395451e7829f3ab34c86ddeeaf006b1152635c290db5fe3af", "phash": "f1cb9e1270f63505", "dhash": "99e383969e8e6cbc", "phash_int": -1.0235506882548723e+18, "collected_at": "2026-05-22T04:28:51.525208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-32 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-32 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-00-32 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-00-32 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1640994.0, "mtime": "2002-07-12T20:00:30+00:00", "mtime_ts": 1026504030.0, "ctime": "2002-07-12T20:00:30+00:00", "sha256_file": "1abd2212b12127b1442faabadafdce1c452d7f46bd45173757353f822b7f615c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:00:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6143", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:00:32", "EXIF DateTimeDigitized": "2002:07:12 20:00:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9c8e27de48be49293fc31cce180d983f6ce34513aea2075b35f97e97ff87cac", "phash": "a9baf45521a303d7", "dhash": "97332bf3e2f2cece", "phash_int": -6.216387689157819e+18, "collected_at": "2026-05-22T04:28:51.589208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-40 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-40 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-00-40 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-00-40 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2456325.0, "mtime": "2002-07-12T22:07:20+00:00", "mtime_ts": 1026511640.0, "ctime": "2002-07-12T22:07:20+00:00", "sha256_file": "ea8118675049addf2c1b355687b9cf2f01c822f78e22a2876d8fc3eeec954dda", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:00:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7593", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:12 20:00:40", "EXIF DateTimeDigitized": "2002:07:12 20:00:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1101090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a5c3cab6a135afcfff2114102c364d2963d60f46d324f8b005e688e05ad2d58", "phash": "8abeb101469e5de9", "dhash": "f88f3769d3f19b8c", "phash_int": -8.449121231862605e+18, "collected_at": "2026-05-22T04:28:51.622210+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-59 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-00-59 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-00-59 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-00-59 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1918443.0, "mtime": "2002-07-12T20:00:58+00:00", "mtime_ts": 1026504058.0, "ctime": "2002-07-12T20:00:58+00:00", "sha256_file": "5b6bc9162456f0e817bff20afbd7f9583db6d4273496922f583330ea186f854e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:00:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5814", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:00:59", "EXIF DateTimeDigitized": "2002:07:12 20:00:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2522d0f686cdee8eb8db660b02248e1218dd4209e9cadf0db4318f3986ceb0a1", "phash": "bcb0f0d257abc341", "dhash": "1c36b77374303132", "phash_int": -4.850112012473351e+18, "collected_at": "2026-05-22T04:28:51.678213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-03 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1634380.0, "mtime": "2002-07-12T20:01:02+00:00", "mtime_ts": 1026504062.0, "ctime": "2002-07-12T20:01:02+00:00", "sha256_file": "885e6abac25aaf468e89ed50aae4d39a3c8baacf1ccb7bb3c649879540a581f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5399", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:03", "EXIF DateTimeDigitized": "2002:07:12 20:01:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e013b4988717fcc7e75b7fa28faedf75073e00139fb938a53f4831489f0b5e4e", "phash": "fbc4915b4be1c506", "dhash": "901c068b6d1d1d1c", "phash_int": -3.049590534532124e+17, "collected_at": "2026-05-22T04:28:51.708212+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-10 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-10 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-10 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-10 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1614236.0, "mtime": "2002-07-12T20:01:08+00:00", "mtime_ts": 1026504068.0, "ctime": "2002-07-12T20:01:08+00:00", "sha256_file": "92d49bac0d66ec20572927dafdd4bda15c7019030adaf5a0f99836708b16d03f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5435", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:10", "EXIF DateTimeDigitized": "2002:07:12 20:01:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2621/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101093", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13105"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6a077b049d5b73a3e7c1e412c21358081315a1de1600adb648270da1699c85d", "phash": "d6f0b98b8b99a0b1", "dhash": "9084a464e4646020", "phash_int": -2.958660946188722e+18, "collected_at": "2026-05-22T04:28:51.769218+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-21 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-21 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2089197.0, "mtime": "2002-07-12T20:01:20+00:00", "mtime_ts": 1026504080.0, "ctime": "2002-07-12T20:01:20+00:00", "sha256_file": "826a6f881b4930c0ea02588a98630c2ea16752e88f7182335b0e7755e4fecd62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5770", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:21", "EXIF DateTimeDigitized": "2002:07:12 20:01:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6349/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6349"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ffbc4cb2714b402a2c92eb4635dd271966c512fb359d8d82ec69acd9453d2d7", "phash": "e0206071367d9fcf", "dhash": "9494eccccc48c0cc", "phash_int": -2.2967297705971794e+18, "collected_at": "2026-05-22T04:28:51.823217+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-29 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-29 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1713666.0, "mtime": "2002-07-12T20:01:28+00:00", "mtime_ts": 1026504088.0, "ctime": "2002-07-12T20:01:28+00:00", "sha256_file": "616a3c6fb37992fb3af85fa61e7fa053807df39d7b5293c2ac01fd8384f2d4fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4378", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:29", "EXIF DateTimeDigitized": "2002:07:12 20:01:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2511/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101095", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "220", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2511"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6e7ac953348cfe98e39b4d840c4412eb584550c46c8836f96ad186a55d96374", "phash": "c391fa1bc279c668", "dhash": "d9d0c0c0e0602385", "phash_int": -4.3544243675567375e+18, "collected_at": "2026-05-22T04:28:51.854327+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-39 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-39 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-39 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-39 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2073890.0, "mtime": "2002-07-12T20:01:38+00:00", "mtime_ts": 1026504098.0, "ctime": "2002-07-12T20:01:38+00:00", "sha256_file": "44cc621a5032e46651243651852f3ca466380e9218494080b72320740a40f4a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5669", "EXIF ExposureTime": "1/200", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:39", "EXIF DateTimeDigitized": "2002:07:12 20:01:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "221/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101096", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4420"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d792e964c6772fb882193e243eeebd1a3afe8476283c71ea025cbbf31448c87", "phash": "a4e4b4443f4b6ba3", "dhash": "969696f2f2a2d31f", "phash_int": -6.564924151586657e+18, "collected_at": "2026-05-22T04:28:51.920413+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-01-50 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-01-50 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-01-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1973018.0, "mtime": "2002-07-12T20:01:48+00:00", "mtime_ts": 1026504108.0, "ctime": "2002-07-12T20:01:48+00:00", "sha256_file": "6133c3140aab7a4f96f2b3f7934cce7c067941441201bab25ba0b5c59097a675", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:01:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5706", "EXIF ExposureTime": "1/125", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:01:50", "EXIF DateTimeDigitized": "2002:07:12 20:01:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3531/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101097", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3531"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4708ce3afa6d290ce375f739d4b6f238cb1cfe00fcd43b06a0acce87a729604d", "phash": "b4343478cfc98a9d", "dhash": "9c9c9c6b73f73e6e", "phash_int": -5.461682754606757e+18, "collected_at": "2026-05-22T04:28:51.955507+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-03 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-02-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-02-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1615203.0, "mtime": "2002-07-12T20:02:02+00:00", "mtime_ts": 1026504122.0, "ctime": "2002-07-12T20:02:02+00:00", "sha256_file": "97f5a0b01fddec5c97e04066568fc2b8f97e1bf73298ae6a4f8621f3fcff104b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:02:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5480", "EXIF ExposureTime": "1/100", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:02:03", "EXIF DateTimeDigitized": "2002:07:12 20:02:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5981/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101098", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "198", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5981"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d91d7724d08e1952d1efe29c2e21345b3fdce36ea246ef7fe60560f3e1ea17ac", "phash": "f090856878787a7f", "dhash": "95c08d8d85919424", "phash_int": -1.1122424242162579e+18, "collected_at": "2026-05-22T04:28:51.986832+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-10 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-10 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-02-10 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-02-10 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1618230.0, "mtime": "2002-07-12T20:02:08+00:00", "mtime_ts": 1026504128.0, "ctime": "2002-07-12T20:02:08+00:00", "sha256_file": "e8f992c1b9f33b4540095ccb845ab62a5e008180518335b25f4a7db1ee7c20e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:02:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5058", "EXIF ExposureTime": "1/250", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:02:10", "EXIF DateTimeDigitized": "2002:07:12 20:02:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "363/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101099", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2904"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca200f2be7f8d9072c3c788c7814abdead3f92cd9046ae61303a51bdf1767370", "phash": "fc9680957a87383d", "dhash": "bce036331632e883", "phash_int": -2.458677501509488e+17, "collected_at": "2026-05-22T04:28:52.095907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-18 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-02-18 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-02-18 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-02-18 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1180576.0, "mtime": "2002-07-12T20:02:16+00:00", "mtime_ts": 1026504136.0, "ctime": "2002-07-12T20:02:16+00:00", "sha256_file": "4c04ca01730359cb82b572a0907cb93d70e364e8f7c24a422a81f5c461f6c3ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:02:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5013", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:02:18", "EXIF DateTimeDigitized": "2002:07:12 20:02:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "363/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1101100", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "184", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2904"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e004c6595f1f17df882f40ec780a63537abc028f8b3ba792bab088ab47d0a4d", "phash": "ff7fc0b184c03a34", "dhash": "38611d4d0d195b80", "phash_int": -3.609840332673992e+16, "collected_at": "2026-05-22T04:28:52.098904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-16 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-16 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-03-16 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-03-16 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1850150.0, "mtime": "2002-07-12T20:03:14+00:00", "mtime_ts": 1026504194.0, "ctime": "2002-07-12T20:03:14+00:00", "sha256_file": "d5409d5770d29ea4a0091264d0d9fafdcdb5f5933268ffbab0ccb3e5a16b3736", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:03:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5427", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:03:16", "EXIF DateTimeDigitized": "2002:07:12 20:03:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[74, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111101", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11ee4c047554d92377b9c1f9c3a5b6e470918bdd3821745e1dfd9729b4cb2fd8", "phash": "a4245b5b495b4d57", "dhash": "c686c6b7e4e6fdfe", "phash_int": -6.619065104696915e+18, "collected_at": "2026-05-22T04:28:52.246601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-20 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-03-20 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-03-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1384674.0, "mtime": "2002-07-12T20:03:18+00:00", "mtime_ts": 1026504198.0, "ctime": "2002-07-12T20:03:18+00:00", "sha256_file": "3dc50f1f653a26747d78c811a796b266072b486496af93d355384e1ce0b2111d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:03:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4086", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:03:20", "EXIF DateTimeDigitized": "2002:07:12 20:03:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111102", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf73378df3e1602c58cfcc80875d644684b3ff93c36d82539eb89aef802b4f6c", "phash": "964d696879929796", "dhash": "01607470707c7cd8", "phash_int": -7.616315497376475e+18, "collected_at": "2026-05-22T04:28:52.257602+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-26 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-03-26 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-03-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1082938.0, "mtime": "2002-07-12T20:03:24+00:00", "mtime_ts": 1026504204.0, "ctime": "2002-07-12T20:03:24+00:00", "sha256_file": "3306eaef4c7df06b6d66dd9a91a7032b192ca90cad68dda8668a059218171fa8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:03:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3483", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:03:26", "EXIF DateTimeDigitized": "2002:07:12 20:03:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111103", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "215", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d1af5a1ce210179b8ea0fe6a99355ca3233193ded61f4b1ba346a2e03b3cecc", "phash": "c66938c6637d10d7", "dhash": "e0e0b043f0f07179", "phash_int": -4.149723156921381e+18, "collected_at": "2026-05-22T04:28:52.369747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-49 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-49 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-03-49 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-03-49 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1740340.0, "mtime": "2002-07-12T20:03:48+00:00", "mtime_ts": 1026504228.0, "ctime": "2002-07-12T20:03:48+00:00", "sha256_file": "f7868f72a66c602f1d550aa1db80b73370b89a89aed5828091c2b9952d472a1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:03:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5324", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:03:49", "EXIF DateTimeDigitized": "2002:07:12 20:03:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 211, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111104", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64effca193be07ccf97274c40cc7dffc06c21ce0297799f291f443f898be78a0", "phash": "f1b8647138f360ec", "dhash": "969c98989a1a0c08", "phash_int": -1.0289620774046021e+18, "collected_at": "2026-05-22T04:28:52.421750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-55 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-03-55 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-03-55 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-03-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1535856.0, "mtime": "2002-07-12T20:03:54+00:00", "mtime_ts": 1026504234.0, "ctime": "2002-07-12T20:03:54+00:00", "sha256_file": "36d48f075cd13cbabc1e0f32739b2d4d3aeb726cb9f27ac7a8e00a67e4b08266", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:03:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4754", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:03:55", "EXIF DateTimeDigitized": "2002:07:12 20:03:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111105", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63b0710dbe03a71def8e323c61be3c58375b6c4bd7c6368661f71c9f4bbb8ce2", "phash": "a0788e097726f357", "dhash": "9b9b9d9f99d9feec", "phash_int": -6.883595859130912e+18, "collected_at": "2026-05-22T04:28:52.451752+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-11 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-04-11 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-04-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1836855.0, "mtime": "2002-07-12T20:04:10+00:00", "mtime_ts": 1026504250.0, "ctime": "2002-07-12T20:04:10+00:00", "sha256_file": "fe3612054ffe6865a38748c07c4e09a3f8bb6eb0b140890dd5418d66b144abb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:04:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5448", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:04:11", "EXIF DateTimeDigitized": "2002:07:12 20:04:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[87, 178, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111106", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4858710a0f09929a095bab2282031c1c0e65fd9b6ee467562f53e921043a296f", "phash": "af8781c1c3637273", "dhash": "ca6c2f793b330f1f", "phash_int": -5.798523326009478e+18, "collected_at": "2026-05-22T04:28:52.532862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-28 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-28 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-04-28 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-04-28 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2599393.0, "mtime": "2002-07-12T22:07:42+00:00", "mtime_ts": 1026511662.0, "ctime": "2002-07-12T22:07:42+00:00", "sha256_file": "adc420549c6d9cef20e280d9da34d6939223ff61d7dae7bf9152cc27d778cbd6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:04:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7622", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:12 20:04:28", "EXIF DateTimeDigitized": "2002:07:12 20:04:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1111107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd9ef98e3ecbbf719935145bc35e8959be5d295356b248051a14498a4cbebd24", "phash": "ab70765651d49669", "dhash": "f173d3d3d3f35373", "phash_int": -6.093240182720129e+18, "collected_at": "2026-05-22T04:28:52.549925+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-38 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-38 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-04-38 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-04-38 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1813430.0, "mtime": "2002-07-12T20:04:36+00:00", "mtime_ts": 1026504276.0, "ctime": "2002-07-12T20:04:36+00:00", "sha256_file": "8de5c04eac278c2693b799f3b510f82cfbd5b29f773e010c40973fae4c92eec3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:04:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5358", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:04:38", "EXIF DateTimeDigitized": "2002:07:12 20:04:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1023/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4092"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbe9fe1a266a9ab9b5dbf143aad5e516641781b87bc7a2ec6c83914d9d399b43", "phash": "d77fa944822a3da8", "dhash": "74303c7c7474f0f8", "phash_int": -2.9184279218061153e+18, "collected_at": "2026-05-22T04:28:52.704854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-55 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-04-55 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-04-55 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-04-55 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1820308.0, "mtime": "2002-07-12T20:04:54+00:00", "mtime_ts": 1026504294.0, "ctime": "2002-07-12T20:04:54+00:00", "sha256_file": "e976e9877a68e7d31dec8089c32140067686354bcff7cae99f8f66b0978bfb1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:04:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4995", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:04:55", "EXIF DateTimeDigitized": "2002:07:12 20:04:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "766/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6128"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e40dc9f73b257101eb933242bd0ea532a403e5095f5fdeb7e9b960c46f9d1627", "phash": "d67fa552812b24ad", "dhash": "e4607078e8e0e0f0", "phash_int": -2.9904898537777306e+18, "collected_at": "2026-05-22T04:28:52.753035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-07 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-07 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-05-07 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-05-07 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1861110.0, "mtime": "2002-07-12T20:05:06+00:00", "mtime_ts": 1026504306.0, "ctime": "2002-07-12T20:05:06+00:00", "sha256_file": "156e0335f9344b79caf20b54199ec177fb3128419c833f399930431d8796691e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:05:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3996", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:05:07", "EXIF DateTimeDigitized": "2002:07:12 20:05:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5f293f037b3cba87776e1991d5885615b14497c95aa532060fb19012954ea78", "phash": "e22a7131eccc72e3", "dhash": "c3c9c9c5c9c9c9c9", "phash_int": -2.1497814128758326e+18, "collected_at": "2026-05-22T04:28:52.890570+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-23 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-05-23 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-05-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1687077.0, "mtime": "2002-07-12T20:05:22+00:00", "mtime_ts": 1026504322.0, "ctime": "2002-07-12T20:05:22+00:00", "sha256_file": "4a429671e2d4b06ac74391cb50ea77c842ae6425b688b493e855f9f3158a4372", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:05:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4469", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:05:23", "EXIF DateTimeDigitized": "2002:07:12 20:05:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1539/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[91, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "160", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1539"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "497806eb634e248482b1920c1bdce9428d608e2eae0e79a40cce8c0bd2d2883f", "phash": "b2ce4ccc31cc9d33", "dhash": "e1cdcd9d9dcd8d9d", "phash_int": -5.562424049863452e+18, "collected_at": "2026-05-22T04:28:52.998962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-31 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-05-31 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-05-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1772166.0, "mtime": "2002-07-12T20:05:30+00:00", "mtime_ts": 1026504330.0, "ctime": "2002-07-12T20:05:30+00:00", "sha256_file": "4b9f2d5b1d8923687a82f2a1fb90d6f32ecb51dbcc64bafc9b51f03c1ea5be0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:05:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4624", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:05:31", "EXIF DateTimeDigitized": "2002:07:12 20:05:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1319/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1319"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd243885d4afd4594307073e4b893d238a48639ddfd5d3ee5370b9e5f1711ee5", "phash": "b4f48fc3b9313134", "dhash": "86e4961e8cd9f1f1", "phash_int": -5.40753918177672e+18, "collected_at": "2026-05-22T04:28:53.013170+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-05-42 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-05-42 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-05-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 3100602.0, "mtime": "2002-07-12T22:07:30+00:00", "mtime_ts": 1026511650.0, "ctime": "2002-07-12T22:07:30+00:00", "sha256_file": "ddc3119faae02e11188c43e343d6f1c5fbb61bac9e47b6f92dde3b6f19143385", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:05:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7651", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:12 20:05:42", "EXIF DateTimeDigitized": "2002:07:12 20:05:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1111113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bc562b56f5e750a2b07e96edaa79120b718dce8a46cdd61cd9558c0b0411ad8", "phash": "e266cc98d899f331", "dhash": "c1cd4f4d8d8f30c0", "phash_int": -2.132792416672288e+18, "collected_at": "2026-05-22T04:28:53.113176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-16 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-16 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-16 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-16 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2120840.0, "mtime": "2002-07-12T20:06:14+00:00", "mtime_ts": 1026504374.0, "ctime": "2002-07-12T20:06:14+00:00", "sha256_file": "b18c56808689b3c9bff1513e1e65cc4ad74922de23f5e3fc180c2ac38ddd182f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5156", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:16", "EXIF DateTimeDigitized": "2002:07:12 20:06:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2cca92409bd6cce4da88727a34713df18194c8d92e9aee003822773ed6ce020d", "phash": "c35c3c631cc39cb6", "dhash": "a0a0e1d0c8cace9c", "phash_int": -4.3695511420742134e+18, "collected_at": "2026-05-22T04:28:53.164724+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-21 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-21 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2013610.0, "mtime": "2002-07-12T20:06:20+00:00", "mtime_ts": 1026504380.0, "ctime": "2002-07-12T20:06:20+00:00", "sha256_file": "a1e93feba7598502b92711552161018ed5251e84f0894f120520b924c2bd6dda", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6604", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:21", "EXIF DateTimeDigitized": "2002:07:12 20:06:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da5979d3c01c6cd5d8dc070d509728d9adcf7e319c0849d448f2e4c6a757d357", "phash": "89e39eb2c4cbd2d0", "dhash": "49fad8c28e3dfaf6", "phash_int": -8.510784380157046e+18, "collected_at": "2026-05-22T04:28:53.243727+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-26 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-26 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2136530.0, "mtime": "2002-07-12T20:06:24+00:00", "mtime_ts": 1026504384.0, "ctime": "2002-07-12T20:06:24+00:00", "sha256_file": "9169cf28310efe737110886f1de3482cb05030b388765e1cc5e795c321eefc0d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6524", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:26", "EXIF DateTimeDigitized": "2002:07:12 20:06:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20dc2e43d65b91305f672e4868caa9c0ff69e26e6cb6957e89d9fe27edf22cd6", "phash": "8daddc8c0f2cf492", "dhash": "66720d5bf9b03970", "phash_int": -8.237685649282633e+18, "collected_at": "2026-05-22T04:28:53.302730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-31 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-31 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1953988.0, "mtime": "2002-07-12T20:06:30+00:00", "mtime_ts": 1026504390.0, "ctime": "2002-07-12T20:06:30+00:00", "sha256_file": "5fac1cfeb39ae8a797e85b6807d600dfb97c44ce47af93f93a010bb4e6aac095", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6526", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:31", "EXIF DateTimeDigitized": "2002:07:12 20:06:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5683848b0f66456335615c76f692c474aa38c34a9913a2a9f352a32bd2627c5a", "phash": "83c1d8b6c68cb39d", "dhash": "a0d2d6e76c0ef339", "phash_int": -8.952636304709078e+18, "collected_at": "2026-05-22T04:28:53.439733+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-36 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-36 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-36 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-36 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1887851.0, "mtime": "2002-07-12T20:06:34+00:00", "mtime_ts": 1026504394.0, "ctime": "2002-07-12T20:06:34+00:00", "sha256_file": "dddf70e9a6fd06bd05c3ebbbecfa4e8c70e702254d0543b793f80e803c2e4752", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6069", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:36", "EXIF DateTimeDigitized": "2002:07:12 20:06:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d24dd38fe7744ecb15c476d6c76bc5ba0e24fa374d32f789ae7c7ef6f8666c37", "phash": "94edfac0b1aad2a2", "dhash": "b0727472e4e4fdb4", "phash_int": -7.715234881094364e+18, "collected_at": "2026-05-22T04:28:53.441736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-50 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-06-50 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-06-50 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-06-50 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1484674.0, "mtime": "2002-07-12T20:06:48+00:00", "mtime_ts": 1026504408.0, "ctime": "2002-07-12T20:06:48+00:00", "sha256_file": "001aa3b3fcaded82b4f1a9636e42101dbaac9ba0caea9d6d0b01985eb13e6037", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:06:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3195", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:06:50", "EXIF DateTimeDigitized": "2002:07:12 20:06:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4387/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111119", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "280", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8774"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ce8e82a41b1e78a4e30f87fc38a05b59ed131d9dd9c971c374bdcbfd239798b", "phash": "fbc30c32c137cd34", "dhash": "c8e0684c9e1f0f33", "phash_int": -3.0538693760150394e+17, "collected_at": "2026-05-22T04:28:53.545740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-07-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-07-13 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-07-13 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-07-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1940771.0, "mtime": "2002-07-12T20:07:12+00:00", "mtime_ts": 1026504432.0, "ctime": "2002-07-12T20:07:12+00:00", "sha256_file": "aaf5d5452d1cf9bc35a0a962cfcc6fa7370c39a39ae4aa597d9420ed136bf2c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:07:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4921", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:07:13", "EXIF DateTimeDigitized": "2002:07:12 20:07:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "777/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "777"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c914e0be9bc20ef25228c5dbe24be75aba4bf4544a63e574676312a5ba93070", "phash": "f3bd4c60390f3338", "dhash": "18b45c1898cce078", "phash_int": -8.834659757368804e+17, "collected_at": "2026-05-22T04:28:54.249966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-07-30 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-07-30 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-07-30 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-07-30 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1949655.0, "mtime": "2002-07-12T20:07:28+00:00", "mtime_ts": 1026504448.0, "ctime": "2002-07-12T20:07:28+00:00", "sha256_file": "7b5ee4908be6c5d1e3f2b84fe3b4d7cb745c2ce2489bcbf65eb0231cb6abdc55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:07:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4674", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:07:30", "EXIF DateTimeDigitized": "2002:07:12 20:07:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "17/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "680"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "294b62e3e41d520dbeff282aaeb8b8cacbd8933e1af09da28b17251fafe299ff", "phash": "f1c33d5a41532772", "dhash": "89a2cac288291d1e", "phash_int": -1.0259088322580215e+18, "collected_at": "2026-05-22T04:28:54.315969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-05 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-05 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-08-05 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-08-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1830060.0, "mtime": "2002-07-12T20:08:04+00:00", "mtime_ts": 1026504484.0, "ctime": "2002-07-12T20:08:04+00:00", "sha256_file": "7af42f0bea060a4453c84f8d4fa8b333745d8fe680bfce3b1a107dc02a8b8170", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:08:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5606", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:08:05", "EXIF DateTimeDigitized": "2002:07:12 20:08:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d19283811f1fbf30190a6f645a12214026d613eb9ac8582ee5e4f42c3290b66a", "phash": "85f35d03998e336c", "dhash": "52544dfa94cc64f2", "phash_int": -8.794583377281928e+18, "collected_at": "2026-05-22T04:28:54.433974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-21 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-08-21 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-08-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1832323.0, "mtime": "2002-07-12T20:08:20+00:00", "mtime_ts": 1026504500.0, "ctime": "2002-07-12T20:08:20+00:00", "sha256_file": "a3438661839681e66b098e65d53986c7f583d0b94ec550d5d5d76aaaf5fadbef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:08:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5619", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:08:21", "EXIF DateTimeDigitized": "2002:07:12 20:08:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4082fbe9c5e102c24d3f119c4bcfd3bf3e6c1fc59cfb56fc39e17f0d0b413608", "phash": "81957a3fc2d2d256", "dhash": "9cbaf8e2e693d593", "phash_int": -9.109240257016835e+18, "collected_at": "2026-05-22T04:28:54.457976+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-26 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-08-26 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-08-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1778324.0, "mtime": "2002-07-12T20:08:24+00:00", "mtime_ts": 1026504504.0, "ctime": "2002-07-12T20:08:24+00:00", "sha256_file": "32ca37887d5774f07cfa00c50c8a537060bb6f57e7685e9fc2a5ab83156051d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:08:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5466", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:08:26", "EXIF DateTimeDigitized": "2002:07:12 20:08:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19040673cec8015fdca62bbabb08531911d9591d71421596cfb8aff97c91d8a3", "phash": "f284677ef8c5d081", "dhash": "8c6cd8a911254e9d", "phash_int": -9.715378245679308e+17, "collected_at": "2026-05-22T04:28:54.559978+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-31 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-08-31 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-08-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1801099.0, "mtime": "2002-07-12T20:08:30+00:00", "mtime_ts": 1026504510.0, "ctime": "2002-07-12T20:08:30+00:00", "sha256_file": "4a2ff6ca7e4d4d39c0fda749dfd793018b74460cced04b62a82e65a99c26d589", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:08:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5303", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:08:31", "EXIF DateTimeDigitized": "2002:07:12 20:08:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "238", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b35b106a25258298de40e4a81b447f6d871c289a1b21b1fcbe7f734f339b2d72", "phash": "d6893f6c8f8016b6", "dhash": "6223f8e000040c4c", "phash_int": -2.9877871422870595e+18, "collected_at": "2026-05-22T04:28:54.574979+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-59 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-08-59 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-08-59 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-08-59 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1759861.0, "mtime": "2002-07-12T20:08:58+00:00", "mtime_ts": 1026504538.0, "ctime": "2002-07-12T20:08:58+00:00", "sha256_file": "a2ba767b0183abb6f2ba9308b4ebd3fcc282602734d25b35a2d942982cfb6df3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:08:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5574", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:08:59", "EXIF DateTimeDigitized": "2002:07:12 20:08:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a9d1365e8f2b8a720cfd44e1209f894e5d1f9f57523bf5efdb80a7b6dff29c31", "phash": "99d98fbe9550416c", "dhash": "703190983e9e3c70", "phash_int": -7.360694067248742e+18, "collected_at": "2026-05-22T04:28:54.706487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-04 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-04 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1821015.0, "mtime": "2002-07-12T20:09:02+00:00", "mtime_ts": 1026504542.0, "ctime": "2002-07-12T20:09:02+00:00", "sha256_file": "c5aa44ff181c96505481b6cf18daa2494a6fa820adc342e8a9b4428dd2460303", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5371", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:04", "EXIF DateTimeDigitized": "2002:07:12 20:09:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8a2e05846226074ff92e9f10f3336a5ab1ea524e766648beca2a7173269f999", "phash": "97f380f99f2c0079", "dhash": "a0cca86c40f0a7fe", "phash_int": -7.497507145036071e+18, "collected_at": "2026-05-22T04:28:54.714486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-08 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-08 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-08 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-08 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1819708.0, "mtime": "2002-07-12T20:09:06+00:00", "mtime_ts": 1026504546.0, "ctime": "2002-07-12T20:09:06+00:00", "sha256_file": "6fcd3aa3107d5e7414e51437bcbceb7d725d5c06a70e890c5c390de95167e20a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5495", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:08", "EXIF DateTimeDigitized": "2002:07:12 20:09:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "251", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "855c020ab73fb4d9b8d711a28f24f32bb41567a8971c805ff5bfa9830250335e", "phash": "95d5ceb084336f34", "dhash": "f0e05af83e3fbff3", "phash_int": -7.64998113449139e+18, "collected_at": "2026-05-22T04:28:54.876074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-13 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-13 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1757925.0, "mtime": "2002-07-12T20:09:12+00:00", "mtime_ts": 1026504552.0, "ctime": "2002-07-12T20:09:12+00:00", "sha256_file": "d276669b5cdafbb5fb41ca23b363aa518d7624ff77819c2c9313a44a6f11cb4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4905", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:13", "EXIF DateTimeDigitized": "2002:07:12 20:09:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c5e169ce05f48fc36d961e236f29d08d4dcd28407157fbe49b845a4fadd5ceb", "phash": "d4ccc5b39e031af8", "dhash": "f8a2a2a2b89cd8c4", "phash_int": -3.112895867179034e+18, "collected_at": "2026-05-22T04:28:54.884071+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-22 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-22 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-22 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-22 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1772746.0, "mtime": "2002-07-12T20:09:20+00:00", "mtime_ts": 1026504560.0, "ctime": "2002-07-12T20:09:20+00:00", "sha256_file": "27d13a01b748c37c3f4037607461353d3f7304138328412f6bfdfe9d29eb0ce1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4644", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:22", "EXIF DateTimeDigitized": "2002:07:12 20:09:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2e5fba296d2ed47e1328ffc52a368ccab48a79fec118c892dcb3b427f124f26", "phash": "f08387fc850f6e38", "dhash": "e0d9d8d09c3610cc", "phash_int": -1.1158987640238618e+18, "collected_at": "2026-05-22T04:28:55.041078+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-17 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-17 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-17 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-17 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1717517.0, "mtime": "2002-07-12T20:09:16+00:00", "mtime_ts": 1026504556.0, "ctime": "2002-07-12T20:09:16+00:00", "sha256_file": "b189171f9e8824374d104058d2eea0b4f094110c7c4b428ebcfa0bd516bd56fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4817", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:17", "EXIF DateTimeDigitized": "2002:07:12 20:09:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f6ff60471f4dcb1b8d10b34cb40db2302624007dd55412418a0df889277c52f", "phash": "d2a5b5da942d591a", "dhash": "e08898c6c9010180", "phash_int": -3.2680060041939287e+18, "collected_at": "2026-05-22T04:28:55.047077+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-31 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-31 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1455125.0, "mtime": "2002-07-12T20:09:30+00:00", "mtime_ts": 1026504570.0, "ctime": "2002-07-12T20:09:30+00:00", "sha256_file": "8bff674cb2a8f239a8440656ba7453963e3bd6b21c94d4fd04742ac33256898f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4160", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:31", "EXIF DateTimeDigitized": "2002:07:12 20:09:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111133", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "403ec3490ac10e5514b7afeaa7d606b9209efd84322d03230ab62d2a5894978b", "phash": "e49be7ae8013674c", "dhash": "00020018e70766c6", "phash_int": -1.9737292750127496e+18, "collected_at": "2026-05-22T04:28:55.148678+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-26 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-09-26 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-09-26 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-09-26 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1748483.0, "mtime": "2002-07-12T20:09:24+00:00", "mtime_ts": 1026504564.0, "ctime": "2002-07-12T20:09:24+00:00", "sha256_file": "b44b8a1ba0c80bae564c6b5a355295e6c1e9f51c62cd056fb8c1583ff22ac07c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:09:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3947", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:09:26", "EXIF DateTimeDigitized": "2002:07:12 20:09:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ed25245cb4e6d37d0eef92abfe3417a35e1aee491312cac455daf0a33089dd3", "phash": "d58f8eb8a1223c8f", "dhash": "f06040c09010c8d0", "phash_int": -3.0580686983327754e+18, "collected_at": "2026-05-22T04:28:55.163677+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-11-29 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-11-29 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-11-29 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-11-29 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2353842.0, "mtime": "2002-07-12T20:11:28+00:00", "mtime_ts": 1026504688.0, "ctime": "2002-07-12T20:11:28+00:00", "sha256_file": "564c2467307d5a8a599c9462a7760d8a6ffb56c9ebef5ce59d9b83ea0a4cb3ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:11:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6694", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:12 20:11:29", "EXIF DateTimeDigitized": "2002:07:12 20:11:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1723/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1111134", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3446"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "214f737f3814f85586d7cc3bc5deb9202c56468942abdc4e861176e70f61cc29", "phash": "994d663399a46cce", "dhash": "d864f6d29a9aac2f", "phash_int": -7.400146240892802e+18, "collected_at": "2026-05-22T04:28:55.343816+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-11-46 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\12\\2002-07-12 20-11-46 Canon PowerShot S40.JPG", "file_name": "2002-07-12 20-11-46 Canon PowerShot S40.JPG", "file_stem": "2002-07-12 20-11-46 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2242127.0, "mtime": "2002-07-30T22:30:22+00:00", "mtime_ts": 1028068222.0, "ctime": "2002-07-30T22:30:22+00:00", "sha256_file": "1d647be9db97063ec1249c29dcffa229a71a65f4d665549264fb438ed75a1ffb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:12 20:11:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8991", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:07:12 20:11:46", "EXIF DateTimeDigitized": "2002:07:12 20:11:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "2419679/210", "EXIF FocalPlaneYResolution": "3226239/280", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1111135", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "305", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16dc1213883fbc7020d6c505dd97e47d05d0c39b591611e141729fd3f356ce79", "phash": "96524d4b396d217d", "dhash": "f96c9c9c1c8c3636", "phash_int": -7.614939034448749e+18, "collected_at": "2026-05-22T04:28:55.354817+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-12 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-47-12 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-47-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1435863.0, "mtime": "2002-07-21T20:47:10+00:00", "mtime_ts": 1027284430.0, "ctime": "2002-07-21T20:47:10+00:00", "sha256_file": "284662215b5c5be230b797b9386441b9011cecdf06cf1a9262008913e51a4066", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:47:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3934", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:47:12", "EXIF DateTimeDigitized": "2002:07:21 20:47:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3229/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 43, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121237", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "176", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6458"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9d96a29cc3829d5b514e639d595ee6f030dbf044c5bd287da0ea41ea5de2a3f", "phash": "f2d38d0d7972428e", "dhash": "70728d98a9a41607", "phash_int": -9.492600074334202e+17, "collected_at": "2026-05-22T04:28:55.435914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-22 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-22 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-47-22 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-47-22 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1441681.0, "mtime": "2002-07-21T20:47:20+00:00", "mtime_ts": 1027284440.0, "ctime": "2002-07-21T20:47:20+00:00", "sha256_file": "f478d1b6b3ce82c87a850971880151fad869bfa8561847f97245d201366dc6e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:47:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3853", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:47:22", "EXIF DateTimeDigitized": "2002:07:21 20:47:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "214/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[88, 36, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121238", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8560"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "960d2a8dde6ac5497d4a7f39c76baa1580d4c640dc2b90031118962a67ebf60e", "phash": "f2d68c0d1972f28e", "dhash": "72e68d88d0d08989", "phash_int": -9.484166836254836e+17, "collected_at": "2026-05-22T04:28:55.442915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-48-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-48-52 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-48-52 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-48-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1271980.0, "mtime": "2002-07-21T20:48:50+00:00", "mtime_ts": 1027284530.0, "ctime": "2002-07-21T20:48:50+00:00", "sha256_file": "013c3e137f35ef8175df552eba37942755265eec66739d6644927084af6e052d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:48:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4335", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:48:52", "EXIF DateTimeDigitized": "2002:07:21 20:48:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4097/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121240", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4097"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8192d4b166bec0bbdf899b57b0ab07c9873a3999a4f2148f037f78d0782dd68a", "phash": "ffda80457f202aac", "dhash": "8532391d224ec663", "phash_int": -1.0555013141091668e+16, "collected_at": "2026-05-22T04:28:55.588310+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-58 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-47-58 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-47-58 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-47-58 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2597725.0, "mtime": "2002-07-21T20:47:56+00:00", "mtime_ts": 1027284476.0, "ctime": "2002-07-21T20:47:56+00:00", "sha256_file": "dcad8278cd9055ca7bdee947fa7ca9753d83eb6ee6b43e10f79db88094c9a62f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:47:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4901", "EXIF ExposureTime": "1/250", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:47:58", "EXIF DateTimeDigitized": "2002:07:21 20:47:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "16719/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[99, 17, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121239", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "16719"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e7f368960a1b102c78a1bfe36733eb2acd1b6553fb0e71314dec876b8f0caa2", "phash": "f2e2851d7360d68e", "dhash": "60fa858d2834fa8c", "phash_int": -9.450466102581108e+17, "collected_at": "2026-05-22T04:28:55.603375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-02 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-02 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-49-02 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-49-02 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1250623.0, "mtime": "2002-07-21T20:49:00+00:00", "mtime_ts": 1027284540.0, "ctime": "2002-07-21T20:49:00+00:00", "sha256_file": "fad2df9cf0b369ef8f83992599317cfe2bd3ba318ca5a82a2669c858fc39d8e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:49:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4439", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:49:02", "EXIF DateTimeDigitized": "2002:07:21 20:49:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121241", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "145", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c06a1688a3dc0e2da32bb89905365d4d03b5adf039b69bcabb2583b965a71cc3", "phash": "fffa8884c5575052", "dhash": "623b19464ec662ad", "phash_int": -1538746032369582.0, "collected_at": "2026-05-22T04:28:55.663375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-31 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-31 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-49-31 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-49-31 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1415392.0, "mtime": "2002-07-21T20:49:30+00:00", "mtime_ts": 1027284570.0, "ctime": "2002-07-21T20:49:30+00:00", "sha256_file": "84679ed0c3c231e71d7cb03db78d257fb7b1f8ab58260a495296a3eb841638ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:49:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:49:31", "EXIF DateTimeDigitized": "2002:07:21 20:49:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 88, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121242", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b6a8b55ecdddf8b39262845fa2ceb296df83e502d49cd380b80901e655243da", "phash": "f8d28794b52d28e9", "dhash": "dc1813273595e476", "phash_int": -5.1720193442964045e+17, "collected_at": "2026-05-22T04:28:55.696377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-42 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-42 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-49-42 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-49-42 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1446086.0, "mtime": "2002-07-21T20:49:40+00:00", "mtime_ts": 1027284580.0, "ctime": "2002-07-21T20:49:40+00:00", "sha256_file": "0cede7e40b1e3bd568dddbcac31005c2d50f8f7d70157b5ddad866624dc67766", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:49:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5327", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:49:42", "EXIF DateTimeDigitized": "2002:07:21 20:49:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2311/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[58, 42, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121243", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "140", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9244"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28de39546783414899b142389c1f44ce8d0d083180310dcb920a735822ea773d", "phash": "a5b5b3a2ca8a0f1d", "dhash": "cf9e22e4f6f6d4ca", "phash_int": -6.506096574902694e+18, "collected_at": "2026-05-22T04:28:55.748577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-49-52 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-49-52 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-49-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1459906.0, "mtime": "2002-07-21T20:49:50+00:00", "mtime_ts": 1027284590.0, "ctime": "2002-07-21T20:49:50+00:00", "sha256_file": "a44dd6aabf8cadadac93c33c34355df46a61238cd691484cd76c044c1f587015", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:49:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5371", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:49:52", "EXIF DateTimeDigitized": "2002:07:21 20:49:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2311/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 94, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121244", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9244"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e027a61e04caccfab39de614fbdb82da826c9766752f5de67dabcf0f159b4a3a", "phash": "f0f0cd4743c1c6b6", "dhash": "82071d1d9de95a68", "phash_int": -1.0851418042331447e+18, "collected_at": "2026-05-22T04:28:55.785577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-04 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-04 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-50-04 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-50-04 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1534521.0, "mtime": "2002-07-21T20:50:02+00:00", "mtime_ts": 1027284602.0, "ctime": "2002-07-21T20:50:02+00:00", "sha256_file": "b3bebbf6d28492728adf3357c44a0a1c024bbb07a5c6db3127ad502fe0a3b275", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:50:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5187", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:50:04", "EXIF DateTimeDigitized": "2002:07:21 20:50:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5981/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 181, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121245", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5981"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dca5e7eb8e8f7c0a74b23ae3ad3ef42603ccecc43229fe988b2f1b028e294414", "phash": "c94fb6367a3478c0", "dhash": "6ce2d1d1d1f1e430", "phash_int": -3.9407308038311465e+18, "collected_at": "2026-05-22T04:28:55.879582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-47 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-47 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-50-47 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-50-47 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2194933.0, "mtime": "2002-07-21T20:50:46+00:00", "mtime_ts": 1027284646.0, "ctime": "2002-07-21T20:50:46+00:00", "sha256_file": "30778dc5ec1fb89a3aeeab863c6e0f1e053a3cd9c1e79b2a3d1aaabeb6f2338b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:50:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5511", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:50:47", "EXIF DateTimeDigitized": "2002:07:21 20:50:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2311/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121246", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9244"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73931f7a5ad8a40fbc49882ac3177bc394b1bc47a6246bcf966b65473fbe057e", "phash": "b5d0c995b4ba89b2", "dhash": "e0f0951c9c727373", "phash_int": -5.345551112869345e+18, "collected_at": "2026-05-22T04:28:55.982588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-57 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-50-57 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-50-57 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-50-57 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2024053.0, "mtime": "2002-07-21T20:50:56+00:00", "mtime_ts": 1027284656.0, "ctime": "2002-07-21T20:50:56+00:00", "sha256_file": "ef4ef06f60019d4ce4021f6a209060c9a049f5efdee37e3988c9a3f603080cce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:50:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5245", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:50:57", "EXIF DateTimeDigitized": "2002:07:21 20:50:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121247", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb7c0174c9ef36c6b24880b1f09e9465b0e909dab41d5f85ced8d5fa37608a5d", "phash": "eb8170caf2e13535", "dhash": "8be95ec949c1431d", "phash_int": -1.476775185840262e+18, "collected_at": "2026-05-22T04:28:56.001593+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-06 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-06 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-51-06 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-51-06 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1939805.0, "mtime": "2002-07-21T20:51:04+00:00", "mtime_ts": 1027284664.0, "ctime": "2002-07-21T20:51:04+00:00", "sha256_file": "8d880b5aed1d6e7290b001053fd213efc5db4bda9716c807b47788ef89b5ce10", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:51:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4703", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:51:06", "EXIF DateTimeDigitized": "2002:07:21 20:51:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "483/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121248", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "966"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cacccb74d8769a4fa8596f438fc8f8e39d54cbb2524e4dd7ac991425cab6e611", "phash": "a50633636e5c536d", "dhash": "cec6c6e6e6ced6d6", "phash_int": -6.555495705444855e+18, "collected_at": "2026-05-22T04:28:56.103588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-13 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-13 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-51-13 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-51-13 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2063537.0, "mtime": "2002-07-21T20:51:12+00:00", "mtime_ts": 1027284672.0, "ctime": "2002-07-21T20:51:12+00:00", "sha256_file": "10aaaf584b2174af32fbb2df70341877e8f5ead670bddebe90e2cbbb5fc6b3f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:51:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4769", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:51:13", "EXIF DateTimeDigitized": "2002:07:21 20:51:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "577/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121249", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65489", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1154"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9027d488fd1ceb82d13dd436ee4fc895bdc60435bbe5315e7d19a44d2f2d5b27", "phash": "807273ec4de7e2e0", "dhash": "0ddcccd4f0f0dcf8", "phash_int": -9.191156430753242e+18, "collected_at": "2026-05-22T04:28:56.118588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-18 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-18 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-51-18 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-51-18 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2200204.0, "mtime": "2002-07-21T20:51:16+00:00", "mtime_ts": 1027284676.0, "ctime": "2002-07-21T20:51:16+00:00", "sha256_file": "0f35c7ba7e2b78462d58de43d7520b4f0b46ad6bee20b29e924484c0f7af2871", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:51:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4472", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:51:18", "EXIF DateTimeDigitized": "2002:07:21 20:51:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "541/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121250", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1082"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36082a746e9dadcede64a826e3c4ea40697eea140a2d0955813b2be7be8b00ae", "phash": "804233bb4c4db77b", "dhash": "ccdcd4f0f0dcf8fc", "phash_int": -9.20473780885981e+18, "collected_at": "2026-05-22T04:28:56.261599+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-24 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-24 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-51-24 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-51-24 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2384019.0, "mtime": "2002-07-21T20:51:22+00:00", "mtime_ts": 1027284682.0, "ctime": "2002-07-21T20:51:22+00:00", "sha256_file": "25de73ba1d6448940d1946ea0ee41eb25b37ef9d18ad1e297fa5b0ef657c3c43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:51:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5197", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:51:24", "EXIF DateTimeDigitized": "2002:07:21 20:51:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "54/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121251", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2160"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dfbba1c88231f9295ddb31824f9965881539e6871dd4243fef5d3e5af309d23", "phash": "944991a45f3e8d73", "dhash": "e0f0f1316cf6ecf8", "phash_int": -7.761512347637741e+18, "collected_at": "2026-05-22T04:28:56.291596+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-33 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-51-33 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-51-33 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-51-33 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1813528.0, "mtime": "2002-07-21T20:51:32+00:00", "mtime_ts": 1027284692.0, "ctime": "2002-07-21T20:51:32+00:00", "sha256_file": "726543e08c432630ab20d9f9e843fd1b0fc5ea96fbdafc439e9b57a2c70521a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:51:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4910", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:51:33", "EXIF DateTimeDigitized": "2002:07:21 20:51:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "54/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121252", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2160"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31c442018e1b695777a0d26b62221e11ee0ae77b4ab9419ccceecffc807fd8ee", "phash": "8ab5b6b7b1919252", "dhash": "3ea3c19391c1e1e1", "phash_int": -8.451648225616489e+18, "collected_at": "2026-05-22T04:28:56.334819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-53-53 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-53-53 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-53-53 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-53-53 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1690333.0, "mtime": "2002-07-21T20:53:52+00:00", "mtime_ts": 1027284832.0, "ctime": "2002-07-21T20:53:52+00:00", "sha256_file": "1d0363d7796ed05502061918d51c048b6a60ccf2df50cd766dbbaa81255dbc28", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:53:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5638", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:53:53", "EXIF DateTimeDigitized": "2002:07:21 20:53:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[66, 200, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121253", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "adfc00ec0cfcf04c36af9e7513121990ae016e7ccd8c747b04dd80cdc3f3daf6", "phash": "c7c325de90d471a3", "dhash": "f046cbf0513866e6", "phash_int": -4.052353601860505e+18, "collected_at": "2026-05-22T04:28:56.390821+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-54-05 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-54-05 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-54-05 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-54-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1335926.0, "mtime": "2002-07-21T20:54:04+00:00", "mtime_ts": 1027284844.0, "ctime": "2002-07-21T20:54:04+00:00", "sha256_file": "c1d93bab8e999e5eb70902ff2ee7ecb3a3db51cddfdf660bf83890fbcba1a598", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:54:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:54:05", "EXIF DateTimeDigitized": "2002:07:21 20:54:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "397/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121254", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3176"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "585280572b338c8c46cfd1e94830438397b17cf50cd3107c4e0a9086ef9fa24e", "phash": "d0a88fc9c18fcbc3", "dhash": "f0948d9c9cf06cfc", "phash_int": -3.4113186210345257e+18, "collected_at": "2026-05-22T04:28:56.440821+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-54-21 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-54-21 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-54-21 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-54-21 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1305363.0, "mtime": "2002-07-21T20:54:20+00:00", "mtime_ts": 1027284860.0, "ctime": "2002-07-21T20:54:20+00:00", "sha256_file": "768e3a7944b83de334bc0e7e59f82804e15314b1728a8bd4653404aeefb11914", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:54:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3401", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:54:21", "EXIF DateTimeDigitized": "2002:07:21 20:54:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "903/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121255", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3612"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d77fcb07e4c4ad740ad5a3fdfd136f11ac0b62f2541b8814f5d2231ad6a69be9", "phash": "c3cb8f8f4170703b", "dhash": "e9699cdce0f4f4e0", "phash_int": -4.338215970600358e+18, "collected_at": "2026-05-22T04:28:56.560010+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-00 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-00 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-00 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1611472.0, "mtime": "2002-07-21T20:54:58+00:00", "mtime_ts": 1027284898.0, "ctime": "2002-07-21T20:54:58+00:00", "sha256_file": "7d4d9f7d65bac39c78f2203275ea2ac1ca345ef25c984c47e97ba96d429b8e39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4848", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:00", "EXIF DateTimeDigitized": "2002:07:21 20:55:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[71, 192, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121256", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea0c2475a06d6d8ca1d40e71a3b48c0dbe157af258d747066a6f47d77e5b2052", "phash": "f5897ae2061ee466", "dhash": "cd9b32fcce0e1828", "phash_int": -7.53936351423962e+17, "collected_at": "2026-05-22T04:28:56.586094+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-05 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-05 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-05 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-05 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1622648.0, "mtime": "2002-07-21T20:55:04+00:00", "mtime_ts": 1027284904.0, "ctime": "2002-07-21T20:55:04+00:00", "sha256_file": "d7a3079afc5ca73320cc1d49d4d31fd8a020b60cbf1c53b590a515dedaf519ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4782", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:05", "EXIF DateTimeDigitized": "2002:07:21 20:55:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[67, 198, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121257", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0fd4d8131f740d6df98d7645f1c9c30f1b4169e2e7226de16161261333c76ffc", "phash": "a4da24174babf531", "dhash": "68acb3c198cee7c7", "phash_int": -6.567897424094039e+18, "collected_at": "2026-05-22T04:28:56.710092+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-12 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-12 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1331270.0, "mtime": "2002-07-21T20:55:10+00:00", "mtime_ts": 1027284910.0, "ctime": "2002-07-21T20:55:10+00:00", "sha256_file": "fc71b5b7473c07e92cb6787a3f9c0401a7bd9215c8b7f8a4cb92f89911449b2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4968", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:12", "EXIF DateTimeDigitized": "2002:07:21 20:55:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121258", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "149", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5eeedac40ffa5c5db5460adc498cd56c4f6b79e20c6802705ca3d57e0217893", "phash": "f7f243dc402b74d0", "dhash": "88880ecba4665bba", "phash_int": -5.803267887289167e+17, "collected_at": "2026-05-22T04:28:56.722089+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-20 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-20 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-20 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-20 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1625852.0, "mtime": "2002-07-21T20:55:18+00:00", "mtime_ts": 1027284918.0, "ctime": "2002-07-21T20:55:18+00:00", "sha256_file": "ad4e908942217f2d64b0695ac01b03ff486fabe1960cf04b4d7c3e0c97c181ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6055", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:20", "EXIF DateTimeDigitized": "2002:07:21 20:55:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121259", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6f6aae0495c8a1deee4b1927b131090e9da4d474010769e2cc1b182d7281b8e", "phash": "83cb20253f674b2f", "dhash": "cf98e96878cacc94", "phash_int": -8.950024490119116e+18, "collected_at": "2026-05-22T04:28:56.796201+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-45 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-45 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-45 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-45 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1562680.0, "mtime": "2002-07-21T20:55:44+00:00", "mtime_ts": 1027284944.0, "ctime": "2002-07-21T20:55:44+00:00", "sha256_file": "e638784ab4ca953f8fa3749c7ec89e7933e3cf652a94b6458d2bcd4a2c7cf787", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5694", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:45", "EXIF DateTimeDigitized": "2002:07:21 20:55:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 203, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121260", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5e5521be93909c1110572529cb35a4e9e6aa652e388d53022c6ca5af4f5df66", "phash": "85e0670751d75ad6", "dhash": "cc8facd0f0f964e4", "phash_int": -8.799920390746449e+18, "collected_at": "2026-05-22T04:28:56.843806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-52 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-55-52 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-55-52 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-55-52 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1573531.0, "mtime": "2002-07-21T20:55:50+00:00", "mtime_ts": 1027284950.0, "ctime": "2002-07-21T20:55:50+00:00", "sha256_file": "03079a88719915b34c61f39657949432fa8de9cba8d3973c4930c663e9e3a528", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:55:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5249", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:55:52", "EXIF DateTimeDigitized": "2002:07:21 20:55:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 233, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121261", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "110", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20d5b51842b0a0c92cd0bc980a2a6bb172849a44de8a89fce7bf72d4a46793db", "phash": "87ac9823136c3dfc", "dhash": "cee436e8c9eaa850", "phash_int": -8.67038790617791e+18, "collected_at": "2026-05-22T04:28:56.909810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-12 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-12 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-12 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-12 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 2113329.0, "mtime": "2002-07-21T20:56:10+00:00", "mtime_ts": 1027284970.0, "ctime": "2002-07-21T20:56:10+00:00", "sha256_file": "7cd02d1f1e430b353b049adf50e0efe74f0b61b646b8952b66dfa48a505346ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5460", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:12", "EXIF DateTimeDigitized": "2002:07:21 20:56:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "743/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121262", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2972"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ac8ae5c867b73944c869fef8fcd92c147699fdad713d3f24027198c272f273b", "phash": "c848cb2bbc977a2a", "dhash": "b3b3b1b6b3d1c8c9", "phash_int": -4.014735679092721e+18, "collected_at": "2026-05-22T04:28:56.917807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-35 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-35 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-35 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-35 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1523397.0, "mtime": "2002-07-21T20:56:34+00:00", "mtime_ts": 1027284994.0, "ctime": "2002-07-21T20:56:34+00:00", "sha256_file": "2193b26dd1b6e5392be442229fd74c67d82d15ab5fb298953ed453cf955bce42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4574", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:35", "EXIF DateTimeDigitized": "2002:07:21 20:56:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "911/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121264", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "911"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "809348a837ebfcd52e6c679c95966566c93cf51d624690e5f3a279bd2f0fe553", "phash": "ca9723e2427d5cc6", "dhash": "fd717070e1b0f3f1", "phash_int": -3.8485679018797066e+18, "collected_at": "2026-05-22T04:28:57.138905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-25 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-25 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-25 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-25 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1884134.0, "mtime": "2002-07-21T20:56:24+00:00", "mtime_ts": 1027284984.0, "ctime": "2002-07-21T20:56:24+00:00", "sha256_file": "bb1f416df9ea4e2beb0e4f68efb8c9c5486fa91cd0f28a4a126777e6d0639ceb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4970", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:25", "EXIF DateTimeDigitized": "2002:07:21 20:56:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2439/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121263", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2439"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0d6102f8078cd0b9e82ac4f8117f67012a2117eb55ae83a07b82326772ec5c8", "phash": "c8aa3c4aacf3c55a", "dhash": "b333f3d3b3b3b1b6", "phash_int": -3.9873082286562493e+18, "collected_at": "2026-05-22T04:28:57.148473+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-41 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-41 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-41 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-41 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1742819.0, "mtime": "2002-07-21T20:56:40+00:00", "mtime_ts": 1027285000.0, "ctime": "2002-07-21T20:56:40+00:00", "sha256_file": "2a2a2cf74bd3f2ea6a7cebc6a6f1f3d7ee7849b31fd34f747539b1b41b9d1045", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4463", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:41", "EXIF DateTimeDigitized": "2002:07:21 20:56:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1431/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121265", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1431"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5a3ea665f2772df3f4bd8ba52332d9ac686327bfd10b44575cb46ff38962858", "phash": "da756fca156447c0", "dhash": "2070383838797979", "phash_int": -2.7051330874331443e+18, "collected_at": "2026-05-22T04:28:57.306915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-47 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-47 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-47 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-47 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1637263.0, "mtime": "2002-07-21T20:56:46+00:00", "mtime_ts": 1027285006.0, "ctime": "2002-07-21T20:56:46+00:00", "sha256_file": "af633a22c2b58254ae60cf6cef41e497d5643cace1f2fabd798057d9bf6b5929", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4579", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:47", "EXIF DateTimeDigitized": "2002:07:21 20:56:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2151/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121266", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4302"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ad1a62e06e20fcf834c8fd7a8864604914edc74f6a4a35dc1ea539bdb6dcac56", "phash": "d7b2c0c07a7d2b61", "dhash": "44cc4a4c4c4ce0e0", "phash_int": -2.904046876779271e+18, "collected_at": "2026-05-22T04:28:57.368156+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-57 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-56-57 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-56-57 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-56-57 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1541620.0, "mtime": "2002-07-21T20:56:56+00:00", "mtime_ts": 1027285016.0, "ctime": "2002-07-21T20:56:56+00:00", "sha256_file": "9405fdaffcb51f10872f235f608ba29195bb8e559fa6283a13f9b6658d29ec72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:56:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5334", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:56:57", "EXIF DateTimeDigitized": "2002:07:21 20:56:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "381/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 226, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121267", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "118", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1905"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73f22d665fab0cd7a3e69baf531b6b8dbeb5b2bb5a10eeb3392442e7782b0948", "phash": "f59c80f01f817567", "dhash": "d4b426522788c141", "phash_int": -7.485816692412607e+17, "collected_at": "2026-05-22T04:28:57.429266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-11 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-11 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-57-11 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-57-11 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1600297.0, "mtime": "2002-07-21T20:57:10+00:00", "mtime_ts": 1027285030.0, "ctime": "2002-07-21T20:57:10+00:00", "sha256_file": "40e2c408df6f3a118d8fd4507cff1f27bce804047495a0ea39f0044b526fb032", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:57:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5487", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:57:11", "EXIF DateTimeDigitized": "2002:07:21 20:57:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121268", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9b62f62b10b34603ce4107943e6ec201218de5acd00422d0c2e596da5223dd8", "phash": "c0e42f848c4f4fbe", "dhash": "c68c0a96bcc8d03c", "phash_int": -4.5474574774011617e+18, "collected_at": "2026-05-22T04:28:57.456486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-27 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-27 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-57-27 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-57-27 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1509110.0, "mtime": "2002-07-21T20:57:26+00:00", "mtime_ts": 1027285046.0, "ctime": "2002-07-21T20:57:26+00:00", "sha256_file": "d7593142008c5801406f7c7f536c1ebecd2f748d252ba2e8109df2db82f62902", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:57:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5036", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:57:27", "EXIF DateTimeDigitized": "2002:07:21 20:57:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 181, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121269", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "114", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1aedc803295756c4bf7936d2aec7d7f9f7c4bd67baec4834a3ff3be00b3fb7eb", "phash": "c2aba1252f97d534", "dhash": "4b91f06053e4f8e0", "phash_int": -4.419261428249668e+18, "collected_at": "2026-05-22T04:28:57.497553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-40 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-57-40 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-57-40 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-57-40 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1620007.0, "mtime": "2002-07-21T20:57:38+00:00", "mtime_ts": 1027285058.0, "ctime": "2002-07-21T20:57:38+00:00", "sha256_file": "14aa57117dc0a03e21cb94f0173aebf2f36eb47b672d3e458faa29a7aea3ced9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:57:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5322", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:57:40", "EXIF DateTimeDigitized": "2002:07:21 20:57:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[63, 201, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121270", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "079460d81d5c34da473dbc13b8aa614c0950276cf351da531dc3689a1c33eb70", "phash": "a4cb55a95a0593f5", "dhash": "f8e4c6f32fafce9c", "phash_int": -6.572065045368958e+18, "collected_at": "2026-05-22T04:28:57.541715+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-58-28 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-58-28 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-58-28 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-58-28 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1749662.0, "mtime": "2002-07-21T20:58:26+00:00", "mtime_ts": 1027285106.0, "ctime": "2002-07-21T20:58:26+00:00", "sha256_file": "80d183f39191dafb00efa33bfae37c767a6c85340f170a8c1553bcb3ca64de3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:58:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5814", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:58:28", "EXIF DateTimeDigitized": "2002:07:21 20:58:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[59, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121272", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "feed8e6df18cf3756a016ffe2ab60e90a6b56cbf57b21e0a2213d21f0d0af83d", "phash": "81b25f2db1f4c133", "dhash": "5c6b8dae5a7365da", "phash_int": -9.101107247098577e+18, "collected_at": "2026-05-22T04:28:57.601930+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-00 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-00 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-59-00 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-59-00 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1397792.0, "mtime": "2002-07-21T20:58:58+00:00", "mtime_ts": 1027285138.0, "ctime": "2002-07-21T20:58:58+00:00", "sha256_file": "6e45e1982166568b1d570e570d9e614a5ef285a0f444aeb5dbc47700740baef1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:59:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3320", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:59:00", "EXIF DateTimeDigitized": "2002:07:21 20:59:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 42, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121274", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "708dc79d3db17cbf523ad80e1a1e419cc61c7a35889f132cc1f6453660183a2d", "phash": "df80ff005f40be85", "dhash": "80c86474700f4120", "phash_int": -2.3415914291694966e+18, "collected_at": "2026-05-22T04:28:57.653241+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-23 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-23 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-59-23 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-59-23 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1254399.0, "mtime": "2002-07-21T20:59:22+00:00", "mtime_ts": 1027285162.0, "ctime": "2002-07-21T20:59:22+00:00", "sha256_file": "47fb916a3532a96bf21893e5ed255ac5f40de6ef5508cb204bb96270d13ada9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:59:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2667", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:59:23", "EXIF DateTimeDigitized": "2002:07:21 20:59:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 40, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121276", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65ed03bb363e77cf943f7d6e46a6323a80bcb2c61c4d28bc397d6365e8b0a8ee", "phash": "c094e54555c5d377", "dhash": "f2f4f8b0a0c0c0c2", "phash_int": -4.5697756359196785e+18, "collected_at": "2026-05-22T04:28:57.699379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-48 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\21\\2002-07-21 20-59-48 Canon PowerShot S40.JPG", "file_name": "2002-07-21 20-59-48 Canon PowerShot S40.JPG", "file_stem": "2002-07-21 20-59-48 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 961406.0, "mtime": "2002-07-21T20:59:46+00:00", "mtime_ts": 1027285186.0, "ctime": "2002-07-21T20:59:46+00:00", "sha256_file": "ec5d8b1eb173bbce18ab251b9efd1a261b03d62e37561884219782aa8ee15b5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:21 20:59:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1915", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:21 20:59:48", "EXIF DateTimeDigitized": "2002:07:21 20:59:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "10243/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 50, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1121278", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10243"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ad445f400a4d2b73d7287d913bc8ee3355e4326c47f5928df955b8508ee9cfe", "phash": "c090f5755b0a96f5", "dhash": "e0e0f0d992e08000", "phash_int": -4.5708837373936543e+18, "collected_at": "2026-05-22T04:28:57.715386+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\30\\2002-07-30 20-49-44 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\30\\2002-07-30 20-49-44 Canon PowerShot S40.JPG", "file_name": "2002-07-30 20-49-44 Canon PowerShot S40.JPG", "file_stem": "2002-07-30 20-49-44 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1800498.0, "mtime": "2002-07-30T20:49:42+00:00", "mtime_ts": 1028062182.0, "ctime": "2002-07-30T20:49:42+00:00", "sha256_file": "bacb110b6b537e4464cbfba1e379fa76132ac258f9e567e1f839a3a69d4eaac1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:30 20:49:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5346", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:30 20:49:44", "EXIF DateTimeDigitized": "2002:07:30 20:49:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131391", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64dda2be47fc3108ebd27bb03f0accc898173dfb2b8ee7198093d293623e4949", "phash": "84f9d977640499b6", "dhash": "48b8e4e6eeece8e0", "phash_int": -8.864815284699752e+18, "collected_at": "2026-05-22T04:28:57.826606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\07\\30\\2002-07-30 20-50-03 Canon PowerShot S40.JPG", "file_path_relative": "HD02#FOTKY\\2002\\07\\30\\2002-07-30 20-50-03 Canon PowerShot S40.JPG", "file_name": "2002-07-30 20-50-03 Canon PowerShot S40.JPG", "file_stem": "2002-07-30 20-50-03 Canon PowerShot S40", "file_ext": ".jpg", "file_size": 1679481.0, "mtime": "2002-07-30T20:50:02+00:00", "mtime_ts": 1028062202.0, "ctime": "2002-07-30T20:50:02+00:00", "sha256_file": "363494f1513488558e4d8e48f9c956e62de32f9dec356c6e4f47f25970c8df59", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:07:30 20:50:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5068", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:07:30 20:50:03", "EXIF DateTimeDigitized": "2002:07:30 20:50:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131392", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d495445387b5b5c226afd3c8f74f371ca74b8b88459a574f9cd73b991232d6b4", "phash": "d3cdcc230173ddb0", "dhash": "c2f1c8ccccccccf0", "phash_int": -3.1846649107607803e+18, "collected_at": "2026-05-22T04:28:57.860601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-01\\113-1393_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-01\\113-1393_IMG.JPG", "file_name": "113-1393_IMG.JPG", "file_stem": "113-1393_IMG", "file_ext": ".jpg", "file_size": 1994839.0, "mtime": "2002-08-01T07:46:20+00:00", "mtime_ts": 1028187980.0, "ctime": "2002-08-01T07:46:20+00:00", "sha256_file": "e7864a066fcd1488dfe8d4669f6bdd8d97d6b9c1408c9acf15fd3150d12c5fff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:01 07:46:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5592", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:01 07:46:22", "EXIF DateTimeDigitized": "2002:08:01 07:46:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131393", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65473", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4109c79803e9e1c49ee8abd6a14bde38fc9999658e7f43101c87d9190547bea9", "phash": "dee0c52c3279e54c", "dhash": "e4e0d11965603070", "phash_int": -2.3866910088902804e+18, "collected_at": "2026-05-22T04:28:57.932730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-01\\113-1394_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-01\\113-1394_IMG.JPG", "file_name": "113-1394_IMG.JPG", "file_stem": "113-1394_IMG", "file_ext": ".jpg", "file_size": 2092970.0, "mtime": "2002-08-01T07:46:38+00:00", "mtime_ts": 1028187998.0, "ctime": "2002-08-01T07:46:38+00:00", "sha256_file": "a3c5943bb7bb49c8d770dfb79eefb0aa68b5a352d6b0aa46a1cd3630bfa0b4b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:01 07:46:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6201", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:01 07:46:39", "EXIF DateTimeDigitized": "2002:08:01 07:46:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131394", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65474", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4cb20f8df294996fed4ec302f878dc33c679703a788e2c12d1b5fac64b33f166", "phash": "c936c68b432b3f34", "dhash": "f8f416db9973f2e0", "phash_int": -3.9477497219139994e+18, "collected_at": "2026-05-22T04:28:57.972731+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\113-1398_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\113-1398_IMG.JPG", "file_name": "113-1398_IMG.JPG", "file_stem": "113-1398_IMG", "file_ext": ".jpg", "file_size": 1848988.0, "mtime": "2002-08-03T16:03:28+00:00", "mtime_ts": 1028390608.0, "ctime": "2002-08-03T16:03:28+00:00", "sha256_file": "82020c73d87c52bf486e6916095d298e30207697bd0277bb57c18eab99c7adb0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 16:03:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7181", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 16:03:30", "EXIF DateTimeDigitized": "2002:08:03 16:03:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1577/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131398", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3154"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cedfdb54a095a86266203e0688a013fbe6a223c5008232447ac7f90c40844d6b", "phash": "c52781d43fad7286", "dhash": "cecac6666484d2d4", "phash_int": -4.2402777755446513e+18, "collected_at": "2026-05-22T04:28:58.066449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\113-1399_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\113-1399_IMG.JPG", "file_name": "113-1399_IMG.JPG", "file_stem": "113-1399_IMG", "file_ext": ".jpg", "file_size": 1901220.0, "mtime": "2002-08-03T16:03:34+00:00", "mtime_ts": 1028390614.0, "ctime": "2002-08-03T16:03:34+00:00", "sha256_file": "67d9d81ef26c0bc72af284ce750f933fca5402106139071810ec4e2a8b936281", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 16:03:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7201", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 16:03:35", "EXIF DateTimeDigitized": "2002:08:03 16:03:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3617/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131399", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "183", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3617"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b2fdd54da8891f220123020985e3748f204dfe7b3ceefdcaf663fc7dd320f06", "phash": "c527a1d53ea57286", "dhash": "cecace666484d2d6", "phash_int": -4.2402425868948966e+18, "collected_at": "2026-05-22T04:28:58.105456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\113-1400_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\113-1400_IMG.JPG", "file_name": "113-1400_IMG.JPG", "file_stem": "113-1400_IMG", "file_ext": ".jpg", "file_size": 1573680.0, "mtime": "2002-08-03T16:35:22+00:00", "mtime_ts": 1028392522.0, "ctime": "2002-08-03T16:35:22+00:00", "sha256_file": "e28a1d24d7ffc720f38f5cdcb1a30d46893ff4870a58356ec10eb80de0b4d88e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 16:35:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6746", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 16:35:23", "EXIF DateTimeDigitized": "2002:08:03 16:35:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[71, 194, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131400", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "145", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e61743ceafc404442c10cbbfab8b655e12037fb1b9ac511644ca284dcfb50504", "phash": "dcecb235889968b9", "dhash": "a62433b037261895", "phash_int": -2.527449347866925e+18, "collected_at": "2026-05-22T04:28:58.196454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1401_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1401_IMG.JPG", "file_name": "114-1401_IMG.JPG", "file_stem": "114-1401_IMG", "file_ext": ".jpg", "file_size": 1658546.0, "mtime": "2002-08-03T16:35:30+00:00", "mtime_ts": 1028392530.0, "ctime": "2002-08-03T16:35:30+00:00", "sha256_file": "f4e5f5fcfdb666c27607bf65060dbd32cafa7f9d4f05cf34051637368504d7fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 16:35:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6513", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 16:35:31", "EXIF DateTimeDigitized": "2002:08:03 16:35:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[74, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141401", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b1089241de22cae9135bfae7a6ec5caac73c229b836a27fd322a6dda55c4fea", "phash": "dccef220cc92ccab", "dhash": "24007332b72e1814", "phash_int": -2.535823317477963e+18, "collected_at": "2026-05-22T04:28:58.211454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1402_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1402_IMG.JPG", "file_name": "114-1402_IMG.JPG", "file_stem": "114-1402_IMG", "file_ext": ".jpg", "file_size": 2285626.0, "mtime": "2002-08-03T19:43:58+00:00", "mtime_ts": 1028403838.0, "ctime": "2002-08-03T19:43:58+00:00", "sha256_file": "56163f13db3f59aa669404173da2c612e171075688622aca521e0d79d26adf85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:44:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6053", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:44:00", "EXIF DateTimeDigitized": "2002:08:03 19:44:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141402", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "154", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7fa41f59c9a95f39f1bc17ed93b41a66e3861ba77fe50908c5b77731b24ceec", "phash": "c549fa76544cc587", "dhash": "25d9c2f2e4e4a6e2", "phash_int": -4.230574988810468e+18, "collected_at": "2026-05-22T04:28:58.375460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1403_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1403_IMG.JPG", "file_name": "114-1403_IMG.JPG", "file_stem": "114-1403_IMG", "file_ext": ".jpg", "file_size": 2308018.0, "mtime": "2002-08-03T19:44:08+00:00", "mtime_ts": 1028403848.0, "ctime": "2002-08-03T19:44:08+00:00", "sha256_file": "e160c5ad6f6450111bdf34414ae084e98f5b85a2843f04d564d704796a45cdf1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:44:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6098", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:44:09", "EXIF DateTimeDigitized": "2002:08:03 19:44:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141403", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ba5b3411e582ec171beb10bdeb85bb678e12e737789cb49121f710a37ba0649", "phash": "846df9fa1a4a6c64", "dhash": "23d2e6e9eceee0f4", "phash_int": -8.904186035663377e+18, "collected_at": "2026-05-22T04:28:58.403463+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1407_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1407_IMG.JPG", "file_name": "114-1407_IMG.JPG", "file_stem": "114-1407_IMG", "file_ext": ".jpg", "file_size": 2339702.0, "mtime": "2002-08-03T19:45:36+00:00", "mtime_ts": 1028403936.0, "ctime": "2002-08-03T19:45:36+00:00", "sha256_file": "89f054c00e0d5d72afe81c5cd154899e15ad730962262f6259035cb19d6a8c87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:45:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8428", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:45:37", "EXIF DateTimeDigitized": "2002:08:03 19:45:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141407", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5293b578ac58c4890d5ca92320f1ad68aa8fdc01e00bf179ee1ea3bd5bc0bfca", "phash": "9e8ecd9d14d0d0d6", "dhash": "64232cec6cd0d8c4", "phash_int": -7.021448694481236e+18, "collected_at": "2026-05-22T04:28:58.534569+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1406_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1406_IMG.JPG", "file_name": "114-1406_IMG.JPG", "file_stem": "114-1406_IMG", "file_ext": ".jpg", "file_size": 2342262.0, "mtime": "2002-08-03T19:45:26+00:00", "mtime_ts": 1028403926.0, "ctime": "2002-08-03T19:45:26+00:00", "sha256_file": "db62d7ee52fcd962a716f23509b6742c37838c1c6ad6c5e1addd183521463dca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:45:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5237", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:45:28", "EXIF DateTimeDigitized": "2002:08:03 19:45:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[88, 176, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141406", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "144", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae58dfad3d2b026feb776c13e55e93076f455bc2c3f42957b19f9f371e4676f8", "phash": "8143ca9ab6b6b786", "dhash": "c1d2d6dedcf8f1f2", "phash_int": -9.132232853538032e+18, "collected_at": "2026-05-22T04:28:58.546568+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1408_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1408_IMG.JPG", "file_name": "114-1408_IMG.JPG", "file_stem": "114-1408_IMG", "file_ext": ".jpg", "file_size": 1756867.0, "mtime": "2002-08-03T19:45:58+00:00", "mtime_ts": 1028403958.0, "ctime": "2002-08-03T19:45:58+00:00", "sha256_file": "c4bbccdae9f739430809ba0b4a4b1483af04c30a94df8499b4ea574f9615737c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:46:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6634", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:46:00", "EXIF DateTimeDigitized": "2002:08:03 19:46:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141408", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59bf6055339f03dff6fa8549b422a2b3a448b6229ef853946bc4f9926ae58275", "phash": "d47822cec8f9e1f0", "dhash": "15c49890246020e0", "phash_int": -3.1367188689331236e+18, "collected_at": "2026-05-22T04:28:58.665836+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1409_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1409_IMG.JPG", "file_name": "114-1409_IMG.JPG", "file_stem": "114-1409_IMG", "file_ext": ".jpg", "file_size": 1302170.0, "mtime": "2002-08-03T19:46:16+00:00", "mtime_ts": 1028403976.0, "ctime": "2002-08-03T19:46:16+00:00", "sha256_file": "10da846792a8342ccb58e3d24b3eada29c78f73ccb609145ee8c21261e5dae64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:46:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4849", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:46:17", "EXIF DateTimeDigitized": "2002:08:03 19:46:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "509/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 208, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141409", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "156", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2545"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a8191cc4cd09d243e87deed95a61d220ea3e957dd24b2a817dd5460dcf2995f", "phash": "863f6a631d895738", "dhash": "6c6ce8f8dccca3a5", "phash_int": -8.77317657516459e+18, "collected_at": "2026-05-22T04:28:58.668839+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1411_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1411_IMG.JPG", "file_name": "114-1411_IMG.JPG", "file_stem": "114-1411_IMG", "file_ext": ".jpg", "file_size": 1222645.0, "mtime": "2002-08-03T19:47:38+00:00", "mtime_ts": 1028404058.0, "ctime": "2002-08-03T19:47:38+00:00", "sha256_file": "703a408fc92fe7a36e7d0483ef043a1271fd1a97d4c031b84930aa65ac585d07", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:47:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4022", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:47:40", "EXIF DateTimeDigitized": "2002:08:03 19:47:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "981/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[29, 312, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141411", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "981"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df39c465105fb90878236e4fdbf5fb253a30167cfb0dd1a7665554b4cbecfb3f", "phash": "84a92bcaf31e515e", "dhash": "e3f3f2ecece0e478", "phash_int": -8.887524238976725e+18, "collected_at": "2026-05-22T04:28:58.772841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1410_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1410_IMG.JPG", "file_name": "114-1410_IMG.JPG", "file_stem": "114-1410_IMG", "file_ext": ".jpg", "file_size": 1263944.0, "mtime": "2002-08-03T19:46:32+00:00", "mtime_ts": 1028403992.0, "ctime": "2002-08-03T19:46:32+00:00", "sha256_file": "7164c7e8327af9b795e989ac16394ab94d87d352bc223a1c5f18c1928505886f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 19:46:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4001", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 19:46:34", "EXIF DateTimeDigitized": "2002:08:03 19:46:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141410", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1903"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a991db81dc43136362117d5b8bbf05f2ccf09f925c87020f9c4b6f353ea8174", "phash": "9b735d2cff241904", "dhash": "1859d9595973f579", "phash_int": -7.245344927668496e+18, "collected_at": "2026-05-22T04:28:58.788844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1412_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1412_IMG.JPG", "file_name": "114-1412_IMG.JPG", "file_stem": "114-1412_IMG", "file_ext": ".jpg", "file_size": 1373300.0, "mtime": "2002-08-03T20:00:40+00:00", "mtime_ts": 1028404840.0, "ctime": "2002-08-03T20:00:40+00:00", "sha256_file": "9a1d74f31710c4ee80eec638bde20494981348435dfb6c5ee058d5efb6302fac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:00:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3353", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:00:42", "EXIF DateTimeDigitized": "2002:08:03 20:00:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "47/8", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141412", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5875"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6560cdd85a134307cb33850e72d83bfd79e39d4b08a7eb3c4ed4ffd660687f1", "phash": "c963a3f158c6c633", "dhash": "c38b63333332dc98", "phash_int": -3.935121392419814e+18, "collected_at": "2026-05-22T04:28:58.856056+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1414_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1414_IMG.JPG", "file_name": "114-1414_IMG.JPG", "file_stem": "114-1414_IMG", "file_ext": ".jpg", "file_size": 1300405.0, "mtime": "2002-08-03T20:01:22+00:00", "mtime_ts": 1028404882.0, "ctime": "2002-08-03T20:01:22+00:00", "sha256_file": "568bf389ed36bb99bc24158f6be7fe013752c45f5136bfa48b9c76065030b928", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:01:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3410", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:01:23", "EXIF DateTimeDigitized": "2002:08:03 20:01:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8637/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141414", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8637"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ab779879205598c264fbee6d1dff7538b8b90d68350588135fd50b57af8ef75", "phash": "ce40b1bb0e84ee3b", "dhash": "1d89a1656163d82b", "phash_int": -3.5846698864263214e+18, "collected_at": "2026-05-22T04:28:58.864192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1415_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1415_IMG.JPG", "file_name": "114-1415_IMG.JPG", "file_stem": "114-1415_IMG", "file_ext": ".jpg", "file_size": 1513107.0, "mtime": "2002-08-03T20:01:30+00:00", "mtime_ts": 1028404890.0, "ctime": "2002-08-03T20:01:30+00:00", "sha256_file": "e3212653418d5e1de0c3e258584c30893d53d05b360f382974149fe11bbe42ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:01:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3996", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:01:32", "EXIF DateTimeDigitized": "2002:08:03 20:01:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141415", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2202"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "990b89173cd22ceec6e3de74f9c8853677eb22f8f5b51b0b2fe3f9f513d74d95", "phash": "f11e03f3fc0fd00c", "dhash": "b0c84021b69aca82", "phash_int": -1.0724153148267684e+18, "collected_at": "2026-05-22T04:28:58.962195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1420_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1420_IMG.JPG", "file_name": "114-1420_IMG.JPG", "file_stem": "114-1420_IMG", "file_ext": ".jpg", "file_size": 1435165.0, "mtime": "2002-08-03T20:16:20+00:00", "mtime_ts": 1028405780.0, "ctime": "2002-08-03T20:16:20+00:00", "sha256_file": "9f1dd2bbe86ebae76356ecbbab9dfcdfeda8342eaea23bda8106a16fbbe6223a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:16:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4765", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:16:21", "EXIF DateTimeDigitized": "2002:08:03 20:16:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141420", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "017a93ebbca678389c3143dc269dee2ee4453be07cc027260d6dd1df1522c88f", "phash": "c363382c6d39c69e", "dhash": "b1c9cdccccecd898", "phash_int": -4.36758545015703e+18, "collected_at": "2026-05-22T04:28:58.978362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1422_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1422_IMG.JPG", "file_name": "114-1422_IMG.JPG", "file_stem": "114-1422_IMG", "file_ext": ".jpg", "file_size": 1452183.0, "mtime": "2002-08-03T20:16:40+00:00", "mtime_ts": 1028405800.0, "ctime": "2002-08-03T20:16:40+00:00", "sha256_file": "e6b53e78c25976d979d2787dfb72a5939e9c25c5b06672194f3085d941d05b5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:16:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:16:41", "EXIF DateTimeDigitized": "2002:08:03 20:16:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141422", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3823f2eb307d314590cc9ac4eb5d2cb647a779d195b926a40f0cebc22b85748a", "phash": "c3783867c664e399", "dhash": "8c5a586949c9d090", "phash_int": -4.3616742207470377e+18, "collected_at": "2026-05-22T04:28:59.061538+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1421_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1421_IMG.JPG", "file_name": "114-1421_IMG.JPG", "file_stem": "114-1421_IMG", "file_ext": ".jpg", "file_size": 1317841.0, "mtime": "2002-08-03T20:16:30+00:00", "mtime_ts": 1028405790.0, "ctime": "2002-08-03T20:16:30+00:00", "sha256_file": "36063f68cd4b10a1d3b8a1c52df7f53cf41b9c114378060e635c7544f5d9aa96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:16:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4595", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:16:32", "EXIF DateTimeDigitized": "2002:08:03 20:16:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141421", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "daabc86a6c561d702624c6b26bd333de0c05a3196f94740d4b810d50c2e39d3a", "phash": "cf7c3046c326e2d9", "dhash": "ccf2aa606169e8d8", "phash_int": -3.495866130266398e+18, "collected_at": "2026-05-22T04:28:59.076536+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1423_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1423_IMG.JPG", "file_name": "114-1423_IMG.JPG", "file_stem": "114-1423_IMG", "file_ext": ".jpg", "file_size": 1282332.0, "mtime": "2002-08-03T20:16:50+00:00", "mtime_ts": 1028405810.0, "ctime": "2002-08-03T20:16:50+00:00", "sha256_file": "4a725867bf722ff155a586336864bd5fa4b9c1910e6742802e900c3a908f8a33", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:16:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:16:51", "EXIF DateTimeDigitized": "2002:08:03 20:16:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141423", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2282c47b3dc66ef98f22cc644adc1b5cc538f8385333289a680c3a755cc16e6d", "phash": "f90d07e0766693f0", "dhash": "44f2181898188808", "phash_int": -5.0073532292775424e+17, "collected_at": "2026-05-22T04:28:59.272385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1424_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1424_IMG.JPG", "file_name": "114-1424_IMG.JPG", "file_stem": "114-1424_IMG", "file_ext": ".jpg", "file_size": 1393148.0, "mtime": "2002-08-03T20:17:06+00:00", "mtime_ts": 1028405826.0, "ctime": "2002-08-03T20:17:06+00:00", "sha256_file": "01563129f89e54fe2cb9a5f0add53a6e9a8c725a1ce9407b4259eed33a100106", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:17:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:17:08", "EXIF DateTimeDigitized": "2002:08:03 20:17:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141424", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b694e339994d227efd58be51f54daf294163d27a5da0929b8cf7d968ec71c783", "phash": "9b75649a46ae7198", "dhash": "8e98d9697979b9f1", "phash_int": -7.244773811781997e+18, "collected_at": "2026-05-22T04:28:59.340592+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1425_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1425_IMG.JPG", "file_name": "114-1425_IMG.JPG", "file_stem": "114-1425_IMG", "file_ext": ".jpg", "file_size": 1537526.0, "mtime": "2002-08-03T20:17:20+00:00", "mtime_ts": 1028405840.0, "ctime": "2002-08-03T20:17:20+00:00", "sha256_file": "7a5e9025cfa2d404cd0aba72e741fe17acd5448c02319c01c7bf24d5e46baa76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:17:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:17:22", "EXIF DateTimeDigitized": "2002:08:03 20:17:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141425", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8ad4a1c4fc1a092c310c682761e7afeecb24bb8482b43dd88eb4dcd705f8c2e", "phash": "90336d2cb699d96c", "dhash": "6cc8d9fcacb0b0f2", "phash_int": -8.055975269626161e+18, "collected_at": "2026-05-22T04:28:59.364592+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1426_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1426_IMG.JPG", "file_name": "114-1426_IMG.JPG", "file_stem": "114-1426_IMG", "file_ext": ".jpg", "file_size": 1912022.0, "mtime": "2002-08-03T20:17:34+00:00", "mtime_ts": 1028405854.0, "ctime": "2002-08-03T20:17:34+00:00", "sha256_file": "1dbb64d8cf441a9f3047928536f5040bdfeb6477ff353f0a2d8a44f1703da130", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:17:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4245", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:17:36", "EXIF DateTimeDigitized": "2002:08:03 20:17:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141426", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "050f337c0d79596926acfb5cd9b9014c18cdce7b0ac21bf5d5e92dd29bdb383a", "phash": "d3960d6d69299396", "dhash": "c00c4c8980808282", "phash_int": -3.20035572163323e+18, "collected_at": "2026-05-22T04:28:59.445269+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1428_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1428_IMG.JPG", "file_name": "114-1428_IMG.JPG", "file_stem": "114-1428_IMG", "file_ext": ".jpg", "file_size": 1781646.0, "mtime": "2002-08-03T20:18:02+00:00", "mtime_ts": 1028405882.0, "ctime": "2002-08-03T20:18:02+00:00", "sha256_file": "c5a056fdf84b391852722c8a7d8fd43bdb5f45d334aa44d4ce0edb663cf9de90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:18:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5670", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:18:03", "EXIF DateTimeDigitized": "2002:08:03 20:18:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141428", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bb47a811426a3d33dc26360eb9beec1aedc4d4fc9ea02b8f0077448b2d597d9", "phash": "c524b4b087d7e29b", "dhash": "a6a66b68e882f8e2", "phash_int": -4.2410662787898486e+18, "collected_at": "2026-05-22T04:28:59.506261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1429_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1429_IMG.JPG", "file_name": "114-1429_IMG.JPG", "file_stem": "114-1429_IMG", "file_ext": ".jpg", "file_size": 1599622.0, "mtime": "2002-08-03T20:18:36+00:00", "mtime_ts": 1028405916.0, "ctime": "2002-08-03T20:18:36+00:00", "sha256_file": "b863e80c417a5f1ba50783c5512c1d8b1ff53dcf3c77b7484d1a8bb7923860a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:18:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5292", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:18:37", "EXIF DateTimeDigitized": "2002:08:03 20:18:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141429", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddf58e2e0a312efa32986d2c6cf284244939334a0a76a4eb5d69310472788570", "phash": "c42ff9d8363c11e2", "dhash": "f2e1ee24e4f0a199", "phash_int": -4.3099516113521167e+18, "collected_at": "2026-05-22T04:28:59.546263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1430_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1430_IMG.JPG", "file_name": "114-1430_IMG.JPG", "file_stem": "114-1430_IMG", "file_ext": ".jpg", "file_size": 1724461.0, "mtime": "2002-08-03T20:18:42+00:00", "mtime_ts": 1028405922.0, "ctime": "2002-08-03T20:18:42+00:00", "sha256_file": "4e4760477172185506ab04ccf904fffa2c3af35db00a5c185c81a1d6aa7bc591", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:18:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5716", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:18:43", "EXIF DateTimeDigitized": "2002:08:03 20:18:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141430", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "29", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6e8be7cf20baf0a9f9b26993ff640a31543c2ae9a675686ca3f497e57900fc5", "phash": "9b633c1449cb7d34", "dhash": "f0785ad9d63e383b", "phash_int": -7.249884917301282e+18, "collected_at": "2026-05-22T04:28:59.595435+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1431_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1431_IMG.JPG", "file_name": "114-1431_IMG.JPG", "file_stem": "114-1431_IMG", "file_ext": ".jpg", "file_size": 1883648.0, "mtime": "2002-08-03T20:19:16+00:00", "mtime_ts": 1028405956.0, "ctime": "2002-08-03T20:19:16+00:00", "sha256_file": "da357f8270dfcf032eacdce12cd2f7f54f0d0a48a7022ad9265d4ba9469a286b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:19:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5600", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:19:17", "EXIF DateTimeDigitized": "2002:08:03 20:19:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141431", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e142624ca5387c022756d8bdc35443c7db7de8f72b25173a007b4d5251e0fc0", "phash": "c52e31bc3bc134e3", "dhash": "ca6ecce86c34d292", "phash_int": -4.238395514782928e+18, "collected_at": "2026-05-22T04:28:59.614616+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1433_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1433_IMG.JPG", "file_name": "114-1433_IMG.JPG", "file_stem": "114-1433_IMG", "file_ext": ".jpg", "file_size": 1711161.0, "mtime": "2002-08-03T20:20:24+00:00", "mtime_ts": 1028406024.0, "ctime": "2002-08-03T20:20:24+00:00", "sha256_file": "01d5a9a9efcca3e96cf8048d8b1277b3dd8a82e23974df2852fedab8c32504ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:20:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5466", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:20:25", "EXIF DateTimeDigitized": "2002:08:03 20:20:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141433", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12e5ce61e6082cf861d07c3b6f6e65565434e6f1809668150e7d52efc6c6a9ab", "phash": "87366b49b4c5dc31", "dhash": "3b6d6ceedcd0d2d0", "phash_int": -8.703651265537254e+18, "collected_at": "2026-05-22T04:28:59.679385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1434_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1434_IMG.JPG", "file_name": "114-1434_IMG.JPG", "file_stem": "114-1434_IMG", "file_ext": ".jpg", "file_size": 1762858.0, "mtime": "2002-08-03T20:20:38+00:00", "mtime_ts": 1028406038.0, "ctime": "2002-08-03T20:20:38+00:00", "sha256_file": "13a2065ef3a4e76d1d305be7b46d8d14cd33eff003619339838a8c4ba2e6c1a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:20:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5702", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:20:39", "EXIF DateTimeDigitized": "2002:08:03 20:20:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141434", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a731e2f6f44a4175bd17524393b1192441ac6d6f1104bac98062737ea48c6d0b", "phash": "963b68a8b7c69c1a", "dhash": "7769ecccccb4a480", "phash_int": -7.621382870547391e+18, "collected_at": "2026-05-22T04:28:59.698385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1435_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1435_IMG.JPG", "file_name": "114-1435_IMG.JPG", "file_stem": "114-1435_IMG", "file_ext": ".jpg", "file_size": 1744738.0, "mtime": "2002-08-03T20:21:02+00:00", "mtime_ts": 1028406062.0, "ctime": "2002-08-03T20:21:02+00:00", "sha256_file": "b2d3afd3722e537aeeece03768f63b527e7e7e66261b01b7768d6a3963c5d809", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:21:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6264", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:21:04", "EXIF DateTimeDigitized": "2002:08:03 20:21:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141435", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5f4fcfb2cb4e1720fc7d39bcf0dd727dfc1a7f974162ed58a4797410e77323a", "phash": "d1a0be9e89a96b43", "dhash": "b69cc1d2ca395918", "phash_int": -3.341461335385216e+18, "collected_at": "2026-05-22T04:28:59.784108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1436_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1436_IMG.JPG", "file_name": "114-1436_IMG.JPG", "file_stem": "114-1436_IMG", "file_ext": ".jpg", "file_size": 1520917.0, "mtime": "2002-08-03T20:21:16+00:00", "mtime_ts": 1028406076.0, "ctime": "2002-08-03T20:21:16+00:00", "sha256_file": "fdfed20253f9f9a545a9f82e2b10f1894b1f8ab517472a89bd5d538df74d8ca4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:21:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5570", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:21:18", "EXIF DateTimeDigitized": "2002:08:03 20:21:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141436", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12931e2bcb063d8e21b4bee3b1ba98ccceeeb3afee2be17a41cd42c7e9b640ad", "phash": "97275a28a3877ce4", "dhash": "3be8ecccde36f0a8", "phash_int": -7.554970719301961e+18, "collected_at": "2026-05-22T04:28:59.792189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1437_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1437_IMG.JPG", "file_name": "114-1437_IMG.JPG", "file_stem": "114-1437_IMG", "file_ext": ".jpg", "file_size": 1794103.0, "mtime": "2002-08-03T20:21:26+00:00", "mtime_ts": 1028406086.0, "ctime": "2002-08-03T20:21:26+00:00", "sha256_file": "8bad38bbb9faabd0e2b843b7071862736a717b7b4ebd4e386f43236365652813", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:21:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5602", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:21:28", "EXIF DateTimeDigitized": "2002:08:03 20:21:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141437", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13a13b43030e024bf923b22ccb0e60d587452b0b2ce88476c91beaf5dd4131fe", "phash": "94365819e68f39c7", "dhash": "3c6c6eeecc9af190", "phash_int": -7.766923639088269e+18, "collected_at": "2026-05-22T04:28:59.892224+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1438_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1438_IMG.JPG", "file_name": "114-1438_IMG.JPG", "file_stem": "114-1438_IMG", "file_ext": ".jpg", "file_size": 1840094.0, "mtime": "2002-08-03T20:21:42+00:00", "mtime_ts": 1028406102.0, "ctime": "2002-08-03T20:21:42+00:00", "sha256_file": "3138577d99094dff348ce28d9ac7c616556ba312abc459c063ff77a343b58de5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:21:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6323", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:21:43", "EXIF DateTimeDigitized": "2002:08:03 20:21:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141438", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e533f964cd600d147c28d1dfcd2f5df2ec993f284c6c8f1980f7fa917b5cdb9a", "phash": "900966a799f3871f", "dhash": "e6f3d998b8e4a4a4", "phash_int": -8.067804387429087e+18, "collected_at": "2026-05-22T04:28:59.961229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1439_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1439_IMG.JPG", "file_name": "114-1439_IMG.JPG", "file_stem": "114-1439_IMG", "file_ext": ".jpg", "file_size": 1661625.0, "mtime": "2002-08-03T20:22:38+00:00", "mtime_ts": 1028406158.0, "ctime": "2002-08-03T20:22:38+00:00", "sha256_file": "499ac0423ae012a004bfac37e0fece0f1bcd03ec38fe3127c982d96d2d986f77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:22:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5147", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:22:40", "EXIF DateTimeDigitized": "2002:08:03 20:22:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141439", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddc1fc8a845fb240cc0926de3c5d8e6a2580def01217dfdb183ae596566a290a", "phash": "d56e69903a21cb37", "dhash": "33646fccdcdcd6d4", "phash_int": -3.0673982280212285e+18, "collected_at": "2026-05-22T04:29:00.013439+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1440_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1440_IMG.JPG", "file_name": "114-1440_IMG.JPG", "file_stem": "114-1440_IMG", "file_ext": ".jpg", "file_size": 1687073.0, "mtime": "2002-08-03T20:22:44+00:00", "mtime_ts": 1028406164.0, "ctime": "2002-08-03T20:22:44+00:00", "sha256_file": "cfa4e998e8793a224b1d24c334be4637c17883b60ce195f2d22aaed5fb2fd2b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:22:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:22:46", "EXIF DateTimeDigitized": "2002:08:03 20:22:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141440", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f28d41d1788310ab63119845ff86fda2fda16b2ee016f1c823de142e92b8664", "phash": "d72e6d917a21c827", "dhash": "696c6fcddcd4d694", "phash_int": -2.9412930350396355e+18, "collected_at": "2026-05-22T04:29:00.110657+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1441_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1441_IMG.JPG", "file_name": "114-1441_IMG.JPG", "file_stem": "114-1441_IMG", "file_ext": ".jpg", "file_size": 1621294.0, "mtime": "2002-08-03T20:22:58+00:00", "mtime_ts": 1028406178.0, "ctime": "2002-08-03T20:22:58+00:00", "sha256_file": "49f142b7a896ef426c50f58e2bccb2b1cde2b0d3fe2edef593b759df3ec36854", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:22:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5090", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:22:59", "EXIF DateTimeDigitized": "2002:08:03 20:22:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141441", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "041155065a1ce1802f326b1713357c9aff4a14e694340775b04b3cdefd35c398", "phash": "d62e69957a27c00f", "dhash": "3262edcdfcd4d491", "phash_int": -3.013355009943814e+18, "collected_at": "2026-05-22T04:29:00.125762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1442_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1442_IMG.JPG", "file_name": "114-1442_IMG.JPG", "file_stem": "114-1442_IMG", "file_ext": ".jpg", "file_size": 1596095.0, "mtime": "2002-08-03T20:23:02+00:00", "mtime_ts": 1028406182.0, "ctime": "2002-08-03T20:23:02+00:00", "sha256_file": "f1307413f95504d46253d0c99de8618e8edd59b138f0dad0796178009135b102", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:23:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5031", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:23:04", "EXIF DateTimeDigitized": "2002:08:03 20:23:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141442", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ad5cde5f47016a0b785248a252a35cec55220b5599fa8fbb1d8ebc2e6d9af4d", "phash": "d32f6d943833c946", "dhash": "7264cad9fcdcd493", "phash_int": -3.229241924435851e+18, "collected_at": "2026-05-22T04:29:00.248098+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1443_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1443_IMG.JPG", "file_name": "114-1443_IMG.JPG", "file_stem": "114-1443_IMG", "file_ext": ".jpg", "file_size": 1601737.0, "mtime": "2002-08-03T20:26:50+00:00", "mtime_ts": 1028406410.0, "ctime": "2002-08-03T20:26:50+00:00", "sha256_file": "1fb753470ac14f552cbf32078be8f4c17fb91d53859a92da995b2a7f2487d819", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:26:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5012", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:26:51", "EXIF DateTimeDigitized": "2002:08:03 20:26:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141443", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65501", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b39f8dfc5dbb34ecb927cd6829a0ba504d4b0d7e1c858d004025ca8a960044c3", "phash": "aa6bb4265c9135ce", "dhash": "9f1b1b33716ffbb6", "phash_int": -6.166637187898985e+18, "collected_at": "2026-05-22T04:29:00.271101+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1444_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1444_IMG.JPG", "file_name": "114-1444_IMG.JPG", "file_stem": "114-1444_IMG", "file_ext": ".jpg", "file_size": 1637846.0, "mtime": "2002-08-03T20:27:04+00:00", "mtime_ts": 1028406424.0, "ctime": "2002-08-03T20:27:04+00:00", "sha256_file": "0808ab94f83084fc08c1bb300ef387eb5b91a1e911d876d1d21342237fb04a18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:27:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5247", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:27:05", "EXIF DateTimeDigitized": "2002:08:03 20:27:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141444", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c419bc4a1de925a245a725b637978c0aae8bf00d1fc25c36ad6683cb6b630df5", "phash": "c02e3f9bd0ce1c33", "dhash": "6882a4a198d0c0c8", "phash_int": -4.5986682310430484e+18, "collected_at": "2026-05-22T04:29:00.342283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1445_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1445_IMG.JPG", "file_name": "114-1445_IMG.JPG", "file_stem": "114-1445_IMG", "file_ext": ".jpg", "file_size": 1737602.0, "mtime": "2002-08-03T20:27:16+00:00", "mtime_ts": 1028406436.0, "ctime": "2002-08-03T20:27:16+00:00", "sha256_file": "af38b9a04b2c2726f428eb836ef011441d7780341dda562fc72b14c8817ce9d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:27:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5599", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:27:18", "EXIF DateTimeDigitized": "2002:08:03 20:27:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141445", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4ce531ba98e6ea736f70e7688df5e183ad1db34df5e1dd69e88121a5fa8b5d2", "phash": "c13a26ccd91b16ed", "dhash": "6ce4999890f0e0c8", "phash_int": -4.523260214482627e+18, "collected_at": "2026-05-22T04:29:00.358280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-03\\114-1446_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-03\\114-1446_IMG.JPG", "file_name": "114-1446_IMG.JPG", "file_stem": "114-1446_IMG", "file_ext": ".jpg", "file_size": 1868388.0, "mtime": "2002-08-03T20:27:32+00:00", "mtime_ts": 1028406452.0, "ctime": "2002-08-03T20:27:32+00:00", "sha256_file": "6e4b8fafd4ed1fc237a361b7b052dec594e803dfc4e929d02aa85674604c6f3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:03 20:27:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5763", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:03 20:27:33", "EXIF DateTimeDigitized": "2002:08:03 20:27:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141446", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32505c6496219fc2aece958321a8b686ed9d073b47307e41b31abef5fc514c36", "phash": "d02c3f87d8d93626", "dhash": "3435999080c08098", "phash_int": -3.4463097621540234e+18, "collected_at": "2026-05-22T04:29:00.447387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1447_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1447_IMG.JPG", "file_name": "114-1447_IMG.JPG", "file_stem": "114-1447_IMG", "file_ext": ".jpg", "file_size": 3072442.0, "mtime": "2002-08-04T10:33:14+00:00", "mtime_ts": 1028457194.0, "ctime": "2002-08-04T10:33:14+00:00", "sha256_file": "09639d2471366d13f80bfaa10b58226c84d8238ae3e1862343cdf1a68d573014", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:33:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7649", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:33:16", "EXIF DateTimeDigitized": "2002:08:04 10:33:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141447", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59e8b23d302f71b56ded3815de1c912c8b76cc9385bf240f6bf9f812c5d2f410", "phash": "c6ce458c38e11fd9", "dhash": "602049812363c446", "phash_int": -4.1212801404454093e+18, "collected_at": "2026-05-22T04:29:00.468387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1448_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1448_IMG.JPG", "file_name": "114-1448_IMG.JPG", "file_stem": "114-1448_IMG", "file_ext": ".jpg", "file_size": 2491840.0, "mtime": "2002-08-04T10:33:26+00:00", "mtime_ts": 1028457206.0, "ctime": "2002-08-04T10:33:26+00:00", "sha256_file": "74a169c005f0be0f6425b634cc4ecfb9a8f7a2571fb5bba1a923cada00ca7e81", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:33:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6748", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:33:27", "EXIF DateTimeDigitized": "2002:08:04 10:33:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141448", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79aa12d2ec2ebde8fe2a86d474bec6a7ab4c74b330bf5e74ef16f1abd6bd9899", "phash": "f9f822260e99ba8e", "dhash": "3b131352753672eb", "phash_int": -4.3455981719219546e+17, "collected_at": "2026-05-22T04:29:00.624277+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1449_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1449_IMG.JPG", "file_name": "114-1449_IMG.JPG", "file_stem": "114-1449_IMG", "file_ext": ".jpg", "file_size": 2252349.0, "mtime": "2002-08-04T10:33:34+00:00", "mtime_ts": 1028457214.0, "ctime": "2002-08-04T10:33:34+00:00", "sha256_file": "0d0dba7f06c6474f73824e49880f79498ff2471ad7ec458081f90ec33d736886", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:33:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6704", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:33:36", "EXIF DateTimeDigitized": "2002:08:04 10:33:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "889/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[67, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141449", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "151", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1778"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fbb925784cd6b4b53d734556ccde1a14a195b3220b8e80b611d52d47f5010b8c", "phash": "9c31e4b399362ea6", "dhash": "72d264387a4c2c24", "phash_int": -7.191715669913227e+18, "collected_at": "2026-05-22T04:29:00.631268+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1451_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1451_IMG.JPG", "file_name": "114-1451_IMG.JPG", "file_stem": "114-1451_IMG", "file_ext": ".jpg", "file_size": 1987498.0, "mtime": "2002-08-04T10:34:04+00:00", "mtime_ts": 1028457244.0, "ctime": "2002-08-04T10:34:04+00:00", "sha256_file": "d595e3ffa6cfd16446c37ff60a6a6df3555479b8c17dff22bcf86d8a76cc0b6e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:34:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6391", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:34:05", "EXIF DateTimeDigitized": "2002:08:04 10:34:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1227/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[138, 128, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141451", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1227"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3411a88fee86086fd778771721e3f54debf5029ca52741263a0999a78ca6a99", "phash": "d68dcdd9f9240136", "dhash": "72684c1c1ddccc0c", "phash_int": -2.986504641805287e+18, "collected_at": "2026-05-22T04:29:00.781242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1452_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1452_IMG.JPG", "file_name": "114-1452_IMG.JPG", "file_stem": "114-1452_IMG", "file_ext": ".jpg", "file_size": 2243536.0, "mtime": "2002-08-04T10:34:10+00:00", "mtime_ts": 1028457250.0, "ctime": "2002-08-04T10:34:10+00:00", "sha256_file": "d27fa5751c5885cf53ad81862ece769d668011a6f01a94f12c3b447e91e65597", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:34:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7707", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:34:12", "EXIF DateTimeDigitized": "2002:08:04 10:34:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1311/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141452", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "215", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2622"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d29fbb7be997903d1290545efe3b50a8148d8881e5694caed71c6590306ce0bd", "phash": "c9e31243fab8115f", "dhash": "e9cb862762c2b2b1", "phash_int": -3.8992527691942415e+18, "collected_at": "2026-05-22T04:29:00.793722+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1455_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1455_IMG.JPG", "file_name": "114-1455_IMG.JPG", "file_stem": "114-1455_IMG", "file_ext": ".jpg", "file_size": 1791181.0, "mtime": "2002-08-04T10:58:58+00:00", "mtime_ts": 1028458738.0, "ctime": "2002-08-04T10:58:58+00:00", "sha256_file": "ee75911fa3fc8915e37671d9a7bc84e4ec76a593293baf13dd7a4cd770d7a705", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7759", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:00", "EXIF DateTimeDigitized": "2002:08:04 10:59:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "337/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141455", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1348"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d18771b8a91dfde7a5ce1c122460f319f9be4464f221ba65a7aeb20883106e48", "phash": "d1513d166be4718e", "dhash": "92d09288c90c6653", "phash_int": -3.3638402801603415e+18, "collected_at": "2026-05-22T04:29:00.930723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1457_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1457_IMG.JPG", "file_name": "114-1457_IMG.JPG", "file_stem": "114-1457_IMG", "file_ext": ".jpg", "file_size": 2013660.0, "mtime": "2002-08-04T10:59:08+00:00", "mtime_ts": 1028458748.0, "ctime": "2002-08-04T10:59:08+00:00", "sha256_file": "f7e418617adf72e2a772b7f1d24165c04cc4c1a6ecd2014fc76debaccc2c4ad1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7678", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:10", "EXIF DateTimeDigitized": "2002:08:04 10:59:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1023/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141457", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2046"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "960902344343573d19255e6c8467f78fd69c68ce3779ae11daf4565cbaddb159", "phash": "d0caed63272137d4", "dhash": "81b188888cd89c0c", "phash_int": -3.401645558410955e+18, "collected_at": "2026-05-22T04:29:00.957726+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1460_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1460_IMG.JPG", "file_name": "114-1460_IMG.JPG", "file_stem": "114-1460_IMG", "file_ext": ".jpg", "file_size": 2170011.0, "mtime": "2002-08-04T10:59:28+00:00", "mtime_ts": 1028458768.0, "ctime": "2002-08-04T10:59:28+00:00", "sha256_file": "c45f4b88d09cc9093c9b856cb1238ff3e678b6da771fb6c29fe323c136cadce3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7982", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:29", "EXIF DateTimeDigitized": "2002:08:04 10:59:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141460", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "209", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36c70a1ecbcadb368b4d3eeab6aa3ef7e06cdeccb3045004c8a88646f924fb92", "phash": "9772d2838d532d2e", "dhash": "a82c257466666c62", "phash_int": -7.533727764183832e+18, "collected_at": "2026-05-22T04:29:01.181038+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1458_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1458_IMG.JPG", "file_name": "114-1458_IMG.JPG", "file_stem": "114-1458_IMG", "file_ext": ".jpg", "file_size": 2085147.0, "mtime": "2002-08-04T10:59:16+00:00", "mtime_ts": 1028458756.0, "ctime": "2002-08-04T10:59:16+00:00", "sha256_file": "1705f6d36237ddf55e69270c2454fd24bd40479c72cd8a48b136ce7b460a6c46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7441", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:17", "EXIF DateTimeDigitized": "2002:08:04 10:59:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "529/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141458", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2116"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cdf28f47f309ca150db785b424d615674856da30470fc5bc728dd90d9bfa461", "phash": "d3d9dec3082e3878", "dhash": "31989858d8c84dbc", "phash_int": -3.181266732523309e+18, "collected_at": "2026-05-22T04:29:01.209033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1463_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1463_IMG.JPG", "file_name": "114-1463_IMG.JPG", "file_stem": "114-1463_IMG", "file_ext": ".jpg", "file_size": 1939096.0, "mtime": "2002-08-04T10:59:44+00:00", "mtime_ts": 1028458784.0, "ctime": "2002-08-04T10:59:44+00:00", "sha256_file": "eb6b35a40499b8f0a114f34b444faf40a82ed082e2b6243a65d4d71e8fee7315", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7699", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:46", "EXIF DateTimeDigitized": "2002:08:04 10:59:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2629/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141463", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2629"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0a70ad4bca79fc6eb9f68893033d2144fc863e91220eeae386817796386412c", "phash": "d0c2f3d6b53c194c", "dhash": "898993b6a2a82292", "phash_int": -3.403890264849508e+18, "collected_at": "2026-05-22T04:29:01.284422+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1464_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1464_IMG.JPG", "file_name": "114-1464_IMG.JPG", "file_stem": "114-1464_IMG", "file_ext": ".jpg", "file_size": 1902477.0, "mtime": "2002-08-04T10:59:50+00:00", "mtime_ts": 1028458790.0, "ctime": "2002-08-04T10:59:50+00:00", "sha256_file": "fc66af701feee488d0108e6ba9c608e0bf348d64dd34ef1e81eda5ccb3d6ba3d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 10:59:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7670", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 10:59:51", "EXIF DateTimeDigitized": "2002:08:04 10:59:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1761/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141464", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1761"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72888ba3ecbed9048bffa6001b5e62b8011f24eada07e47af567638c3f46872c", "phash": "d0daedd32b860696", "dhash": "c890a48818d88c37", "phash_int": -3.397141477673532e+18, "collected_at": "2026-05-22T04:29:01.425490+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1466_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1466_IMG.JPG", "file_name": "114-1466_IMG.JPG", "file_stem": "114-1466_IMG", "file_ext": ".jpg", "file_size": 3179062.0, "mtime": "2002-08-04T15:52:24+00:00", "mtime_ts": 1028476344.0, "ctime": "2002-08-04T15:52:24+00:00", "sha256_file": "46a5474954a3c02e6cca1879284553d64721a5aea7c5abde96d046dd0193a49f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 15:52:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8227", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 15:52:25", "EXIF DateTimeDigitized": "2002:08:04 15:52:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141466", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dce014a65bd5b6b82367c7f3b96767dfbeeeea59d271131a4b244bf5b58059a9", "phash": "c930077b729d2ce5", "dhash": "f8bba6398a63f2e3", "phash_int": -3.94964864641865e+18, "collected_at": "2026-05-22T04:29:01.444486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1475_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1475_IMG.JPG", "file_name": "114-1475_IMG.JPG", "file_stem": "114-1475_IMG", "file_ext": ".jpg", "file_size": 1226110.0, "mtime": "2002-08-05T18:22:48+00:00", "mtime_ts": 1028571768.0, "ctime": "2002-08-05T18:22:48+00:00", "sha256_file": "46aba6f91fc24b07a36ba78d031d18f990b17dbdaeab8321c0b0560446bc6972", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:05 18:22:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4989", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:05 18:22:49", "EXIF DateTimeDigitized": "2002:08:05 18:22:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "27/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141475", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "120", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "675"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a58060964e9943953cdd58ea611ac2e46cabdae62f6defc36d7433c94bbb7a8f", "phash": "c4f737c89887883b", "dhash": "240743e393e3c494", "phash_int": -4.253869988336138e+18, "collected_at": "2026-05-22T04:29:01.563298+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1467_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1467_IMG.JPG", "file_name": "114-1467_IMG.JPG", "file_stem": "114-1467_IMG", "file_ext": ".jpg", "file_size": 2627068.0, "mtime": "2002-08-04T15:52:38+00:00", "mtime_ts": 1028476358.0, "ctime": "2002-08-04T15:52:38+00:00", "sha256_file": "ac5af22dc60c862a5f2e3f3cf57a69c465c5297abe6939a4e003f9ce61316074", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:04 15:52:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8089", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:04 15:52:39", "EXIF DateTimeDigitized": "2002:08:04 15:52:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1629/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141467", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "238", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3258"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "930b01dc6e1f0359b0717490cec7b9cd11b69e8c6df3ea0f0fdfcb2285899b07", "phash": "c348ec769753192e", "dhash": "c1a7f2cc4c188e62", "phash_int": -4.374987043901335e+18, "collected_at": "2026-05-22T04:29:01.583295+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1970_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1970_IMG.JPG", "file_name": "119-1970_IMG.JPG", "file_stem": "119-1970_IMG", "file_ext": ".jpg", "file_size": 1512452.0, "mtime": "2002-08-25T18:03:54+00:00", "mtime_ts": 1030298634.0, "ctime": "2002-08-25T18:03:54+00:00", "sha256_file": "1cef9aef0bc68bd8b372ebbbf881ab55102572a71d980b2ba2001aacf3d20505", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 18:03:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5432", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 18:03:56", "EXIF DateTimeDigitized": "2002:08:25 18:03:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191970", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a09decf1c0c95244163535444c54cf9b464918d4795555f2b8aa6e240e5562c1", "phash": "80937b704f1a7daa", "dhash": "d8c8e4e4e6b69dc3", "phash_int": -9.18185949298462e+18, "collected_at": "2026-05-22T04:29:01.660489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-04\\114-1476_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-04\\114-1476_IMG.JPG", "file_name": "114-1476_IMG.JPG", "file_stem": "114-1476_IMG", "file_ext": ".jpg", "file_size": 1232027.0, "mtime": "2002-08-05T18:22:54+00:00", "mtime_ts": 1028571774.0, "ctime": "2002-08-05T18:22:54+00:00", "sha256_file": "f2c41026c20449c10b6cf715d3ae3d43c73d6c0cbfda5be53ca12daf3764d15d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:05 18:22:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5104", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:05 18:22:55", "EXIF DateTimeDigitized": "2002:08:05 18:22:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "713/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[45, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141476", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "120", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "713"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "129c7d9636d5865ba8e273a8c6e95efe54367cf8e08deacd3c3c6621cfa936f3", "phash": "c4ef36c4d815c49d", "dhash": "064bc3d393c4dea5", "phash_int": -4.2561229037750344e+18, "collected_at": "2026-05-22T04:29:01.675569+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1971_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1971_IMG.JPG", "file_name": "119-1971_IMG.JPG", "file_stem": "119-1971_IMG", "file_ext": ".jpg", "file_size": 1559032.0, "mtime": "2002-08-25T18:04:04+00:00", "mtime_ts": 1030298644.0, "ctime": "2002-08-25T18:04:04+00:00", "sha256_file": "d196ea1789cf875386b707e540c757c6b94854cfdef31c105486d0d3d229d90d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 18:04:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5503", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 18:04:05", "EXIF DateTimeDigitized": "2002:08:25 18:04:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 217, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191971", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c68523dba6a798f0dcc5f066b56e5f8cf0d74d50ca445130905fccab13b5cbc", "phash": "80937b784f197d8a", "dhash": "98c8e0e6e6b695d3", "phash_int": -9.181859458624947e+18, "collected_at": "2026-05-22T04:29:01.809574+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1972_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1972_IMG.JPG", "file_name": "119-1972_IMG.JPG", "file_stem": "119-1972_IMG", "file_ext": ".jpg", "file_size": 2153740.0, "mtime": "2002-08-25T18:04:24+00:00", "mtime_ts": 1030298664.0, "ctime": "2002-08-25T18:04:24+00:00", "sha256_file": "dbc68610bb63701a250a5174066d6c692651127c7f39ec60e78b43735d0ac7f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 18:04:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5644", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 18:04:25", "EXIF DateTimeDigitized": "2002:08:25 18:04:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "198/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191972", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1584"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e267c2c12fdde5eac834fff3a121ec64386e3e53aa10a98c568427afa7a949e", "phash": "d4d393e33e88d60c", "dhash": "c848340416849030", "phash_int": -3.1109803133668664e+18, "collected_at": "2026-05-22T04:29:01.813572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1974_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1974_IMG.JPG", "file_name": "119-1974_IMG.JPG", "file_stem": "119-1974_IMG", "file_ext": ".jpg", "file_size": 2120688.0, "mtime": "2002-08-25T19:27:40+00:00", "mtime_ts": 1030303660.0, "ctime": "2002-08-25T19:27:40+00:00", "sha256_file": "5aa59ed7949c5dfb0e07da1df301e362265ea5f3ee971e78e529549363891b13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 19:27:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5070", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 19:27:42", "EXIF DateTimeDigitized": "2002:08:25 19:27:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191974", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a2d079bfce2785342d37232abbbaaaac88f957b05f92932cba12c9cdafb2436", "phash": "bf6a43d31425bd81", "dhash": "0d03072f3e1a8e3a", "phash_int": -4.653832691078809e+18, "collected_at": "2026-05-22T04:29:01.967401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1973_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1973_IMG.JPG", "file_name": "119-1973_IMG.JPG", "file_stem": "119-1973_IMG", "file_ext": ".jpg", "file_size": 2464981.0, "mtime": "2002-08-25T18:04:30+00:00", "mtime_ts": 1030298670.0, "ctime": "2002-08-25T18:04:30+00:00", "sha256_file": "b3c5c374f809a6d60972244d3aaf4fac1d95a2464752506f047a26bd33762b46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 18:04:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6043", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 18:04:32", "EXIF DateTimeDigitized": "2002:08:25 18:04:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "77/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191973", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1925"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8bbe69eed8f88aff6c21e81323b18189a049191f79ee738403cc2cc6b869c6d", "phash": "f4d393f1350ac15a", "dhash": "584024040490b10e", "phash_int": -8.051372441828881e+17, "collected_at": "2026-05-22T04:29:01.985402+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-27\\IMG_0211.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-27\\IMG_0211.JPG", "file_name": "IMG_0211.JPG", "file_stem": "IMG_0211", "file_ext": ".jpg", "file_size": 437349.0, "mtime": "2002-08-27T19:51:40+00:00", "mtime_ts": 1030477900.0, "ctime": "2002-08-27T19:51:40+00:00", "sha256_file": "dd026d7c6b2d52958d8c736540f09bb7710aa3a705b8673ffcd216963020ca8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:27 19:51:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3342", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:08:27 19:51:42", "EXIF DateTimeDigitized": "2002:08:27 19:51:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 139, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020211", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7cd6eaf1a079f2f1dbaea3e5d3657cc6c54e6d3fcc5f76bae4b640ac7d8821cc", "phash": "db8a6c6a928e2d3a", "dhash": "4d0e38f8b9020000", "phash_int": -2.6271682276361385e+18, "collected_at": "2026-05-22T04:29:02.061784+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-29\\IMG_0212.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-29\\IMG_0212.JPG", "file_name": "IMG_0212.JPG", "file_stem": "IMG_0212", "file_ext": ".jpg", "file_size": 469557.0, "mtime": "2002-08-29T15:32:12+00:00", "mtime_ts": 1030635132.0, "ctime": "2002-08-29T15:32:12+00:00", "sha256_file": "8e7d79a9faf724b7d2727f6602550312b3cab811e4540e2354fe69dca6f12813", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:29 15:32:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5668", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:08:29 15:32:14", "EXIF DateTimeDigitized": "2002:08:29 15:32:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 155, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020212", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4126"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db59e719899db82984a9dc1f5723253703b2e60fcfa3308af6418e9711c315d4", "phash": "ea2716cac5911a7d", "dhash": "ee6f2fd253e9b9b1", "phash_int": -1.5742644845888732e+18, "collected_at": "2026-05-22T04:29:02.100788+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\08\\08-25\\119-1975_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\08\\08-25\\119-1975_IMG.JPG", "file_name": "119-1975_IMG.JPG", "file_stem": "119-1975_IMG", "file_ext": ".jpg", "file_size": 1802610.0, "mtime": "2002-08-25T19:28:42+00:00", "mtime_ts": 1030303722.0, "ctime": "2002-08-25T19:28:42+00:00", "sha256_file": "f945f5f6cbb42657e3065a3885e6d51e9f01ed9d1133bd8d6ccbb18c599db039", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:25 19:28:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5207", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:25 19:28:43", "EXIF DateTimeDigitized": "2002:08:25 19:28:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191975", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73775ac4f822bd5105b9c2c300af1742a2f036da9c0777f72e1929bccefcd04b", "phash": "c54bd41e2de8720f", "dhash": "d1d1c1c34684a6c6", "phash_int": -4.2300541989001334e+18, "collected_at": "2026-05-22T04:29:02.105787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-02\\IMG_0213.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-02\\IMG_0213.JPG", "file_name": "IMG_0213.JPG", "file_stem": "IMG_0213", "file_ext": ".jpg", "file_size": 712082.0, "mtime": "2002-09-02T10:20:36+00:00", "mtime_ts": 1030962036.0, "ctime": "2002-09-02T10:20:36+00:00", "sha256_file": "b5a9c9efc5c048c0d2384dffb3899aaa76cdbb83ae3051faaa6780ecbefe76e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:02 10:20:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6556", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:02 10:20:38", "EXIF DateTimeDigitized": "2002:09:02 10:20:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020213", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "297", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "487ef408ab86a3c0360e63e6a8fd21c9108d6c607d3b6fd1ce79b454f508a4f7", "phash": "fd7002ed9e179924", "dhash": "94343d3453526aea", "phash_int": -1.8464436513933898e+17, "collected_at": "2026-05-22T04:29:02.181220+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-03\\IMG_0214.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-03\\IMG_0214.JPG", "file_name": "IMG_0214.JPG", "file_stem": "IMG_0214", "file_ext": ".jpg", "file_size": 659733.0, "mtime": "2002-09-03T08:09:40+00:00", "mtime_ts": 1031040580.0, "ctime": "2002-09-03T08:09:40+00:00", "sha256_file": "ce3b887e4e192e5b30b8efe0b125f8438a8b16cfd5bcae61066cb04e74a435b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:03 08:09:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7123", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:03 08:09:41", "EXIF DateTimeDigitized": "2002:09:03 08:09:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020214", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6802eeeb88cf5693af46481b22d61a2e7ce48a346e859254de2e4cf09546ba0a", "phash": "f091d0adc69e8fd0", "dhash": "b898d86d8b32348c", "phash_int": -1.1118781882036019e+18, "collected_at": "2026-05-22T04:29:02.182227+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-03\\IMG_0215.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-03\\IMG_0215.JPG", "file_name": "IMG_0215.JPG", "file_stem": "IMG_0215", "file_ext": ".jpg", "file_size": 522924.0, "mtime": "2002-09-03T08:09:56+00:00", "mtime_ts": 1031040596.0, "ctime": "2002-09-03T08:09:56+00:00", "sha256_file": "91e3d6164cb698632c5704193fb34c82cd73cb4e7547d7095899e528cffcdf5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:03 08:09:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5732", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:03 08:09:58", "EXIF DateTimeDigitized": "2002:09:03 08:09:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020215", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1890"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "530203e1549eac9c4c79aafd0fcb05f0ac11907ad2357ae47db74a019fb7665b", "phash": "bbe2c772611c2ac3", "dhash": "5c1d753f9b9d78d0", "phash_int": -4.908141349810984e+18, "collected_at": "2026-05-22T04:29:02.234347+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-03\\IMG_0216.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-03\\IMG_0216.JPG", "file_name": "IMG_0216.JPG", "file_stem": "IMG_0216", "file_ext": ".jpg", "file_size": 358240.0, "mtime": "2002-09-03T15:31:12+00:00", "mtime_ts": 1031067072.0, "ctime": "2002-09-03T15:31:12+00:00", "sha256_file": "e4df2138c97016df32b0551db222ad2814ebdbdad0fd8eab6f8949cbae5fcbaf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:03 15:31:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3839", "EXIF ExposureTime": "1/100", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:03 15:31:14", "EXIF DateTimeDigitized": "2002:09:03 15:31:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020216", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f212f3092cfb1a212a1e125bf45b9c06b92ba3457eaa0c395462544cf80c4546", "phash": "e4848a5b71e50eee", "dhash": "daa5e68e9e0e8e3e", "phash_int": -1.9803058107786816e+18, "collected_at": "2026-05-22T04:29:02.244344+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0218.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0218.JPG", "file_name": "IMG_0218.JPG", "file_stem": "IMG_0218", "file_ext": ".jpg", "file_size": 484860.0, "mtime": "2002-09-04T09:18:58+00:00", "mtime_ts": 1031131138.0, "ctime": "2002-09-04T09:18:58+00:00", "sha256_file": "7eeeabc7a6440aff9a992c4ac8ae37a40b3abaac6c14d5d83a1d6a3ce783d18a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 09:18:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5549", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 09:18:59", "EXIF DateTimeDigitized": "2002:09:04 09:18:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020218", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1807"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "679af8ed2df399dcdcc9c185771afaec4f8ba9c68edb5f7507687f96aeccbe2b", "phash": "d069dd4dcd860f91", "dhash": "8393858591b4b4f8", "phash_int": -3.4289663150355866e+18, "collected_at": "2026-05-22T04:29:02.304343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0217.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0217.JPG", "file_name": "IMG_0217.JPG", "file_stem": "IMG_0217", "file_ext": ".jpg", "file_size": 522704.0, "mtime": "2002-09-04T09:18:16+00:00", "mtime_ts": 1031131096.0, "ctime": "2002-09-04T09:18:16+00:00", "sha256_file": "a79b13796cd79e53ca33a5667ffaf9b4fff037a6669df084b7e6e57183e0817a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 09:18:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6803", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 09:18:17", "EXIF DateTimeDigitized": "2002:09:04 09:18:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020217", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2063"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61cd74679071cf3ea9ca864735b65f1edf35b91c3f8e15b02e3fafd4e1d686bd", "phash": "967ed4916e84c74c", "dhash": "34196567b5dcfa6c", "phash_int": -7.602405399865276e+18, "collected_at": "2026-05-22T04:29:02.306340+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0219.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0219.JPG", "file_name": "IMG_0219.JPG", "file_stem": "IMG_0219", "file_ext": ".jpg", "file_size": 401096.0, "mtime": "2002-09-04T09:19:16+00:00", "mtime_ts": 1031131156.0, "ctime": "2002-09-04T09:19:16+00:00", "sha256_file": "cfcf15c5fcaf3f1b0cbea3ca5ccffd5c75b1da8e0c7b113ab61513d030e36617", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 09:19:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4312", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 09:19:18", "EXIF DateTimeDigitized": "2002:09:04 09:19:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020219", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "223", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2041"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "669d33a93e3e0ac5f01b25b037977b10848bcd54c925737c1b457ed63e7e8ada", "phash": "a5d14b5d9a92994d", "dhash": "8a8e969e360e2f6f", "phash_int": -6.498329921921575e+18, "collected_at": "2026-05-22T04:29:02.379598+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0220.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0220.JPG", "file_name": "IMG_0220.JPG", "file_stem": "IMG_0220", "file_ext": ".jpg", "file_size": 503114.0, "mtime": "2002-09-04T09:22:32+00:00", "mtime_ts": 1031131352.0, "ctime": "2002-09-04T09:22:32+00:00", "sha256_file": "bbaaba3384d72e226f5007072beb133b6d16b21e5ba397f18bc184ce5acbbd2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 09:22:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5897", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 09:22:34", "EXIF DateTimeDigitized": "2002:09:04 09:22:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[6, 73, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020220", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2060"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "167b4209ac7d94b877914806cb5421fec756318c18ad481b69669b8285992394", "phash": "f8b999e234d68c61", "dhash": "313313a48c8a8990", "phash_int": -5.242186847838176e+17, "collected_at": "2026-05-22T04:29:02.383703+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0221.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0221.JPG", "file_name": "IMG_0221.JPG", "file_stem": "IMG_0221", "file_ext": ".jpg", "file_size": 842085.0, "mtime": "2002-09-04T13:13:32+00:00", "mtime_ts": 1031145212.0, "ctime": "2002-09-04T13:13:32+00:00", "sha256_file": "8eb37905385e6a8b87ea048c5a6e98971d2495e7d32a524ded84d7ea4e9cbedc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 13:13:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6491", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 13:13:33", "EXIF DateTimeDigitized": "2002:09:04 13:13:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020221", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5c81350fb1f7c1a85da8ab05f21ada1e15c7333986bb6406dd6f8154d87ea28", "phash": "a34bdc2c51cab5a3", "dhash": "f673cbc94b7fe5ce", "phash_int": -6.680003539365088e+18, "collected_at": "2026-05-22T04:29:02.467361+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0222.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0222.JPG", "file_name": "IMG_0222.JPG", "file_stem": "IMG_0222", "file_ext": ".jpg", "file_size": 613218.0, "mtime": "2002-09-04T13:15:00+00:00", "mtime_ts": 1031145300.0, "ctime": "2002-09-04T13:15:00+00:00", "sha256_file": "50268db01cbe0bd9c2623f3bcdfcd152364c230d091d30c0231fdf8e56ee381f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 13:15:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6468", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 13:15:01", "EXIF DateTimeDigitized": "2002:09:04 13:15:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020222", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3608c525667a85186d5165e2bcb7862ef17273ae30c3258ccf8eb17850e0bbfb", "phash": "929ba180b471fbd3", "dhash": "9a6959aeaca5cdb8", "phash_int": -7.882529148626666e+18, "collected_at": "2026-05-22T04:29:02.480440+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0223.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0223.JPG", "file_name": "IMG_0223.JPG", "file_stem": "IMG_0223", "file_ext": ".jpg", "file_size": 509995.0, "mtime": "2002-09-04T18:19:40+00:00", "mtime_ts": 1031163580.0, "ctime": "2002-09-04T18:19:40+00:00", "sha256_file": "8f7b27eb6541a0c7e5bf05da14c9e2bcb3715d190ec6f5d168dc9377e74f6d95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 18:19:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5890", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 18:19:41", "EXIF DateTimeDigitized": "2002:09:04 18:19:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020223", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "14923"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "086e201498b9d929b2a983e764d045da35b07f6e6eae30a7a873e053a554e0ed", "phash": "8ccc6db3c149b2f1", "dhash": "e6e6e6e6fcecb7b7", "phash_int": -8.30113939434126e+18, "collected_at": "2026-05-22T04:29:02.507440+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-04\\IMG_0224.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-04\\IMG_0224.JPG", "file_name": "IMG_0224.JPG", "file_stem": "IMG_0224", "file_ext": ".jpg", "file_size": 547522.0, "mtime": "2002-09-04T20:45:38+00:00", "mtime_ts": 1031172338.0, "ctime": "2002-09-04T20:45:38+00:00", "sha256_file": "629dc6518f7f89464beae524378a703123b56d6fd7136f103f82025c058673e5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:04 20:45:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5955", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:04 20:45:40", "EXIF DateTimeDigitized": "2002:09:04 20:45:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1413, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020224", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91d6533db34777147d9aa8b543bc6edc8fc4d0915e4ab87ff41745cfbef02ca4", "phash": "d44ab1de27845b69", "dhash": "f0a011e63230a49a", "phash_int": -3.149509421688399e+18, "collected_at": "2026-05-22T04:29:02.517445+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0225.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0225.JPG", "file_name": "IMG_0225.JPG", "file_stem": "IMG_0225", "file_ext": ".jpg", "file_size": 581544.0, "mtime": "2002-09-05T10:27:24+00:00", "mtime_ts": 1031221644.0, "ctime": "2002-09-05T10:27:24+00:00", "sha256_file": "da8cc50845afb9f2c16612649dc91ec3ac8bc25e5f998030c6902b9f713c5cb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:27:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6692", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:27:25", "EXIF DateTimeDigitized": "2002:09:05 10:27:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020225", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fec981529321cd6416de4a60e4d1afb63ef88088ddc8d28ddf294fd7738f181a", "phash": "e995e0f28e751d42", "dhash": "c89ab266a99b0723", "phash_int": -1.6151375589657075e+18, "collected_at": "2026-05-22T04:29:02.593444+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0226.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0226.JPG", "file_name": "IMG_0226.JPG", "file_stem": "IMG_0226", "file_ext": ".jpg", "file_size": 535023.0, "mtime": "2002-09-05T10:27:36+00:00", "mtime_ts": 1031221656.0, "ctime": "2002-09-05T10:27:36+00:00", "sha256_file": "4a7bb8d7fb42778630fce16c88ffda515364b785abd5b26b34e211e31960a9f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:27:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6845", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:27:37", "EXIF DateTimeDigitized": "2002:09:05 10:27:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020226", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "21935"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10e589e9b268eaae8bdc7a7a7902bd67b955f5e48bc17623f958124071d7e742", "phash": "8adb27ddd20b3449", "dhash": "5975332970366f8f", "phash_int": -8.441109242910658e+18, "collected_at": "2026-05-22T04:29:02.601443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0227.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0227.JPG", "file_name": "IMG_0227.JPG", "file_stem": "IMG_0227", "file_ext": ".jpg", "file_size": 556295.0, "mtime": "2002-09-05T10:36:22+00:00", "mtime_ts": 1031222182.0, "ctime": "2002-09-05T10:36:22+00:00", "sha256_file": "682a842b2820c2f86fc25ba814b84ddd55ada7143d4a52adb053ae505e0b05e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:36:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6858", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:36:23", "EXIF DateTimeDigitized": "2002:09:05 10:36:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020227", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3468"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "593f6e79c3c0f444676e16556eb522be5498ada03ac94f9c5ac172678c85c272", "phash": "c1fceabe86b89111", "dhash": "6687dac6c4d9d9c0", "phash_int": -4.468438626233446e+18, "collected_at": "2026-05-22T04:29:02.679527+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0228.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0228.JPG", "file_name": "IMG_0228.JPG", "file_stem": "IMG_0228", "file_ext": ".jpg", "file_size": 435256.0, "mtime": "2002-09-05T10:50:54+00:00", "mtime_ts": 1031223054.0, "ctime": "2002-09-05T10:50:54+00:00", "sha256_file": "5ec7225e359caba12009289e6921b68e70172f5866041dc088e7e9ea1dee9b1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:50:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3034", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:50:56", "EXIF DateTimeDigitized": "2002:09:05 10:50:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020228", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb1c3e86dd6f1f8793d6645a9a6584f1230af25f98c30609c28c1f92a66852ec", "phash": "83c9763b0983567b", "dhash": "e091c4f3732ccc04", "phash_int": -8.950492788487399e+18, "collected_at": "2026-05-22T04:29:02.682606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0230.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0230.JPG", "file_name": "IMG_0230.JPG", "file_stem": "IMG_0230", "file_ext": ".jpg", "file_size": 389991.0, "mtime": "2002-09-05T10:55:56+00:00", "mtime_ts": 1031223356.0, "ctime": "2002-09-05T10:55:56+00:00", "sha256_file": "698caddfabe2e61bb7a6a0f3bf6db37617010a9b5440dfe3b46ebd99f07a9529", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:55:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6208", "EXIF ExposureTime": "1/100", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:55:58", "EXIF DateTimeDigitized": "2002:09:05 10:55:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020230", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "276", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4285"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f859a0b367c95cd799d851b4553ff5bf5a8ef9db2e075f5deab5f70373f0bd40", "phash": "849abdbb61b2a86c", "dhash": "3be0ac8cc2db5e66", "phash_int": -8.891585901793991e+18, "collected_at": "2026-05-22T04:29:02.744609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0229.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0229.JPG", "file_name": "IMG_0229.JPG", "file_stem": "IMG_0229", "file_ext": ".jpg", "file_size": 603008.0, "mtime": "2002-09-05T10:55:40+00:00", "mtime_ts": 1031223340.0, "ctime": "2002-09-05T10:55:40+00:00", "sha256_file": "a00bd41a46dc1380b62f5abd1e5bd3e5e1fa3b584741e4293fe8d4d9980902ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:55:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4933", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:55:41", "EXIF DateTimeDigitized": "2002:09:05 10:55:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020229", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09d794ccffabbf8f1f7c9ebd20917c658873c253e1315af245a3a3bb54b6f21b", "phash": "8086efedd510396b", "dhash": "a0e7d5bce1ade110", "phash_int": -9.18539058521465e+18, "collected_at": "2026-05-22T04:29:02.754611+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0231.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0231.JPG", "file_name": "IMG_0231.JPG", "file_stem": "IMG_0231", "file_ext": ".jpg", "file_size": 511991.0, "mtime": "2002-09-05T10:56:20+00:00", "mtime_ts": 1031223380.0, "ctime": "2002-09-05T10:56:20+00:00", "sha256_file": "58a67f581ecce495a7d5564f32fc6bea65618f11b88bbbad749bc61b1190a306", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 10:56:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5632", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 10:56:21", "EXIF DateTimeDigitized": "2002:09:05 10:56:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020231", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dccfd56f058e8255db8454a48916c6777f636fdf8b6091434f7dd506cf1c02d", "phash": "918faf92e635601e", "dhash": "def2b2d4bc9c9a8e", "phash_int": -7.957948971078033e+18, "collected_at": "2026-05-22T04:29:02.809614+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0232.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0232.JPG", "file_name": "IMG_0232.JPG", "file_stem": "IMG_0232", "file_ext": ".jpg", "file_size": 611042.0, "mtime": "2002-09-05T11:00:22+00:00", "mtime_ts": 1031223622.0, "ctime": "2002-09-05T11:00:22+00:00", "sha256_file": "091caa140db43dd35ede617475d43353d83b60fa20f70531b54815f3e9c90f0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:00:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4308", "EXIF ExposureTime": "1/250", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:00:24", "EXIF DateTimeDigitized": "2002:09:05 11:00:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020232", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "721b04321057e10376ac32b43682bb18e427171d1d59f58257a7fbf3bfa7a56e", "phash": "e788d31f4178ef80", "dhash": "20e487036020040c", "phash_int": -1.7629271229196575e+18, "collected_at": "2026-05-22T04:29:02.860010+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0233.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0233.JPG", "file_name": "IMG_0233.JPG", "file_stem": "IMG_0233", "file_ext": ".jpg", "file_size": 576709.0, "mtime": "2002-09-05T11:06:12+00:00", "mtime_ts": 1031223972.0, "ctime": "2002-09-05T11:06:12+00:00", "sha256_file": "1a372747c7763451e1510f6ecce3f23b67b268044e260a7417e421d429a1f055", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:06:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3855", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:06:13", "EXIF DateTimeDigitized": "2002:09:05 11:06:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020233", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65aacfba19a5f6863dd013dbeb78a39115f1151741dfdc313ea189cc6dbb349f", "phash": "e4f28f1512786d2b", "dhash": "e0c2878cee86b6e6", "phash_int": -1.9493383680310362e+18, "collected_at": "2026-05-22T04:29:02.864007+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0234.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0234.JPG", "file_name": "IMG_0234.JPG", "file_stem": "IMG_0234", "file_ext": ".jpg", "file_size": 588276.0, "mtime": "2002-09-05T11:09:34+00:00", "mtime_ts": 1031224174.0, "ctime": "2002-09-05T11:09:34+00:00", "sha256_file": "e0ee5e92163d0b06525b41c061fe6b6c409f30baf059b088f7fa3afa5f59cebe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:09:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4054", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:09:35", "EXIF DateTimeDigitized": "2002:09:05 11:09:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020234", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4849771d153030930e1c52748313523721cd0e2a366a6c40fc54a62091c7c106", "phash": "85c772f8f92d06c2", "dhash": "e0d0ea5292ece0f0", "phash_int": -8.806944132641782e+18, "collected_at": "2026-05-22T04:29:02.945126+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0235.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0235.JPG", "file_name": "IMG_0235.JPG", "file_stem": "IMG_0235", "file_ext": ".jpg", "file_size": 597376.0, "mtime": "2002-09-05T11:09:50+00:00", "mtime_ts": 1031224190.0, "ctime": "2002-09-05T11:09:50+00:00", "sha256_file": "f7618c57ad2483a1a5a8a224f0266c02e7da2b9b9bb59e2b340cf5e79ad74753", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:09:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4790", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:09:52", "EXIF DateTimeDigitized": "2002:09:05 11:09:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020235", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4aeca52d49cfbc5de0e823f5df66f72ccc094b435334a347b098554d18217767", "phash": "e1bc82971c7e60ad", "dhash": "f0ca872a724bca8a", "phash_int": -2.1807245340244457e+18, "collected_at": "2026-05-22T04:29:02.953230+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0236.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0236.JPG", "file_name": "IMG_0236.JPG", "file_stem": "IMG_0236", "file_ext": ".jpg", "file_size": 526307.0, "mtime": "2002-09-05T11:10:08+00:00", "mtime_ts": 1031224208.0, "ctime": "2002-09-05T11:10:08+00:00", "sha256_file": "83abefdf86016f6c4eabea55eb1327150d6231aa7bb4c93aa7626ec8e167b3d5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:10:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4511", "EXIF ExposureTime": "1/640", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:10:10", "EXIF DateTimeDigitized": "2002:09:05 11:10:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020236", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a249548de37f26eb4efdefe675988ab51df0233de78d93fa30dad7fe568481a8", "phash": "828081c27f3fb7da", "dhash": "d8f0bc0ea9ed626c", "phash_int": -9.043085379401435e+18, "collected_at": "2026-05-22T04:29:02.999234+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0237.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0237.JPG", "file_name": "IMG_0237.JPG", "file_stem": "IMG_0237", "file_ext": ".jpg", "file_size": 432005.0, "mtime": "2002-09-05T11:11:12+00:00", "mtime_ts": 1031224272.0, "ctime": "2002-09-05T11:11:12+00:00", "sha256_file": "f98095bbfdf60fc9d158a53211999366d44cca24977cdc2ccb53a4f47479743b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:11:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4274", "EXIF ExposureTime": "1/125", "EXIF FNumber": "10", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:11:13", "EXIF DateTimeDigitized": "2002:09:05 11:11:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "108853/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020237", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "213", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4045"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05258369ffce979af7d5360eed22d224d11bd6bb58cc58e46f09e18f8e2247d1", "phash": "e99a966d491336e4", "dhash": "481249fb13134080", "phash_int": -1.6138121203373038e+18, "collected_at": "2026-05-22T04:29:03.002231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0239.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0239.JPG", "file_name": "IMG_0239.JPG", "file_stem": "IMG_0239", "file_ext": ".jpg", "file_size": 558194.0, "mtime": "2002-09-05T11:12:24+00:00", "mtime_ts": 1031224344.0, "ctime": "2002-09-05T11:12:24+00:00", "sha256_file": "6fd2a9323cd8db64995789e40b876d9e0c5010865178663e16e9aebc750f042f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:12:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5009", "EXIF ExposureTime": "1/250", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:12:26", "EXIF DateTimeDigitized": "2002:09:05 11:12:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020239", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0372a9b859895f0c1dde894c53c657acf4676941fdb1f41bdd19e532167957a", "phash": "c6ed39d1522ca15b", "dhash": "84426646e8d6d4ed", "phash_int": -4.11256731352979e+18, "collected_at": "2026-05-22T04:29:03.097428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0238.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0238.JPG", "file_name": "IMG_0238.JPG", "file_stem": "IMG_0238", "file_ext": ".jpg", "file_size": 657441.0, "mtime": "2002-09-05T11:12:00+00:00", "mtime_ts": 1031224320.0, "ctime": "2002-09-05T11:12:00+00:00", "sha256_file": "9f0b066d342110b9e88028954ed8ebe4c69f7b780efb74a59cba6906a0e49382", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:12:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4983", "EXIF ExposureTime": "1/200", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:12:01", "EXIF DateTimeDigitized": "2002:09:05 11:12:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020238", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0639eb4958060d5dd27393942eb154a41e09b5fea8db37c768c6bec1f665bab", "phash": "f1b9c1830e3a3ce3", "dhash": "9494943424a0c8c0", "phash_int": -1.0285782712538734e+18, "collected_at": "2026-05-22T04:29:03.100428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0241.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0241.JPG", "file_name": "IMG_0241.JPG", "file_stem": "IMG_0241", "file_ext": ".jpg", "file_size": 573143.0, "mtime": "2002-09-05T11:14:08+00:00", "mtime_ts": 1031224448.0, "ctime": "2002-09-05T11:14:08+00:00", "sha256_file": "c036bb58cc6e6f2a2dd25587ba310c48e1f234d522c70ca631b838e8c73ec314", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:14:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5629", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:14:09", "EXIF DateTimeDigitized": "2002:09:05 11:14:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020241", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b0c2fc442cba4bdae7cdbb22eb066dbd77d59171011cb7bc2ff1a10c816f5ee", "phash": "e4fd33a6ce5a40a4", "dhash": "cc9692a0e68e9484", "phash_int": -1.9463426724345772e+18, "collected_at": "2026-05-22T04:29:03.161433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0240.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0240.JPG", "file_name": "IMG_0240.JPG", "file_stem": "IMG_0240", "file_ext": ".jpg", "file_size": 521312.0, "mtime": "2002-09-05T11:13:52+00:00", "mtime_ts": 1031224432.0, "ctime": "2002-09-05T11:13:52+00:00", "sha256_file": "456c25c85d63017ac9f62789001f9769274cd1e777505832cd3adb7216d34681", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 11:13:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5541", "EXIF ExposureTime": "1/160", "EXIF FNumber": "10", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 11:13:54", "EXIF DateTimeDigitized": "2002:09:05 11:13:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "108853/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020240", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "213", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "054260cafc516b22dab2ad36bf9e14406768ffb2c0532b126f7ac5e522d899b6", "phash": "c5d52ed5ac26ac89", "dhash": "76900b46d2f0e6a7", "phash_int": -4.191392382947251e+18, "collected_at": "2026-05-22T04:29:03.171429+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0242.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0242.JPG", "file_name": "IMG_0242.JPG", "file_stem": "IMG_0242", "file_ext": ".jpg", "file_size": 495019.0, "mtime": "2002-09-05T13:45:18+00:00", "mtime_ts": 1031233518.0, "ctime": "2002-09-05T13:45:18+00:00", "sha256_file": "371aa7f926df05606d88accb132cb74a37dcce945325a59a90b05751c6832660", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 13:45:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3280", "EXIF ExposureTime": "1/640", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 13:45:19", "EXIF DateTimeDigitized": "2002:09:05 13:45:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020242", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55e779b7e6b891a7c737487b8c220df6d95ac83cb1cc14c0e6ee932e12bf3dbe", "phash": "83c7fe7c0f0382f0", "dhash": "c002c0f013a0f0f1", "phash_int": -8.950905925594283e+18, "collected_at": "2026-05-22T04:29:03.251439+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0243.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0243.JPG", "file_name": "IMG_0243.JPG", "file_stem": "IMG_0243", "file_ext": ".jpg", "file_size": 572382.0, "mtime": "2002-09-05T13:45:34+00:00", "mtime_ts": 1031233534.0, "ctime": "2002-09-05T13:45:34+00:00", "sha256_file": "1354741a0c1f527d285ff8fc6275f3376ef812c65f23bcee14d9e480f563652d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 13:45:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3215", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 13:45:35", "EXIF DateTimeDigitized": "2002:09:05 13:45:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020243", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "345", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11809435a18a32d577d8dc431f8954c0dd23667a4f38f1b4a357ea856cf0863d", "phash": "e1ac98d3676c1cb8", "dhash": "e0a8b7cbcab0a0c8", "phash_int": -2.1852036854408732e+18, "collected_at": "2026-05-22T04:29:03.273432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0244.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0244.JPG", "file_name": "IMG_0244.JPG", "file_stem": "IMG_0244", "file_ext": ".jpg", "file_size": 404288.0, "mtime": "2002-09-05T13:46:08+00:00", "mtime_ts": 1031233568.0, "ctime": "2002-09-05T13:46:08+00:00", "sha256_file": "fe7f49ba9d54f5fb88faa144ad5102eca94fbcdecc8ea5a48f2e7c72e619ce7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 13:46:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3819", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 13:46:09", "EXIF DateTimeDigitized": "2002:09:05 13:46:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "1623/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020244", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "203", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6ed82a37b31a3f5642f04350645d60602e48be10da59fb7e51964e4b7e9f3445", "phash": "c3d3bcbd2c0342d3", "dhash": "0000c0d1001108c7", "phash_int": -4.335914495554404e+18, "collected_at": "2026-05-22T04:29:03.290707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0245.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0245.JPG", "file_name": "IMG_0245.JPG", "file_stem": "IMG_0245", "file_ext": ".jpg", "file_size": 521838.0, "mtime": "2002-09-05T13:46:18+00:00", "mtime_ts": 1031233578.0, "ctime": "2002-09-05T13:46:18+00:00", "sha256_file": "02bb302f6859dc371953c0944de42e908a343790238f5d0d7f8048eedddb7c7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 13:46:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3804", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 13:46:20", "EXIF DateTimeDigitized": "2002:09:05 13:46:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1623/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020245", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "203", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bde4c0230b560cc092099bb7ee3a4dba4da46b418a78434a3812f1f1dc997d11", "phash": "c499a69b734c718e", "dhash": "10808282c0a0a48c", "phash_int": -4.2802067842544143e+18, "collected_at": "2026-05-22T04:29:03.321808+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0246.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0246.JPG", "file_name": "IMG_0246.JPG", "file_stem": "IMG_0246", "file_ext": ".jpg", "file_size": 402900.0, "mtime": "2002-09-05T15:44:22+00:00", "mtime_ts": 1031240662.0, "ctime": "2002-09-05T15:44:22+00:00", "sha256_file": "fb59cb7c9b7c7416edb45999f52ee76fed0779c16ee4ac48618a4194f23bbd67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 15:44:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3380", "EXIF ExposureTime": "1/125", "EXIF FNumber": "11", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 15:44:24", "EXIF DateTimeDigitized": "2002:09:05 15:44:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "453435/65536", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020246", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "221", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf35bedbded5dbf018d37a68bc4edd84b4a5f7a62d5871f5847be886e9de4d96", "phash": "e49b1be4a2136ea6", "dhash": "c0b0e0ba870088a1", "phash_int": -1.9739533428861545e+18, "collected_at": "2026-05-22T04:29:03.337812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0247.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0247.JPG", "file_name": "IMG_0247.JPG", "file_stem": "IMG_0247", "file_ext": ".jpg", "file_size": 477885.0, "mtime": "2002-09-05T15:44:40+00:00", "mtime_ts": 1031240680.0, "ctime": "2002-09-05T15:44:40+00:00", "sha256_file": "5611d4c453e6ddbb899162f68b5b693ba7604ad8e55960733ead9fa31bb162af", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 15:44:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3454", "EXIF ExposureTime": "1/800", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 15:44:41", "EXIF DateTimeDigitized": "2002:09:05 15:44:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020247", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ba52a5fefe6cdb843d3727a5681c716be71d2df4cfd4aada443336e4e4e4165", "phash": "c8d8a71710c8e7b7", "dhash": "e08043b1984470d4", "phash_int": -3.9742429536467743e+18, "collected_at": "2026-05-22T04:29:03.382811+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0248.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0248.JPG", "file_name": "IMG_0248.JPG", "file_stem": "IMG_0248", "file_ext": ".jpg", "file_size": 469425.0, "mtime": "2002-09-05T15:44:54+00:00", "mtime_ts": 1031240694.0, "ctime": "2002-09-05T15:44:54+00:00", "sha256_file": "8b579c7d55d49e63d3a563d64269ded1b3f551f4dd9978abc77fd3990d745637", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 15:44:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3771", "EXIF ExposureTime": "1/640", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 15:44:55", "EXIF DateTimeDigitized": "2002:09:05 15:44:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020248", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8ab7965f1b9f329229580e694f994b1446bffaf54f781b600a33ece4be90f1b", "phash": "88db672718d863a7", "dhash": "f0e0c9b133f4ece8", "phash_int": -8.585154847033499e+18, "collected_at": "2026-05-22T04:29:03.407815+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0249.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0249.JPG", "file_name": "IMG_0249.JPG", "file_stem": "IMG_0249", "file_ext": ".jpg", "file_size": 480856.0, "mtime": "2002-09-05T15:45:30+00:00", "mtime_ts": 1031240730.0, "ctime": "2002-09-05T15:45:30+00:00", "sha256_file": "46dea5c410a3e1429d13688510a89295951f4befef12b7ccccc9295b84d6f3bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 15:45:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3993", "EXIF ExposureTime": "1/640", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 15:45:31", "EXIF DateTimeDigitized": "2002:09:05 15:45:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020249", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebc103b4b1e5313b624a274876e76abc2cc35b9a02cf773f40b0ee29ed7179b0", "phash": "a4de59533ea449ca", "dhash": "f0f8a6c6658eccb2", "phash_int": -6.566712992591493e+18, "collected_at": "2026-05-22T04:29:03.456814+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0250.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0250.JPG", "file_name": "IMG_0250.JPG", "file_stem": "IMG_0250", "file_ext": ".jpg", "file_size": 642359.0, "mtime": "2002-09-05T15:56:16+00:00", "mtime_ts": 1031241376.0, "ctime": "2002-09-05T15:56:16+00:00", "sha256_file": "d2f98a24627f898d8cfbd8de523890ce34008e9f2ba767d13896d4d4873a2824", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 15:56:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5096", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 15:56:18", "EXIF DateTimeDigitized": "2002:09:05 15:56:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020250", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b09db54aca9a1ae3a4c8af76ae74dd2b83c1f0ed043b0955b275ef528a937080", "phash": "c9f3368c2166acb9", "dhash": "8c9859c8d0f0a1f6", "phash_int": -3.894709277261649e+18, "collected_at": "2026-05-22T04:29:03.481817+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-05\\IMG_0251.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-05\\IMG_0251.JPG", "file_name": "IMG_0251.JPG", "file_stem": "IMG_0251", "file_ext": ".jpg", "file_size": 575283.0, "mtime": "2002-09-05T16:02:30+00:00", "mtime_ts": 1031241750.0, "ctime": "2002-09-05T16:02:30+00:00", "sha256_file": "a29c6fa41723b03701e4c9682a7430d34c8dee55338dc84513a05bd968dedac0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:05 16:02:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5151", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:05 16:02:31", "EXIF DateTimeDigitized": "2002:09:05 16:02:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020251", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "288", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1174"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98088611bd0b6972c15d92e47d719211aa4ee2510aad0a0808789dd666f7b16b", "phash": "f68132011addc8ff", "dhash": "cccd860004040c0d", "phash_int": -6.842106880565061e+17, "collected_at": "2026-05-22T04:29:03.533817+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2047_IMG.JPG", "file_name": "120-2047_IMG.JPG", "file_stem": "120-2047_IMG", "file_ext": ".jpg", "file_size": 1815388.0, "mtime": "2002-09-06T19:09:46+00:00", "mtime_ts": 1031339386.0, "ctime": "2002-09-06T19:09:46+00:00", "sha256_file": "62bc3acf8e2eff0c8b9c56c79898ad49d85e52ba08e5af68b0e4e158a8995499", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:09:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5905", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:09:47", "EXIF DateTimeDigitized": "2002:09:06 19:09:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2877/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[94, 174, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2877"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2505b0982512c271b977fb3cafd195f02d23324b1dd8c9545ff71708c333afa", "phash": "f1d6e6c988c6c985", "dhash": "880c4c99dadb0e8f", "phash_int": -1.0203745122952946e+18, "collected_at": "2026-05-22T04:29:03.636387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2048_IMG.JPG", "file_name": "120-2048_IMG.JPG", "file_stem": "120-2048_IMG", "file_ext": ".jpg", "file_size": 1280539.0, "mtime": "2002-09-06T19:29:54+00:00", "mtime_ts": 1031340594.0, "ctime": "2002-09-06T19:29:54+00:00", "sha256_file": "a30d329e2ad2c28c84a9df9deecf0a1db2bcfcb20d62dc769cc665dc9b7d057d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:29:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4218", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:29:55", "EXIF DateTimeDigitized": "2002:09:06 19:29:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "569/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2276"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43c49e8037a0be7764ee15b777b5baeb4cc5a7a066db3014ef19d2353071a045", "phash": "c660cdd678869a6e", "dhash": "8496f38d2c6c6467", "phash_int": -4.1520925354068147e+18, "collected_at": "2026-05-22T04:29:03.657389+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2049_IMG.JPG", "file_name": "120-2049_IMG.JPG", "file_stem": "120-2049_IMG", "file_ext": ".jpg", "file_size": 2461257.0, "mtime": "2002-09-07T14:16:56+00:00", "mtime_ts": 1031408216.0, "ctime": "2002-09-07T14:16:56+00:00", "sha256_file": "5a8d2bd2270fe62f1facfefedc6ea73ff40d8f3064b0ebc224f7252bce872300", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:50:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5342", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:09:06 19:50:39", "EXIF DateTimeDigitized": "2002:09:06 19:50:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1202049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aec7246d0c740ede3b276cb5bf7e2e1b4bc0e34467397d5e29b98624d6f25b61", "phash": "f01c8bc68bcd96c9", "dhash": "001c1c949c9c9098", "phash_int": -1.1448865203936566e+18, "collected_at": "2026-05-22T04:29:03.780559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2050_IMG.JPG", "file_name": "120-2050_IMG.JPG", "file_stem": "120-2050_IMG", "file_ext": ".jpg", "file_size": 2723529.0, "mtime": "2002-09-07T14:17:02+00:00", "mtime_ts": 1031408222.0, "ctime": "2002-09-07T14:17:02+00:00", "sha256_file": "4c5055434a56276418c467a7165386d4ad038ccea4174c91d578a3fa94c565c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:50:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7335", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:09:06 19:50:44", "EXIF DateTimeDigitized": "2002:09:06 19:50:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1202050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8a0c6a603ff0704f609b50dbd3122b36155bacb9e2fbb6427e9b2b4462bb3d2", "phash": "f076188f39879cb8", "dhash": "080804020a008090", "phash_int": -1.1196804539304109e+18, "collected_at": "2026-05-22T04:29:03.833779+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2051_IMG.JPG", "file_name": "120-2051_IMG.JPG", "file_stem": "120-2051_IMG", "file_ext": ".jpg", "file_size": 1796970.0, "mtime": "2002-09-06T19:51:14+00:00", "mtime_ts": 1031341874.0, "ctime": "2002-09-06T19:51:14+00:00", "sha256_file": "d5315caf5dbd82b70b2f726567c5d22f0d66a43b03d507dfc719d4c8e3e9d2bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5182", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:15", "EXIF DateTimeDigitized": "2002:09:06 19:51:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eeb78d70765e8ce1d6268c68146c69b8637f46f21716e1f2eb090149108ef6a5", "phash": "e0b00f68cf19e4cf", "dhash": "8c8c9c9d8187d371", "phash_int": -2.2562864704870223e+18, "collected_at": "2026-05-22T04:29:03.885084+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2052_IMG.JPG", "file_name": "120-2052_IMG.JPG", "file_stem": "120-2052_IMG", "file_ext": ".jpg", "file_size": 1901462.0, "mtime": "2002-09-06T19:51:20+00:00", "mtime_ts": 1031341880.0, "ctime": "2002-09-06T19:51:20+00:00", "sha256_file": "fe20ad2c67d29421ac442cf10645de8cf7f8637c32a99072d5ba06b3553e5762", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4956", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:21", "EXIF DateTimeDigitized": "2002:09:06 19:51:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0dc110bf1919bbd2ef2f6eff0271c730e07c9d5ca9764bb98ddf61011b8ab536", "phash": "b3f26c1c0e4d7073", "dhash": "eccccc4c4cde7aee", "phash_int": -5.480198928801632e+18, "collected_at": "2026-05-22T04:29:04.017349+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2053_IMG.JPG", "file_name": "120-2053_IMG.JPG", "file_stem": "120-2053_IMG", "file_ext": ".jpg", "file_size": 2039094.0, "mtime": "2002-09-06T19:51:24+00:00", "mtime_ts": 1031341884.0, "ctime": "2002-09-06T19:51:24+00:00", "sha256_file": "ec3aa93b6687b5a93b667a2a69d42396b8eba7438fa1af9652a341478a9b935c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5687", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:26", "EXIF DateTimeDigitized": "2002:09:06 19:51:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "698795570dbeb97ce07818e587295080517363db6d413a50372e6e4dbf3b2478", "phash": "b9e844e60b733ec4", "dhash": "b3b33a1b3b2e8ebe", "phash_int": -5.050711227270742e+18, "collected_at": "2026-05-22T04:29:04.031601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2055_IMG.JPG", "file_name": "120-2055_IMG.JPG", "file_stem": "120-2055_IMG", "file_ext": ".jpg", "file_size": 1796186.0, "mtime": "2002-09-06T19:51:34+00:00", "mtime_ts": 1031341894.0, "ctime": "2002-09-06T19:51:34+00:00", "sha256_file": "e64297c4ad8d8e70fee5b6c396abb9c187f6ee66a77d1e67b70ece06f1b111bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4527", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:36", "EXIF DateTimeDigitized": "2002:09:06 19:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9507647d8bacc54bd656e00e6af0725d4ac99db0b539e08350fd4fb69420232d", "phash": "bdb8429b60472d4f", "dhash": "3c3a3232323240cc", "phash_int": -4.77599416972377e+18, "collected_at": "2026-05-22T04:29:04.182476+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2054_IMG.JPG", "file_name": "120-2054_IMG.JPG", "file_stem": "120-2054_IMG", "file_ext": ".jpg", "file_size": 1851037.0, "mtime": "2002-09-06T19:51:28+00:00", "mtime_ts": 1031341888.0, "ctime": "2002-09-06T19:51:28+00:00", "sha256_file": "20e655cff2cce9e02c35e55ef42cb5189bcf28350b749706f1fdf704c965423a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4765", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:30", "EXIF DateTimeDigitized": "2002:09:06 19:51:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d21ad6c6d3be3c74fe4060533011d6930fe64ebe73f4461a694d6bf2d7d43e76", "phash": "e767987998992592", "dhash": "60664e464646d8f0", "phash_int": -1.7722802803283625e+18, "collected_at": "2026-05-22T04:29:04.201679+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2056_IMG.JPG", "file_name": "120-2056_IMG.JPG", "file_stem": "120-2056_IMG", "file_ext": ".jpg", "file_size": 1597044.0, "mtime": "2002-09-06T19:51:38+00:00", "mtime_ts": 1031341898.0, "ctime": "2002-09-06T19:51:38+00:00", "sha256_file": "3103a2823b2131113bc9266538e2dacd3c2a6ce63329be45cced84b73ffc8994", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:40", "EXIF DateTimeDigitized": "2002:09:06 19:51:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bf8cedc9e071bd14555a818569868e6838171e08dd70f60720fa1d521466a1e", "phash": "d0c21f73c3175e61", "dhash": "e8b4b4d0911c1462", "phash_int": -3.404123786283885e+18, "collected_at": "2026-05-22T04:29:04.328273+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2057_IMG.JPG", "file_name": "120-2057_IMG.JPG", "file_stem": "120-2057_IMG", "file_ext": ".jpg", "file_size": 1609105.0, "mtime": "2002-09-06T19:51:44+00:00", "mtime_ts": 1031341904.0, "ctime": "2002-09-06T19:51:44+00:00", "sha256_file": "7760aaec067be743fd05978fbf8f29858ccb274aee625226bb1389b1808eb27f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4733", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:46", "EXIF DateTimeDigitized": "2002:09:06 19:51:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "29", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7913543b555e58e6e04a3ffa18ca106dcc2d2424e9afc2aab0eb9fe0911d35f5", "phash": "cce31373d11338cb", "dhash": "d8447130212220b0", "phash_int": -3.6830786821090693e+18, "collected_at": "2026-05-22T04:29:04.350276+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2058_IMG.JPG", "file_name": "120-2058_IMG.JPG", "file_stem": "120-2058_IMG", "file_ext": ".jpg", "file_size": 1876011.0, "mtime": "2002-09-06T19:51:50+00:00", "mtime_ts": 1031341910.0, "ctime": "2002-09-06T19:51:50+00:00", "sha256_file": "592f4fb662bb1e63aeec81709e29da947d3aadc45e69e968cbfb65ec3c288bc6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:51", "EXIF DateTimeDigitized": "2002:09:06 19:51:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6349/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65497", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6349"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1824c36abc3b37ed84a3c1ac4497429199edb0dd67af67d599f208a348237f43", "phash": "af811a5ac8ba31f3", "dhash": "71424e57570f2d2b", "phash_int": -5.800325867859464e+18, "collected_at": "2026-05-22T04:29:04.477279+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2059_IMG.JPG", "file_name": "120-2059_IMG.JPG", "file_stem": "120-2059_IMG", "file_ext": ".jpg", "file_size": 1905405.0, "mtime": "2002-09-06T19:51:56+00:00", "mtime_ts": 1031341916.0, "ctime": "2002-09-06T19:51:56+00:00", "sha256_file": "8956bb66603989dcf5ab61b8f33ccc4e4ff20bebff317dff909827e9d6e2ef86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:51:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5909", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:51:58", "EXIF DateTimeDigitized": "2002:09:06 19:51:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bdec8b26ebb5fe231776966510742aea6c0766cacca59891915e241139805574", "phash": "869318a5ef8d646b", "dhash": "60e9e0e26ae4e261", "phash_int": -8.74962255008305e+18, "collected_at": "2026-05-22T04:29:04.500283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2060_IMG.JPG", "file_name": "120-2060_IMG.JPG", "file_stem": "120-2060_IMG", "file_ext": ".jpg", "file_size": 1636052.0, "mtime": "2002-09-06T19:52:06+00:00", "mtime_ts": 1031341926.0, "ctime": "2002-09-06T19:52:06+00:00", "sha256_file": "768adbf302578a81c72fc09f37e1664338c726126b76a03c1bb9c19e5cd1ef6d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3971", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:07", "EXIF DateTimeDigitized": "2002:09:06 19:52:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95863225178f95e2afebb72948765475966e1754565eebaea13a89967f467fb8", "phash": "d9e535966e926892", "dhash": "e2d2915171517171", "phash_int": -2.745729477595994e+18, "collected_at": "2026-05-22T04:29:04.632398+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2061_IMG.JPG", "file_name": "120-2061_IMG.JPG", "file_stem": "120-2061_IMG", "file_ext": ".jpg", "file_size": 1802323.0, "mtime": "2002-09-06T19:52:10+00:00", "mtime_ts": 1031341930.0, "ctime": "2002-09-06T19:52:10+00:00", "sha256_file": "f05ae1bf0fefead86b00906ca47f3b1c277bc22b2ad55824dce5365f9b6be29c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4663", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:11", "EXIF DateTimeDigitized": "2002:09:06 19:52:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df62b7a91b280fcf9f9048ef94104621b9bb613dd689e08a420c5dfbfead9319", "phash": "a5c1e0d81a9e9f87", "dhash": "d2ca4e6e6e6e6666", "phash_int": -6.502669168182125e+18, "collected_at": "2026-05-22T04:29:04.658512+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2062_IMG.JPG", "file_name": "120-2062_IMG.JPG", "file_stem": "120-2062_IMG", "file_ext": ".jpg", "file_size": 1858912.0, "mtime": "2002-09-06T19:52:14+00:00", "mtime_ts": 1031341934.0, "ctime": "2002-09-06T19:52:14+00:00", "sha256_file": "dfa57de2f99a461f3dc85bbcdeabf2c40f0757a45af190e0ecadcea29a05e728", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4318", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:16", "EXIF DateTimeDigitized": "2002:09:06 19:52:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "137a9c7fd914cea807667a146901f39ba3fbd6baa423554c76a40c332e5cbca4", "phash": "c894595669f34cd6", "dhash": "f0f0f4f3e0f5e8f3", "phash_int": -3.9934687418911754e+18, "collected_at": "2026-05-22T04:29:04.836931+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2063_IMG.JPG", "file_name": "120-2063_IMG.JPG", "file_stem": "120-2063_IMG", "file_ext": ".jpg", "file_size": 1619464.0, "mtime": "2002-09-06T19:52:20+00:00", "mtime_ts": 1031341940.0, "ctime": "2002-09-06T19:52:20+00:00", "sha256_file": "c00be37f2175463c514ab5945e143a9be289f38532f4176309ff078a57241abb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3723", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:22", "EXIF DateTimeDigitized": "2002:09:06 19:52:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65458", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a88b5c8804e946e396b01c0209057f57c6b49302281a5398c681659975eec02", "phash": "fa9f6c5933691062", "dhash": "3839391919191b19", "phash_int": -3.8747191256016064e+17, "collected_at": "2026-05-22T04:29:04.853042+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2064_IMG.JPG", "file_name": "120-2064_IMG.JPG", "file_stem": "120-2064_IMG", "file_ext": ".jpg", "file_size": 1816968.0, "mtime": "2002-09-06T19:52:24+00:00", "mtime_ts": 1031341944.0, "ctime": "2002-09-06T19:52:24+00:00", "sha256_file": "88490c11ff70f5ff4aac5a0127d8ae8202ebd6dd84898d4aaa69ac6efb12d674", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4435", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:26", "EXIF DateTimeDigitized": "2002:09:06 19:52:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65444", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9678289bd08a85f3c78938815933efa381686bc007791960b8cacb063569969", "phash": "d5ea1605358f725c", "dhash": "8888c888c6d8f05c", "phash_int": -3.032587187451367e+18, "collected_at": "2026-05-22T04:29:05.028636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2065_IMG.JPG", "file_name": "120-2065_IMG.JPG", "file_stem": "120-2065_IMG", "file_ext": ".jpg", "file_size": 1821562.0, "mtime": "2002-09-06T19:52:30+00:00", "mtime_ts": 1031341950.0, "ctime": "2002-09-06T19:52:30+00:00", "sha256_file": "73fbc749190cd3c59952428ccdecf9be77930e1eb89379132886064363e5c2f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4416", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:31", "EXIF DateTimeDigitized": "2002:09:06 19:52:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09b57245ea33c1a4b0c8d210c79ec3a528f1513251de6f9c5796d7f63c40edda", "phash": "c666a459c97634ad", "dhash": "4645444d537078f8", "phash_int": -4.150449301036322e+18, "collected_at": "2026-05-22T04:29:05.039643+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2066_IMG.JPG", "file_name": "120-2066_IMG.JPG", "file_stem": "120-2066_IMG", "file_ext": ".jpg", "file_size": 1718618.0, "mtime": "2002-09-06T19:52:34+00:00", "mtime_ts": 1031341954.0, "ctime": "2002-09-06T19:52:34+00:00", "sha256_file": "5985a56b4036bbcca03f2fe4cda250d5f49c90bb432f7aeb6f3317d7dc794cd7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 19:52:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3383", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 19:52:36", "EXIF DateTimeDigitized": "2002:09:06 19:52:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43c9a40e8abcdcbce77b87041bca0851384280c204ffe2cac4d2bbf345f3630e", "phash": "8001ce7e5123fcfe", "dhash": "eefedede9e3eeee6", "phash_int": -9.222863519955551e+18, "collected_at": "2026-05-22T04:29:05.148841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2067_IMG.JPG", "file_name": "120-2067_IMG.JPG", "file_stem": "120-2067_IMG", "file_ext": ".jpg", "file_size": 2038404.0, "mtime": "2002-09-06T20:11:44+00:00", "mtime_ts": 1031343104.0, "ctime": "2002-09-06T20:11:44+00:00", "sha256_file": "8810a7c043e332bdee6cbaf95aca4fe1f08e2afe39266871d59ff2e07d91573e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 20:11:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6107", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 20:11:46", "EXIF DateTimeDigitized": "2002:09:06 20:11:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db70cb5a56921b37eb2363372c5e8811a4eee6c4db81c3012a8c98014c116627", "phash": "e8fd82143c73e58a", "dhash": "a3b303333396c9cd", "phash_int": -1.6580260643772892e+18, "collected_at": "2026-05-22T04:29:05.160841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2069_IMG.JPG", "file_name": "120-2069_IMG.JPG", "file_stem": "120-2069_IMG", "file_ext": ".jpg", "file_size": 1911110.0, "mtime": "2002-09-06T20:12:04+00:00", "mtime_ts": 1031343124.0, "ctime": "2002-09-06T20:12:04+00:00", "sha256_file": "895b5c83ab31486f22a506d504fa1889cedfaaa66df98de3d79e030d3e3d7369", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 20:12:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6115", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 20:12:06", "EXIF DateTimeDigitized": "2002:09:06 20:12:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5121/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5121"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e74d0b2e1ea44613373c4e86f5e880a62f34ddf39070327be903a9c4291f41e", "phash": "d38ab13b2c679278", "dhash": "d9e9e96555584840", "phash_int": -3.2035533172145147e+18, "collected_at": "2026-05-22T04:29:05.323343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2068_IMG.JPG", "file_name": "120-2068_IMG.JPG", "file_stem": "120-2068_IMG", "file_ext": ".jpg", "file_size": 3123460.0, "mtime": "2002-09-07T14:17:12+00:00", "mtime_ts": 1031408232.0, "ctime": "2002-09-07T14:17:12+00:00", "sha256_file": "c9f8a972f9d92e78194466ae4e7424346a5c5acebf5e4528edb08f6040919421", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 20:11:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8425", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:09:06 20:11:53", "EXIF DateTimeDigitized": "2002:09:06 20:11:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1202068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f08cdb2edfa50422b572246eeed2e956e5e3ba54044aaa6ac23923299c96190", "phash": "d8d3e02c1f21bd6a", "dhash": "f0e038703132a7ad", "phash_int": -2.822666061325681e+18, "collected_at": "2026-05-22T04:29:05.332417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2070_IMG.JPG", "file_name": "120-2070_IMG.JPG", "file_stem": "120-2070_IMG", "file_ext": ".jpg", "file_size": 1939269.0, "mtime": "2002-09-06T20:12:16+00:00", "mtime_ts": 1031343136.0, "ctime": "2002-09-06T20:12:16+00:00", "sha256_file": "31acb4e5266332039d22cd77ea57daba7101205c9b1566d9e4bd30ff61cb41d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 20:12:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5540", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 20:12:17", "EXIF DateTimeDigitized": "2002:09:06 20:12:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "227/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2270"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "937b86309a427ef4ee7b6224e0294f3223363dc673c9f005e4526f6acb81bbd0", "phash": "e45bf631d508e334", "dhash": "a8a821f0d6d6a686", "phash_int": -1.9917277162933527e+18, "collected_at": "2026-05-22T04:29:05.412178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2071_IMG.JPG", "file_name": "120-2071_IMG.JPG", "file_stem": "120-2071_IMG", "file_ext": ".jpg", "file_size": 1967975.0, "mtime": "2002-09-06T21:34:24+00:00", "mtime_ts": 1031348064.0, "ctime": "2002-09-06T21:34:24+00:00", "sha256_file": "356cc01b6ebd7b01eb949d8d48f3c10d075b589e9236f005c66d1805399f6b77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 21:34:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5063", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 21:34:26", "EXIF DateTimeDigitized": "2002:09:06 21:34:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6493/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6493"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5216867d3d59a6415540e7f0cbe16d1d80be40b4060fcd522f59ca65328a0b0c", "phash": "ff9c1ce11d029c69", "dhash": "36363e3a13cfcf38", "phash_int": -2.8115744491135896e+16, "collected_at": "2026-05-22T04:29:05.424176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2072_IMG.JPG", "file_name": "120-2072_IMG.JPG", "file_stem": "120-2072_IMG", "file_ext": ".jpg", "file_size": 2025830.0, "mtime": "2002-09-06T21:34:32+00:00", "mtime_ts": 1031348072.0, "ctime": "2002-09-06T21:34:32+00:00", "sha256_file": "ce49be9a371705ecd43f1cd14655cf4b541df483d0dba338d7d9e81cb5562e05", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 21:34:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5474", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 21:34:33", "EXIF DateTimeDigitized": "2002:09:06 21:34:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1233/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2466"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a0b402d36d039e6d8f48c18074e086189cdf1c39947f35987272c87725a74eb", "phash": "f3bc11cabb1c3162", "dhash": "32361e3b43c7cdcc", "phash_int": -8.838118644512068e+17, "collected_at": "2026-05-22T04:29:05.495180+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2073_IMG.JPG", "file_name": "120-2073_IMG.JPG", "file_stem": "120-2073_IMG", "file_ext": ".jpg", "file_size": 2208608.0, "mtime": "2002-09-06T21:34:40+00:00", "mtime_ts": 1031348080.0, "ctime": "2002-09-06T21:34:40+00:00", "sha256_file": "e59d86cfe99989ea739fcafc787f89bec07d7beb591b3e0013901e7bdb259802", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 21:34:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6433", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 21:34:41", "EXIF DateTimeDigitized": "2002:09:06 21:34:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3107/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3107"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea2332b71c044e021e1c1e26b022685027553e7fa71c3ed8facbc0c6c5c43e25", "phash": "9d9f14c8333d3931", "dhash": "52727a5ad3b33212", "phash_int": -7.088924438372207e+18, "collected_at": "2026-05-22T04:29:05.606183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-06\\120-2074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-06\\120-2074_IMG.JPG", "file_name": "120-2074_IMG.JPG", "file_stem": "120-2074_IMG", "file_ext": ".jpg", "file_size": 2069483.0, "mtime": "2002-09-06T21:34:46+00:00", "mtime_ts": 1031348086.0, "ctime": "2002-09-06T21:34:46+00:00", "sha256_file": "ae13dd1eb9ee6b921c8eb0aa01946041bd46ae982c90dfc4f007fcfc63799598", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:06 21:34:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6155", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:06 21:34:48", "EXIF DateTimeDigitized": "2002:09:06 21:34:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3107/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3107"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba8b179cbc5f738a873967891fe4081fffd25eaab81c0ded4d826e424ddd7640", "phash": "e080c87f97bf4a25", "dhash": "b1a989dd9c1d94d1", "phash_int": -2.2695937618624323e+18, "collected_at": "2026-05-22T04:29:05.650184+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\120-2076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\120-2076_IMG.JPG", "file_name": "120-2076_IMG.JPG", "file_stem": "120-2076_IMG", "file_ext": ".jpg", "file_size": 1664747.0, "mtime": "2002-09-07T14:42:06+00:00", "mtime_ts": 1031409726.0, "ctime": "2002-09-07T14:42:06+00:00", "sha256_file": "6183d926935f1cb17e756aca60c74dd0678d9be354bd9905080aea568ffad116", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 14:42:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5372", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:07 14:42:07", "EXIF DateTimeDigitized": "2002:09:07 14:42:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2d6bcc8a4758a933acaffa9f2b20785b6dc7c2995343b672b025b2fa7445a2f", "phash": "a7f25c334f899249", "dhash": "cccc8cceccccf2e6", "phash_int": -6.344907549564104e+18, "collected_at": "2026-05-22T04:29:05.793270+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\120-2077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\120-2077_IMG.JPG", "file_name": "120-2077_IMG.JPG", "file_stem": "120-2077_IMG", "file_ext": ".jpg", "file_size": 1678738.0, "mtime": "2002-09-07T14:42:16+00:00", "mtime_ts": 1031409736.0, "ctime": "2002-09-07T14:42:16+00:00", "sha256_file": "3da2881ae607ada17f360d4f6cd543440e34da019a235c8c95ad544bc2d3c55b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 14:42:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4067", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:07 14:42:18", "EXIF DateTimeDigitized": "2002:09:07 14:42:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "939/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1878"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b8053f9e2d2a24faf4f846a9eda37c429f1ad547fd16a6464eb9f449f5a7d27", "phash": "f6839d598b947168", "dhash": "7b4f4d4d118c2e17", "phash_int": -6.835297105107718e+17, "collected_at": "2026-05-22T04:29:05.801859+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0252.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0252.JPG", "file_name": "IMG_0252.JPG", "file_stem": "IMG_0252", "file_ext": ".jpg", "file_size": 653407.0, "mtime": "2002-09-07T06:40:16+00:00", "mtime_ts": 1031380816.0, "ctime": "2002-09-07T06:40:16+00:00", "sha256_file": "31e8c08a87c1fbb6ccb1495950ed469e9ca96d2503017e0b256e21f166de84be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 06:40:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3663", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 06:40:18", "EXIF DateTimeDigitized": "2002:09:07 06:40:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 808, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020252", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "60", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "680"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9380268169ba352319ef7d324468595ae56c4874240d4e64e38299df5c97c980", "phash": "c46e6673454e0b73", "dhash": "e4e0f0e0d8f8e0e2", "phash_int": -4.292380749567489e+18, "collected_at": "2026-05-22T04:29:05.908862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0253.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0253.JPG", "file_name": "IMG_0253.JPG", "file_stem": "IMG_0253", "file_ext": ".jpg", "file_size": 345641.0, "mtime": "2002-09-07T06:43:42+00:00", "mtime_ts": 1031381022.0, "ctime": "2002-09-07T06:43:42+00:00", "sha256_file": "1bec250b2f3b9556f32462bb5bd97edf6ea77afac2b71a59e13acf3e097fef8f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 06:43:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2625", "EXIF ExposureTime": "1/100", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 06:43:43", "EXIF DateTimeDigitized": "2002:09:07 06:43:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[9, 6, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020253", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5763"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d664662c501a50ada98c146bbf1b613364396835d3d15ec406fdb7a3080fffad", "phash": "9a88a5e564d8f273", "dhash": "f0fb7931eaf0f0f1", "phash_int": -7.311411590377967e+18, "collected_at": "2026-05-22T04:29:05.920863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0254.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0254.JPG", "file_name": "IMG_0254.JPG", "file_stem": "IMG_0254", "file_ext": ".jpg", "file_size": 363231.0, "mtime": "2002-09-07T06:53:06+00:00", "mtime_ts": 1031381586.0, "ctime": "2002-09-07T06:53:06+00:00", "sha256_file": "4f4a0e8433ea2a625bcf702c80ce58c74f07439e6dba88888471d96120643c3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 06:53:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3375", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 06:53:07", "EXIF DateTimeDigitized": "2002:09:07 06:53:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020254", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea22b2fc41773de8cf4cc4952f9652b1c1a4e99d40bcedd5d522bce908457d66", "phash": "83cf4d4b4baa0d4b", "dhash": "e1e4f6ddf9fcfcfc", "phash_int": -8.948848948774565e+18, "collected_at": "2026-05-22T04:29:05.947865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0255.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0255.JPG", "file_name": "IMG_0255.JPG", "file_stem": "IMG_0255", "file_ext": ".jpg", "file_size": 332114.0, "mtime": "2002-09-07T07:00:40+00:00", "mtime_ts": 1031382040.0, "ctime": "2002-09-07T07:00:40+00:00", "sha256_file": "d53c9fb9829b67d9bcad70ee70e0b3e3b93aef12e61e517b4b9f2069db6915ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 07:00:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3725", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 07:00:41", "EXIF DateTimeDigitized": "2002:09:07 07:00:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020255", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5201"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8399f56df1395703f59cb864a73dd20ea149a154c19384b55c3d7399efcb314", "phash": "81e9ae1ad1c5676a", "dhash": "f01bcbd298e6dada", "phash_int": -9.085539343031507e+18, "collected_at": "2026-05-22T04:29:05.973865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0256.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0256.JPG", "file_name": "IMG_0256.JPG", "file_stem": "IMG_0256", "file_ext": ".jpg", "file_size": 352872.0, "mtime": "2002-09-07T07:07:02+00:00", "mtime_ts": 1031382422.0, "ctime": "2002-09-07T07:07:02+00:00", "sha256_file": "0cd3f05ee7ed8f11b6145935753b012a5ffa3bec12b585708b9be41ee6077baf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 07:07:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3867", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 07:07:04", "EXIF DateTimeDigitized": "2002:09:07 07:07:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020256", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5852"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1ebf64ce0f9717894125f0f706efcf8e031a0b01672e862155b2cfdf86ad47d", "phash": "8da727dd626a2a58", "dhash": "e6f2b3f0f0f0f0a8", "phash_int": -8.239573161458652e+18, "collected_at": "2026-05-22T04:29:05.993865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0257.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0257.JPG", "file_name": "IMG_0257.JPG", "file_stem": "IMG_0257", "file_ext": ".jpg", "file_size": 368637.0, "mtime": "2002-09-07T07:07:22+00:00", "mtime_ts": 1031382442.0, "ctime": "2002-09-07T07:07:22+00:00", "sha256_file": "084805d652f1d712a96cfd50d96ad5461770ba7e626eb97582d72ae5243390b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 07:07:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3747", "EXIF ExposureTime": "1/100", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 07:07:24", "EXIF DateTimeDigitized": "2002:09:07 07:07:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020257", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "283", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5852"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c94f0c74acc50a89ff5c7a1305bfcaf6511d212d906330d3ed9921ded7057a7", "phash": "c98366d9d9276299", "dhash": "c1c0c1c0f0c0c0c2", "phash_int": -3.9261813642997673e+18, "collected_at": "2026-05-22T04:29:06.066869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0258.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0258.JPG", "file_name": "IMG_0258.JPG", "file_stem": "IMG_0258", "file_ext": ".jpg", "file_size": 795649.0, "mtime": "2002-09-07T11:00:34+00:00", "mtime_ts": 1031396434.0, "ctime": "2002-09-07T11:00:34+00:00", "sha256_file": "aef37765d5c0b6a9a6b1bb23d98c6dc41c55407ef4166ed109d6929d6d15e516", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 11:00:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5848", "EXIF ExposureTime": "1/200", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 11:00:35", "EXIF DateTimeDigitized": "2002:09:07 11:00:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020258", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f41367d25b3db0bbdfe9ee300dbece2c49a27ac43c49af1f76281b68e6e4d4a3", "phash": "e59aa5cc33466176", "dhash": "bf6686480992265e", "phash_int": -1.9020255961584515e+18, "collected_at": "2026-05-22T04:29:06.077871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0259.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0259.JPG", "file_name": "IMG_0259.JPG", "file_stem": "IMG_0259", "file_ext": ".jpg", "file_size": 840021.0, "mtime": "2002-09-07T11:08:52+00:00", "mtime_ts": 1031396932.0, "ctime": "2002-09-07T11:08:52+00:00", "sha256_file": "2db63cfe53b0e50c30be38c62332194d8fd1d383e4f41faf044fb6887aa66fd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 11:08:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6681", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 11:08:54", "EXIF DateTimeDigitized": "2002:09:07 11:08:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020259", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "828"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edf9ee7caf961aa9e752b2f6dce0b8e8e0b22df8a5a75e112388c8ef5cf5d4c7", "phash": "a2eeac78f1703133", "dhash": "87e7ef9d597cbcdc", "phash_int": -6.706233159661375e+18, "collected_at": "2026-05-22T04:29:06.145874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0260.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0260.JPG", "file_name": "IMG_0260.JPG", "file_stem": "IMG_0260", "file_ext": ".jpg", "file_size": 533584.0, "mtime": "2002-09-07T14:26:36+00:00", "mtime_ts": 1031408796.0, "ctime": "2002-09-07T14:26:36+00:00", "sha256_file": "8bf89a6edbea04538f3529c353bb7760cf790ce1372fc81fc5d7f35b7e05b38c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 14:26:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4518", "EXIF ExposureTime": "1/250", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 14:26:37", "EXIF DateTimeDigitized": "2002:09:07 14:26:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020260", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b493c30b7cece5ba17d9b1bc07e17aec193a6b28822b46c83792a35e38431bfc", "phash": "d993246e4bd7a429", "dhash": "feffd878c1641a96", "phash_int": -2.768829289765297e+18, "collected_at": "2026-05-22T04:29:06.148872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0261.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0261.JPG", "file_name": "IMG_0261.JPG", "file_stem": "IMG_0261", "file_ext": ".jpg", "file_size": 729396.0, "mtime": "2002-09-07T15:22:28+00:00", "mtime_ts": 1031412148.0, "ctime": "2002-09-07T15:22:28+00:00", "sha256_file": "68ba2b7f37827cc82b5e65ab6f17db11b389d771d605d8df58ff3af710334dd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 15:22:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4827", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 15:22:29", "EXIF DateTimeDigitized": "2002:09:07 15:22:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020261", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "301", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98dcb2db7158f7bb491d06c1c2a23b71abdfc733516b81cf3e1c0eda9a44841c", "phash": "b4faf8474b3414c9", "dhash": "08093e7741445eaa", "phash_int": -5.405735417616788e+18, "collected_at": "2026-05-22T04:29:06.221874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0262.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0262.JPG", "file_name": "IMG_0262.JPG", "file_stem": "IMG_0262", "file_ext": ".jpg", "file_size": 750409.0, "mtime": "2002-09-07T15:22:48+00:00", "mtime_ts": 1031412168.0, "ctime": "2002-09-07T15:22:48+00:00", "sha256_file": "7771b4e4bde2cfe7e63f5792e5fbeea8cb73143486003b2fcf8d8a6879ef5fad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 15:22:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5108", "EXIF ExposureTime": "1/100", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 15:22:49", "EXIF DateTimeDigitized": "2002:09:07 15:22:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020262", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12736f19b32392ce4c109a0456a63122a04163195c21a8a406db2e17a6f9aaf6", "phash": "a49bc6d85f40e4a7", "dhash": "f0fc6d3a1a96c6e6", "phash_int": -6.585451397485895e+18, "collected_at": "2026-05-22T04:29:06.313878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-07\\IMG_0263.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-07\\IMG_0263.JPG", "file_name": "IMG_0263.JPG", "file_stem": "IMG_0263", "file_ext": ".jpg", "file_size": 825468.0, "mtime": "2002-09-07T15:26:46+00:00", "mtime_ts": 1031412406.0, "ctime": "2002-09-07T15:26:46+00:00", "sha256_file": "ffbedb07bdefed26a57b0c3b0a27d49ce9ed27f006b96f76a9deaa54368c4a89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:07 15:26:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5164", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:07 15:26:47", "EXIF DateTimeDigitized": "2002:09:07 15:26:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020263", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3718"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b06fd87460a2444993ed363f21efd66adbb9244a64a18022ed92d46365812d10", "phash": "d393b5ada908f838", "dhash": "785c38d8d060c0c2", "phash_int": -3.201015152660384e+18, "collected_at": "2026-05-22T04:29:06.376880+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0264.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0264.JPG", "file_name": "IMG_0264.JPG", "file_stem": "IMG_0264", "file_ext": ".jpg", "file_size": 685083.0, "mtime": "2002-09-08T17:28:52+00:00", "mtime_ts": 1031506132.0, "ctime": "2002-09-08T17:28:52+00:00", "sha256_file": "5297aab7816b480d8f6ce313ce064337a7586073f9d7f70b1a52d3b54f6ccdb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:28:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4457", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:28:53", "EXIF DateTimeDigitized": "2002:09:08 17:28:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020264", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41e9ea8cf64262196276e92e7ca7d03e5b58c3936cd7c1e1e1bbb0f3aaa9fa48", "phash": "9ac5b3601768d7a5", "dhash": "e4e63131ecc1931c", "phash_int": -7.294226796165671e+18, "collected_at": "2026-05-22T04:29:06.423881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0265.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0265.JPG", "file_name": "IMG_0265.JPG", "file_stem": "IMG_0265", "file_ext": ".jpg", "file_size": 1132049.0, "mtime": "2002-09-08T17:29:16+00:00", "mtime_ts": 1031506156.0, "ctime": "2002-09-08T17:29:16+00:00", "sha256_file": "7a910cbb7f02494980cf2e8032abb172f1be6fe3ca15a6ba5c755c78d6507d55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:29:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "8323", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:29:17", "EXIF DateTimeDigitized": "2002:09:08 17:29:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020265", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3425f526067a3e363cdae45543ce642fca2baa7d6af162b155b484f6e92731b7", "phash": "c0e58d9f99d78330", "dhash": "b28686c98b4d45f5", "phash_int": -4.547072532140293e+18, "collected_at": "2026-05-22T04:29:06.464884+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0266.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0266.JPG", "file_name": "IMG_0266.JPG", "file_stem": "IMG_0266", "file_ext": ".jpg", "file_size": 954035.0, "mtime": "2002-09-08T17:30:06+00:00", "mtime_ts": 1031506206.0, "ctime": "2002-09-08T17:30:06+00:00", "sha256_file": "607fadb8ce8ee8acd52f3253a055c41babb4a7efd61429db067c14940d13a350", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:30:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "8123", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:30:07", "EXIF DateTimeDigitized": "2002:09:08 17:30:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020266", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "591"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f58150f5b24b79a602bdc899ece818111b4fd231d4fd916b9db430ad412ce9a7", "phash": "8b707c37e2c6242f", "dhash": "8c99d5cdcbfff3f3", "phash_int": -8.399076725576293e+18, "collected_at": "2026-05-22T04:29:06.493884+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0267.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0267.JPG", "file_name": "IMG_0267.JPG", "file_stem": "IMG_0267", "file_ext": ".jpg", "file_size": 1011550.0, "mtime": "2002-09-08T17:32:20+00:00", "mtime_ts": 1031506340.0, "ctime": "2002-09-08T17:32:20+00:00", "sha256_file": "ed469fed95cc54a7bc01227448dd765fd87ae9e2f2c0559358350ff024207a95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:32:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6144", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:32:21", "EXIF DateTimeDigitized": "2002:09:08 17:32:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[9, 140, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020267", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1172"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52c8551564fef6d18a6acb9699b0e33e108539ccb6f4e6d82b94cc92abc1071a", "phash": "d812374e2d7ac23d", "dhash": "9898999172212496", "phash_int": -2.877176403026329e+18, "collected_at": "2026-05-22T04:29:06.520888+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0268.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0268.JPG", "file_name": "IMG_0268.JPG", "file_stem": "IMG_0268", "file_ext": ".jpg", "file_size": 970524.0, "mtime": "2002-09-08T17:35:30+00:00", "mtime_ts": 1031506530.0, "ctime": "2002-09-08T17:35:30+00:00", "sha256_file": "34a870c2d2d1679d14bf5d285c246214637a8ac7403859096be9166edb78ca44", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:35:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "8255", "EXIF ExposureTime": "1/80", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:35:31", "EXIF DateTimeDigitized": "2002:09:08 17:35:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020268", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1232"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0e332adf0196968c90eb540b940d4103b6648786c1f99ae882d4dd6b931291a", "phash": "fab082ce39e15933", "dhash": "292b9b1a3b292b29", "phash_int": -3.8266214608054854e+17, "collected_at": "2026-05-22T04:29:06.642983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0269.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0269.JPG", "file_name": "IMG_0269.JPG", "file_stem": "IMG_0269", "file_ext": ".jpg", "file_size": 889821.0, "mtime": "2002-09-08T17:37:10+00:00", "mtime_ts": 1031506630.0, "ctime": "2002-09-08T17:37:10+00:00", "sha256_file": "122de812eb75303dc3d872e99dc6d8575f75438949aa694f5b51f8ce668e1afc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:37:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7381", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:37:11", "EXIF DateTimeDigitized": "2002:09:08 17:37:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020269", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "300", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1218"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46125f9c48a75062bfe74d608bc602169b434cb9398a4fb489f6982d6459abc1", "phash": "dd021decc72dea0c", "dhash": "6ae8594861a23672", "phash_int": -2.521419938582894e+18, "collected_at": "2026-05-22T04:29:06.659984+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0270.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0270.JPG", "file_name": "IMG_0270.JPG", "file_stem": "IMG_0270", "file_ext": ".jpg", "file_size": 851861.0, "mtime": "2002-09-08T17:41:34+00:00", "mtime_ts": 1031506894.0, "ctime": "2002-09-08T17:41:34+00:00", "sha256_file": "96303f9797019b358926e32e8ad436a3f94f86d01b3b2e3f1551b9d33e0ec6bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:41:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6811", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:41:35", "EXIF DateTimeDigitized": "2002:09:08 17:41:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020270", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "957"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bffb6929abb7d044a4ad4a026fc8441bb33f31daddde58062971bd6f0129ba39", "phash": "f613c9c961b68dc8", "dhash": "d0082c0c0b462525", "phash_int": -7.150060490568136e+17, "collected_at": "2026-05-22T04:29:06.731989+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0271.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0271.JPG", "file_name": "IMG_0271.JPG", "file_stem": "IMG_0271", "file_ext": ".jpg", "file_size": 1125629.0, "mtime": "2002-09-08T17:45:52+00:00", "mtime_ts": 1031507152.0, "ctime": "2002-09-08T17:45:52+00:00", "sha256_file": "6e683a5a09901442e49f061f2f3d0fac4e7b539041ab08e6a8b4368cbd0d0873", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:45:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7554", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:45:53", "EXIF DateTimeDigitized": "2002:09:08 17:45:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020271", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "888"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed7d07b777ce29b0e0e5f1a419b01411dca1c399b998ac64b9d28b2e454767b2", "phash": "85e278151f1be3e2", "dhash": "e4c4c960f0f07073", "phash_int": -8.79933868981696e+18, "collected_at": "2026-05-22T04:29:06.746987+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0272.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0272.JPG", "file_name": "IMG_0272.JPG", "file_stem": "IMG_0272", "file_ext": ".jpg", "file_size": 982995.0, "mtime": "2002-09-08T17:47:10+00:00", "mtime_ts": 1031507230.0, "ctime": "2002-09-08T17:47:10+00:00", "sha256_file": "aa7a1f5c606682e7a73939073274c2c76b73c7230ec7b362a7dd3dcae661be43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:47:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "8164", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:47:11", "EXIF DateTimeDigitized": "2002:09:08 17:47:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020272", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "703"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4176e13ebb572baa4eb1b2a5894cb0d616f687210e3d770bac75b2c679818d69", "phash": "82d2e0cafa85397e", "dhash": "9c9df95571e3c687", "phash_int": -9.019899941278632e+18, "collected_at": "2026-05-22T04:29:06.847992+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0273.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0273.JPG", "file_name": "IMG_0273.JPG", "file_stem": "IMG_0273", "file_ext": ".jpg", "file_size": 1007022.0, "mtime": "2002-09-08T17:48:38+00:00", "mtime_ts": 1031507318.0, "ctime": "2002-09-08T17:48:38+00:00", "sha256_file": "5179ed356efab711f2a82cb8f7b84861da6dd7175695d849139664f06d5967c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:48:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6386", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:48:40", "EXIF DateTimeDigitized": "2002:09:08 17:48:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020273", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "223", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2296"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1e8c8b003eb95103d435d51899c23c710fb300389ef980b45ba78debe3bcaf7", "phash": "ff9e072744c282e5", "dhash": "6d38b0b10e0b0a10", "phash_int": -2.7576682478927132e+16, "collected_at": "2026-05-22T04:29:06.850991+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0275.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0275.JPG", "file_name": "IMG_0275.JPG", "file_stem": "IMG_0275", "file_ext": ".jpg", "file_size": 657007.0, "mtime": "2002-09-08T17:49:52+00:00", "mtime_ts": 1031507392.0, "ctime": "2002-09-08T17:49:52+00:00", "sha256_file": "ddf62b55abf990d8aa6504c900da51d2693bf294483cea44af4c23e008a0679d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:49:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5406", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:49:53", "EXIF DateTimeDigitized": "2002:09:08 17:49:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020275", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dec05b214033d0ecd3beba0effc4831a49dbf1c2675edcaee35cff1794fc9402", "phash": "ad1940e7363c07f9", "dhash": "dfdbf7bfcfcfafef", "phash_int": -5.973672068938725e+18, "collected_at": "2026-05-22T04:29:06.957997+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0274.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0274.JPG", "file_name": "IMG_0274.JPG", "file_stem": "IMG_0274", "file_ext": ".jpg", "file_size": 658090.0, "mtime": "2002-09-08T17:49:10+00:00", "mtime_ts": 1031507350.0, "ctime": "2002-09-08T17:49:10+00:00", "sha256_file": "b9bae92780d1fa6231f2b55c5609e877e4fe06a45f49350a52c117d270a9753d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 17:49:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5331", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 17:49:12", "EXIF DateTimeDigitized": "2002:09:08 17:49:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020274", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce2f0154390a9b6ae7d17b69202c5625a9e74e0c13af2b2b1973ceb05de2eee8", "phash": "c7acb1c4a397e924", "dhash": "e0cc5260e4e0fcdb", "phash_int": -4.058673706051311e+18, "collected_at": "2026-05-22T04:29:06.961994+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0277.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0277.JPG", "file_name": "IMG_0277.JPG", "file_stem": "IMG_0277", "file_ext": ".jpg", "file_size": 485864.0, "mtime": "2002-09-10T07:53:30+00:00", "mtime_ts": 1031644410.0, "ctime": "2002-09-10T07:53:30+00:00", "sha256_file": "9dbc3586cfb592b026860f64a76cc62f0a31280d3c8a98417a607ea78ca57cdc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 07:53:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5556", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 07:53:32", "EXIF DateTimeDigitized": "2002:09:10 07:53:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020277", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5297"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b625d83260ffde86624a13ddb3d2620d3fd57f45a3b981bda9a95ef30351dde4", "phash": "afa89092cf1f50e3", "dhash": "f4d7bb6747bd78c0", "phash_int": -5.789218360770212e+18, "collected_at": "2026-05-22T04:29:07.039107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-08\\IMG_0276.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-08\\IMG_0276.JPG", "file_name": "IMG_0276.JPG", "file_stem": "IMG_0276", "file_ext": ".jpg", "file_size": 751628.0, "mtime": "2002-09-08T18:23:06+00:00", "mtime_ts": 1031509386.0, "ctime": "2002-09-08T18:23:06+00:00", "sha256_file": "78fc60b9b17fb39a8a557e023ed1fb3fb2172d7096ff258879b2dfb5367638d5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:08 18:23:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4786", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:08 18:23:08", "EXIF DateTimeDigitized": "2002:09:08 18:23:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020276", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f54e7e0c56384f01a77d2506a71351e64d2e720098bb913f832ea35eb0521c7", "phash": "90c6bd8ad56e6b30", "dhash": "e08882e0d8b99f9a", "phash_int": -8.014510082875299e+18, "collected_at": "2026-05-22T04:29:07.045103+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0278.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0278.JPG", "file_name": "IMG_0278.JPG", "file_stem": "IMG_0278", "file_ext": ".jpg", "file_size": 288196.0, "mtime": "2002-09-10T07:55:50+00:00", "mtime_ts": 1031644550.0, "ctime": "2002-09-10T07:55:50+00:00", "sha256_file": "948d7ae3424ffe82d6d1ed2505950999695422c5c43dc1928acc3397a1eb3a5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 07:55:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3229", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 07:55:52", "EXIF DateTimeDigitized": "2002:09:10 07:55:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "1623/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020278", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "203", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0927a86fcd1b9b30f975bed6ff1bedde4958339c0f321f00e1a95d7ce2198c6", "phash": "b7b7c9c880cdc98a", "dhash": "0c0c6c6c2d29d6ee", "phash_int": -5.208472581039077e+18, "collected_at": "2026-05-22T04:29:07.088105+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0279.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0279.JPG", "file_name": "IMG_0279.JPG", "file_stem": "IMG_0279", "file_ext": ".jpg", "file_size": 528648.0, "mtime": "2002-09-10T08:27:26+00:00", "mtime_ts": 1031646446.0, "ctime": "2002-09-10T08:27:26+00:00", "sha256_file": "fe54f4c550dae1b116296a990e29b31c8bdb0f186bdc5c6c903b427bd9e99481", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:27:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5028", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:27:27", "EXIF DateTimeDigitized": "2002:09:10 08:27:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020279", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98f5f1b7d0ec294273f6855f046b269a9567a88de094a17f0aeff0b412cfa350", "phash": "88f78ff04e85245b", "dhash": "0728f4b58197daf3", "phash_int": -8.577228703031549e+18, "collected_at": "2026-05-22T04:29:07.102107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0280.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0280.JPG", "file_name": "IMG_0280.JPG", "file_stem": "IMG_0280", "file_ext": ".jpg", "file_size": 532829.0, "mtime": "2002-09-10T08:27:56+00:00", "mtime_ts": 1031646476.0, "ctime": "2002-09-10T08:27:56+00:00", "sha256_file": "9fd55dd6fff285a05c763f005d946d1d94678b9a6092c3de4df58e4ba818cc99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:27:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4885", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:27:58", "EXIF DateTimeDigitized": "2002:09:10 08:27:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020280", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54165efd57370d51f926d556879aa9295e792991cbc07056d7f9b0aabf1b5490", "phash": "b0cf9b1770493857", "dhash": "f8debbaa4cbfd69c", "phash_int": -5.706171677884729e+18, "collected_at": "2026-05-22T04:29:07.131111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0281.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0281.JPG", "file_name": "IMG_0281.JPG", "file_stem": "IMG_0281", "file_ext": ".jpg", "file_size": 527384.0, "mtime": "2002-09-10T08:30:10+00:00", "mtime_ts": 1031646610.0, "ctime": "2002-09-10T08:30:10+00:00", "sha256_file": "db405c140f2951f98c8d8c588058ae2ecfca73482ceb485eaba3deca2cd7ef58", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:30:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6220", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:30:12", "EXIF DateTimeDigitized": "2002:09:10 08:30:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 23, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020281", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0abcf55cbcd32b569d59d99462efdc17b74865a49cb7e3447e43ffacd24869d5", "phash": "d8d8b8b0b1bb169a", "dhash": "ba943c02b0acb041", "phash_int": -2.821302097512033e+18, "collected_at": "2026-05-22T04:29:07.150107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0282.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0282.JPG", "file_name": "IMG_0282.JPG", "file_stem": "IMG_0282", "file_ext": ".jpg", "file_size": 520797.0, "mtime": "2002-09-10T08:30:22+00:00", "mtime_ts": 1031646622.0, "ctime": "2002-09-10T08:30:22+00:00", "sha256_file": "a38e1d768946c064f1489d202dcf5f3a58f8317f85a6b9a61f0b246339233f1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:30:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6828", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:30:23", "EXIF DateTimeDigitized": "2002:09:10 08:30:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020282", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "149", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe3053e445035880c1734006c45783688816f2d76af93b519c4b94627294e4c0", "phash": "8b8734366f05c3d3", "dhash": "6fefd0f251fd376a", "phash_int": -8.392681972186103e+18, "collected_at": "2026-05-22T04:29:07.184109+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0283.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0283.JPG", "file_name": "IMG_0283.JPG", "file_stem": "IMG_0283", "file_ext": ".jpg", "file_size": 593836.0, "mtime": "2002-09-10T08:30:38+00:00", "mtime_ts": 1031646638.0, "ctime": "2002-09-10T08:30:38+00:00", "sha256_file": "c17b5943067ef121727859be53d1345de752b8ee132779e9fd5911c257ae7851", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:30:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7038", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:30:39", "EXIF DateTimeDigitized": "2002:09:10 08:30:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 15, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020283", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "592657166f505ec76f56ce0d1e43c58fb1478884914149b49ecfe2654ea79d43", "phash": "f29e8030b7fea02e", "dhash": "342868680c8e89d8", "phash_int": -9.641923234770043e+17, "collected_at": "2026-05-22T04:29:07.191111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0284.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0284.JPG", "file_name": "IMG_0284.JPG", "file_stem": "IMG_0284", "file_ext": ".jpg", "file_size": 738331.0, "mtime": "2002-09-10T08:33:46+00:00", "mtime_ts": 1031646826.0, "ctime": "2002-09-10T08:33:46+00:00", "sha256_file": "16d566a6f5f617ec7f314e1146868079758356bc8763bab340a317a2c3508a51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:33:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6571", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:33:48", "EXIF DateTimeDigitized": "2002:09:10 08:33:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020284", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2815"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d638f26c1d0108480fd2e5b62d5b9a5999b781a9a67c621ecb1f3656636641d1", "phash": "961ceb340778c71e", "dhash": "f4dcec34e4c41dcd", "phash_int": -7.62996505997628e+18, "collected_at": "2026-05-22T04:29:07.250917+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0289.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0289.JPG", "file_name": "IMG_0289.JPG", "file_stem": "IMG_0289", "file_ext": ".jpg", "file_size": 421498.0, "mtime": "2002-09-10T09:07:54+00:00", "mtime_ts": 1031648874.0, "ctime": "2002-09-10T09:07:54+00:00", "sha256_file": "a7a9f7219a57cd7296ccf42e81da7f6b33415e33ad0f2a1c84e272d01f36ff3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:07:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2509", "EXIF ExposureTime": "1/200", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:07:56", "EXIF DateTimeDigitized": "2002:09:10 09:07:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020289", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "781bcebe5780499b7f3a603ac3e81af643f5387717428668934df651fcd607e2", "phash": "d9c42c2e76f28d89", "dhash": "00b0f00870701000", "phash_int": -2.7550284939681756e+18, "collected_at": "2026-05-22T04:29:07.257918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0290.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0290.JPG", "file_name": "IMG_0290.JPG", "file_stem": "IMG_0290", "file_ext": ".jpg", "file_size": 395426.0, "mtime": "2002-09-10T09:08:10+00:00", "mtime_ts": 1031648890.0, "ctime": "2002-09-10T09:08:10+00:00", "sha256_file": "e11342d59bac91c2857c7f24988853b3aab2cebe7166aed19ddbb066dcf67d38", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:08:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2700", "EXIF ExposureTime": "1/200", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:08:12", "EXIF DateTimeDigitized": "2002:09:10 09:08:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020290", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "309", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "561da01b75adf6967db049672926797a22e4528b92d432874b4c50c5eb4565c0", "phash": "a2af2c4a55a54e6e", "dhash": "efff6fdec9d1cf8f", "phash_int": -6.724107020864762e+18, "collected_at": "2026-05-22T04:29:07.289920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0291.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0291.JPG", "file_name": "IMG_0291.JPG", "file_stem": "IMG_0291", "file_ext": ".jpg", "file_size": 435735.0, "mtime": "2002-09-10T09:16:38+00:00", "mtime_ts": 1031649398.0, "ctime": "2002-09-10T09:16:38+00:00", "sha256_file": "4205e39a6d0f4f3c30de440a22302b13984545c31318d439f8dd710096fa17d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:16:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2798", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:16:39", "EXIF DateTimeDigitized": "2002:09:10 09:16:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020291", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9acd3977b2d446b92d8e7657054207aa1e5e2258e7bd01e190364f72c54d5ab5", "phash": "f4c3597226c9d174", "dhash": "010080c40f000302", "phash_int": -8.097051611846529e+17, "collected_at": "2026-05-22T04:29:07.301922+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0292.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0292.JPG", "file_name": "IMG_0292.JPG", "file_stem": "IMG_0292", "file_ext": ".jpg", "file_size": 442320.0, "mtime": "2002-09-10T09:16:56+00:00", "mtime_ts": 1031649416.0, "ctime": "2002-09-10T09:16:56+00:00", "sha256_file": "17642f1248323b160762e0f2ffd443fa48713999b83c644253a5b76e2129848c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:16:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3062", "EXIF ExposureTime": "1/800", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:16:58", "EXIF DateTimeDigitized": "2002:09:10 09:16:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020292", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c0d2bb2bada2fe63e2e351319e4f93ae67c1608be71d55cf9bef62f3fee4016", "phash": "f28d8978a7431cb6", "dhash": "0000284c0c050c0c", "phash_int": -9.689671935195145e+17, "collected_at": "2026-05-22T04:29:07.327919+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0293.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0293.JPG", "file_name": "IMG_0293.JPG", "file_stem": "IMG_0293", "file_ext": ".jpg", "file_size": 492523.0, "mtime": "2002-09-10T09:34:52+00:00", "mtime_ts": 1031650492.0, "ctime": "2002-09-10T09:34:52+00:00", "sha256_file": "15478889846a49999bd7f907cfde91a5cf8cf31ac3689f2e45719138da65bf11", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:34:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5730", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:34:54", "EXIF DateTimeDigitized": "2002:09:10 09:34:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020293", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e26013e3b34003ecac7430d78839e94c5a95190d6e84809fa7eabc2b4f97987", "phash": "f8872f30502f37d8", "dhash": "98625994940e1732", "phash_int": -5.384097458972775e+17, "collected_at": "2026-05-22T04:29:07.345923+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0294.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0294.JPG", "file_name": "IMG_0294.JPG", "file_stem": "IMG_0294", "file_ext": ".jpg", "file_size": 361950.0, "mtime": "2002-09-10T09:35:18+00:00", "mtime_ts": 1031650518.0, "ctime": "2002-09-10T09:35:18+00:00", "sha256_file": "329a92f8c7c09a252de8b6d19bfcd21300a190f30a98cf8f37ce65bd2880415e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 09:35:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4383", "EXIF ExposureTime": "1/640", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 09:35:19", "EXIF DateTimeDigitized": "2002:09:10 09:35:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020294", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6642"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33ff855631cfa4fe3bcc92abad1b396857368c3e6561060c356d79a2466c4e4d", "phash": "b2cbce4c58c88fd2", "dhash": "89c9498c9c969c0c", "phash_int": -5.56312608738374e+18, "collected_at": "2026-05-22T04:29:07.367921+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\STA_0285.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\STA_0285.JPG", "file_name": "STA_0285.JPG", "file_stem": "STA_0285", "file_ext": ".jpg", "file_size": 234417.0, "mtime": "2002-09-10T08:37:12+00:00", "mtime_ts": 1031647032.0, "ctime": "2002-09-10T08:37:12+00:00", "sha256_file": "b93bcb43fd5b4d3db75c8a86dbc4137147700c31b28b222d90a103956d288871", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:37:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6168", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:37:14", "EXIF DateTimeDigitized": "2002:09:10 08:37:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "512000/103", "EXIF FocalPlaneYResolution": "153600/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Manual", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 0, 0, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020285", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Medium", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47c54baa848b88f92f191d63c21a4a5cf99a1e54825acf42be22473a10950ffc", "phash": "b2b3d349499d5c4c", "dhash": "5b0d3f3f8f27c3f3", "phash_int": -5.569876002406049e+18, "collected_at": "2026-05-22T04:29:07.388922+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\IMG_0295.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\IMG_0295.JPG", "file_name": "IMG_0295.JPG", "file_stem": "IMG_0295", "file_ext": ".jpg", "file_size": 535554.0, "mtime": "2002-09-10T10:54:24+00:00", "mtime_ts": 1031655264.0, "ctime": "2002-09-10T10:54:24+00:00", "sha256_file": "3d76da6f8dbf3291124c737f5d02b5bc48d392bf249a4b42478ba27ed25420f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 10:54:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5781", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 10:54:25", "EXIF DateTimeDigitized": "2002:09:10 10:54:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 31, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020295", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d73568c500da350e970e1acf1f1251d1eecefbb809932a8653e72569017eee13", "phash": "85fdbda690c55843", "dhash": "0606d2c6c8e4ceec", "phash_int": -8.791662374466267e+18, "collected_at": "2026-05-22T04:29:07.389924+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\STB_0286.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\STB_0286.JPG", "file_name": "STB_0286.JPG", "file_stem": "STB_0286", "file_ext": ".jpg", "file_size": 270634.0, "mtime": "2002-09-10T08:37:34+00:00", "mtime_ts": 1031647054.0, "ctime": "2002-09-10T08:37:34+00:00", "sha256_file": "beb2edfce9bb35e289f6b55d18896f53000bd156b66eac5edfcf5d3a70e79ba8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:37:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6957", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:37:35", "EXIF DateTimeDigitized": "2002:09:10 08:37:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "512000/103", "EXIF FocalPlaneYResolution": "153600/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Manual", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 256, 1, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020286", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Medium", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "efcea72e5895580602961533446b55b5c993484acdfe5d273596a82417a75bf2", "phash": "84cab4365acdaf32", "dhash": "b5a5f7f2e56636f6", "phash_int": -8.878085569862849e+18, "collected_at": "2026-05-22T04:29:07.411922+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\STC_0287.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\STC_0287.JPG", "file_name": "STC_0287.JPG", "file_stem": "STC_0287", "file_ext": ".jpg", "file_size": 258353.0, "mtime": "2002-09-10T08:38:26+00:00", "mtime_ts": 1031647106.0, "ctime": "2002-09-10T08:38:26+00:00", "sha256_file": "b0ee00955f959a2eca90fb743889929c75f94daf9a4020f9f0b1baab0af1c6fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:38:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7255", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:38:28", "EXIF DateTimeDigitized": "2002:09:10 08:38:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "512000/103", "EXIF FocalPlaneYResolution": "153600/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Manual", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 512, 2, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020287", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Medium", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c64acac148c7fc20716f9b4e36dfc9333b188ea351a51c82b15ae241e43cdd1b", "phash": "c4a1c9c44c3b877f", "dhash": "b6964c3ce2ec1862", "phash_int": -4.2779163260955177e+18, "collected_at": "2026-05-22T04:29:07.415923+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-13\\IMG_2081.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-13\\IMG_2081.JPG", "file_name": "IMG_2081.JPG", "file_stem": "IMG_2081", "file_ext": ".jpg", "file_size": 75814.0, "mtime": "2002-09-13T22:48:00+00:00", "mtime_ts": 1031957280.0, "ctime": "2002-09-13T22:48:00+00:00", "sha256_file": "252dc11e1085dabf85b23c41a29bb69255373b5ec43bcaf04a52d1c2ce6035ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:13 22:48:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6721", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:13 22:48:01", "EXIF DateTimeDigitized": "2002:09:13 22:48:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65470", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9aa5231fbe908c07a92f6046931b98d219f85ddb481866c4a0048ad06413ec7", "phash": "c1ed66281e1b1be3", "dhash": "e0c6cad8c9dac8cc", "phash_int": -4.4728065324192164e+18, "collected_at": "2026-05-22T04:29:07.438928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-10\\STD_0288.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-10\\STD_0288.JPG", "file_name": "STD_0288.JPG", "file_stem": "STD_0288", "file_ext": ".jpg", "file_size": 247871.0, "mtime": "2002-09-10T08:38:46+00:00", "mtime_ts": 1031647126.0, "ctime": "2002-09-10T08:38:46+00:00", "sha256_file": "157db999890c241ec45a1cb9a9d33e0a0bbaac95042eeb03c69e63f8f85fb050", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:10 08:38:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6580", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:10 08:38:47", "EXIF DateTimeDigitized": "2002:09:10 08:38:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "512000/103", "EXIF FocalPlaneYResolution": "153600/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Manual", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0005": "[1, 768, 3, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "ST*:Stitch assist mode", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020288", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Medium", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "AE Lock", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "944ac45dfc17df2ed9b2fb0ecbdbdd2a3fffb864e475047659313b83c0cb7bf3", "phash": "cbcbcbdb1b12d084", "dhash": "6943a4494886864a", "phash_int": -3.7616889218254234e+18, "collected_at": "2026-05-22T04:29:07.442926+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2112_IMG.JPG", "file_name": "121-2112_IMG.JPG", "file_stem": "121-2112_IMG", "file_ext": ".jpg", "file_size": 1485803.0, "mtime": "2002-09-14T11:31:48+00:00", "mtime_ts": 1032003108.0, "ctime": "2002-09-14T11:31:48+00:00", "sha256_file": "cdd61c12cd9190049e9c65b97d17816cec33aa6a97cb3256c25a334f39c86dae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:31:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6804", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:31:49", "EXIF DateTimeDigitized": "2002:09:14 11:31:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "81/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "405"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4d6c8e16d351b2bbad6e42d8f3a1fa32f589954daacecc09335f48766e7fa4d", "phash": "ca97b719b136e148", "dhash": "4d69e96cf0b2278b", "phash_int": -3.84840603558957e+18, "collected_at": "2026-05-22T04:29:07.522928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2113_IMG.JPG", "file_name": "121-2113_IMG.JPG", "file_stem": "121-2113_IMG", "file_ext": ".jpg", "file_size": 1601670.0, "mtime": "2002-09-14T11:31:56+00:00", "mtime_ts": 1032003116.0, "ctime": "2002-09-14T11:31:56+00:00", "sha256_file": "9ad49645c31f70fc7705b6683d4859369c1af86ed463c2bff949e2aa9be09186", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:31:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6292", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:31:57", "EXIF DateTimeDigitized": "2002:09:14 11:31:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "57/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "285"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2f370c6a774a5b2ab187dff892e478c7c4e0383149fbd42f41f92e96628b461", "phash": "d313bd1c36723ec0", "dhash": "4c4ac9cccca0b337", "phash_int": -3.237035778279064e+18, "collected_at": "2026-05-22T04:29:07.539930+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2114_IMG.JPG", "file_name": "121-2114_IMG.JPG", "file_stem": "121-2114_IMG", "file_ext": ".jpg", "file_size": 2234874.0, "mtime": "2002-09-14T11:32:44+00:00", "mtime_ts": 1032003164.0, "ctime": "2002-09-14T11:32:44+00:00", "sha256_file": "40839ebc8163c9313281262057e8f87d73601eed20942b465609ff64fe48d3f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:32:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6994", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:32:45", "EXIF DateTimeDigitized": "2002:09:14 11:32:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1839/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1839"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a8dd1650c952ca3b976df3481951befd5b2d9c4fe39c1b3f7ef3c3904f9e605", "phash": "fc7a83636a0d472a", "dhash": "1f3d27270dc4f0b1", "phash_int": -2.5374596598875568e+17, "collected_at": "2026-05-22T04:29:07.669932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2115_IMG.JPG", "file_name": "121-2115_IMG.JPG", "file_stem": "121-2115_IMG", "file_ext": ".jpg", "file_size": 2349116.0, "mtime": "2002-09-14T11:32:50+00:00", "mtime_ts": 1032003170.0, "ctime": "2002-09-14T11:32:50+00:00", "sha256_file": "0c506fbe4e7ee04c618dc745d24b80bd5c97b37d5a51b1c45ae4b086bf49a916", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:32:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7313", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:32:51", "EXIF DateTimeDigitized": "2002:09:14 11:32:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "901/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32c95ae5ced1bf819537aa93522898d9f1a9b5959017fb7f7641d6a4b2dfea2c", "phash": "bf3d88703d877038", "dhash": "be3a4e4e1a80e0e3", "phash_int": -4.666423623235965e+18, "collected_at": "2026-05-22T04:29:07.671932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2117_IMG.JPG", "file_name": "121-2117_IMG.JPG", "file_stem": "121-2117_IMG", "file_ext": ".jpg", "file_size": 2134689.0, "mtime": "2002-09-14T11:33:42+00:00", "mtime_ts": 1032003222.0, "ctime": "2002-09-14T11:33:42+00:00", "sha256_file": "1c9c6a0177f45af06b197a3f5874c2e2510e1acafb8546933116e71cf1ef002d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:33:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5978", "EXIF ExposureTime": "1/400", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:33:43", "EXIF DateTimeDigitized": "2002:09:14 11:33:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "294", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1192"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e34eea11c804eea5d89a333acf32746fd78c8f775baedf566f47ae19c7dee2f", "phash": "cf07c3633994549e", "dhash": "c96b64360380f0b7", "phash_int": -3.5286369520862935e+18, "collected_at": "2026-05-22T04:29:07.940381+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2116_IMG.JPG", "file_name": "121-2116_IMG.JPG", "file_stem": "121-2116_IMG", "file_ext": ".jpg", "file_size": 1734317.0, "mtime": "2002-09-14T11:33:36+00:00", "mtime_ts": 1032003216.0, "ctime": "2002-09-14T11:33:36+00:00", "sha256_file": "2778f061df2c25f0214a50c0c395073b4c733bd4aef349350478cb8e0973f3d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:33:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5628", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:33:38", "EXIF DateTimeDigitized": "2002:09:14 11:33:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "503/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1006"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a63f70b8497c013ffe46b318aaf023d2c2dc86924a8dcf8e2f44d8fac574d7b", "phash": "c210856d7d978b3b", "dhash": "a688ddf401016443", "phash_int": -4.4629205254191483e+18, "collected_at": "2026-05-22T04:29:07.947382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2118_IMG.JPG", "file_name": "121-2118_IMG.JPG", "file_stem": "121-2118_IMG", "file_ext": ".jpg", "file_size": 1890983.0, "mtime": "2002-09-14T11:33:54+00:00", "mtime_ts": 1032003234.0, "ctime": "2002-09-14T11:33:54+00:00", "sha256_file": "85997c81a5c154bd7ce4f898484da54c698e166d1416fb966360295f1327240f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:33:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6242", "EXIF ExposureTime": "1/640", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:33:55", "EXIF DateTimeDigitized": "2002:09:14 11:33:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "213/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1065"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1fd095468779bf427cdcb24336f426655397d62a7a966c104995c2027dfb78db", "phash": "d8c6f364635d0a1e", "dhash": "8c1471e9abb21219", "phash_int": -2.8263041036390866e+18, "collected_at": "2026-05-22T04:29:08.081000+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2119_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2119_IMG.JPG", "file_name": "121-2119_IMG.JPG", "file_stem": "121-2119_IMG", "file_ext": ".jpg", "file_size": 2805195.0, "mtime": "2002-09-14T11:34:32+00:00", "mtime_ts": 1032003272.0, "ctime": "2002-09-14T11:34:32+00:00", "sha256_file": "6683285cdbd28bc8fd6f574c2f8bd93d37d277e9691b8783314ebb8b3004b648", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:34:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7463", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:34:34", "EXIF DateTimeDigitized": "2002:09:14 11:34:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "233/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212119", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1864"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a9fe56a9cc8b5f41e139317a05a236661bf4e9229d4a4ab2066714dc2c8390c6", "phash": "f2c45971632ce49d", "dhash": "9d8ce6ce8d9c3c1c", "phash_int": -9.535388775656396e+17, "collected_at": "2026-05-22T04:29:08.211012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2120_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2120_IMG.JPG", "file_name": "121-2120_IMG.JPG", "file_stem": "121-2120_IMG", "file_ext": ".jpg", "file_size": 1541916.0, "mtime": "2002-09-14T11:34:46+00:00", "mtime_ts": 1032003286.0, "ctime": "2002-09-14T11:34:46+00:00", "sha256_file": "1f776438c093b20e9ea07748aee53614b92ccaa3ad06b322c69bfa4bd776233a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:34:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7131", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:34:47", "EXIF DateTimeDigitized": "2002:09:14 11:34:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "261/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "261"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9eab2ea12503d559e57cbdfc0562a9c86a5f2471add078b7c0b904bee905afe2", "phash": "fa442b607c2c8bbb", "dhash": "a745ed25359c1b13", "phash_int": -4.131575724110941e+17, "collected_at": "2026-05-22T04:29:08.238007+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2121_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2121_IMG.JPG", "file_name": "121-2121_IMG.JPG", "file_stem": "121-2121_IMG", "file_ext": ".jpg", "file_size": 1798407.0, "mtime": "2002-09-14T11:34:52+00:00", "mtime_ts": 1032003292.0, "ctime": "2002-09-14T11:34:52+00:00", "sha256_file": "41a892819bf4423e992f070b45473efd93ab801013fe68ad0649df0159581c85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:34:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7372", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:34:53", "EXIF DateTimeDigitized": "2002:09:14 11:34:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "77/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "308"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54196e8bbadb99c83e99039d51bdf52eb36bcd4ca29b83e5e13291d7e59edb3c", "phash": "fa462b466e38819f", "dhash": "2b45a92929891b13", "phash_int": -4.125947343609197e+17, "collected_at": "2026-05-22T04:29:08.337011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2122_IMG.JPG", "file_name": "121-2122_IMG.JPG", "file_stem": "121-2122_IMG", "file_ext": ".jpg", "file_size": 1525299.0, "mtime": "2002-09-14T11:35:12+00:00", "mtime_ts": 1032003312.0, "ctime": "2002-09-14T11:35:12+00:00", "sha256_file": "63de2014a0f34eaf078c22cc016dcd4bae56894bd28c5c3c4b877e1da40cb957", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:35:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6512", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:35:14", "EXIF DateTimeDigitized": "2002:09:14 11:35:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "33/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "330"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b67cb6ba7ae32eb04146a0dce6b7525293d8528953edd84cfb3e058f4c4f99e", "phash": "c30f2c3a7b6c60b3", "dhash": "e3e9c2c9099d958d", "phash_int": -4.391242481972519e+18, "collected_at": "2026-05-22T04:29:08.348013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2123_IMG.JPG", "file_name": "121-2123_IMG.JPG", "file_stem": "121-2123_IMG", "file_ext": ".jpg", "file_size": 1848597.0, "mtime": "2002-09-14T11:35:18+00:00", "mtime_ts": 1032003318.0, "ctime": "2002-09-14T11:35:18+00:00", "sha256_file": "71b7f6e23842415821b90bc813580d70ce5d0d22898f749eaa224a6c8fb8fe90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:35:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6584", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:35:20", "EXIF DateTimeDigitized": "2002:09:14 11:35:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "43/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "430"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "496f4c021b4874e36f3fab89c7ac8a651357fe8596ccf19f9349e3294b4629b5", "phash": "e1072e59ee709947", "dhash": "d3e2ca8593939989", "phash_int": -2.2317641265514678e+18, "collected_at": "2026-05-22T04:29:08.477177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2124_IMG.JPG", "file_name": "121-2124_IMG.JPG", "file_stem": "121-2124_IMG", "file_ext": ".jpg", "file_size": 1921111.0, "mtime": "2002-09-14T11:36:10+00:00", "mtime_ts": 1032003370.0, "ctime": "2002-09-14T11:36:10+00:00", "sha256_file": "51c56eeec224cfe3bbe7eaae3215c96a3125b9972bd7e9ef6e1f204613a9869a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:36:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6065", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:36:12", "EXIF DateTimeDigitized": "2002:09:14 11:36:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2167/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2167"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4325c4a4468317b77f396543a7aac041f8934fe471d96d23a19858bec53d50bf", "phash": "f862c6431f741d95", "dhash": "c587861b18110f30", "phash_int": -5.486582129929673e+17, "collected_at": "2026-05-22T04:29:08.492178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2125_IMG.JPG", "file_name": "121-2125_IMG.JPG", "file_stem": "121-2125_IMG", "file_ext": ".jpg", "file_size": 2381741.0, "mtime": "2002-09-14T11:36:20+00:00", "mtime_ts": 1032003380.0, "ctime": "2002-09-14T11:36:20+00:00", "sha256_file": "3b58c3e9dfaf3a7e49be36584a7e02286ac0c32baa086b9014dea692dabca909", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:36:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6089", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:36:22", "EXIF DateTimeDigitized": "2002:09:14 11:36:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3449/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3449"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "672288b5c1f430204fd7a7c3565c81354ef943465007bbcc40202e36f7ae4862", "phash": "e14f8c127d339e64", "dhash": "62c1c3838d8d8887", "phash_int": -2.2113948809777894e+18, "collected_at": "2026-05-22T04:29:09.265856+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2126_IMG.JPG", "file_name": "121-2126_IMG.JPG", "file_stem": "121-2126_IMG", "file_ext": ".jpg", "file_size": 1906424.0, "mtime": "2002-09-14T11:36:50+00:00", "mtime_ts": 1032003410.0, "ctime": "2002-09-14T11:36:50+00:00", "sha256_file": "8acf4b592c7ea29b98dfb74352d85f58142e66b7d5a310aa9d3e42265d30c0c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:36:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5715", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 11:36:51", "EXIF DateTimeDigitized": "2002:09:14 11:36:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "333/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1332"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae76f41375e694cae099c7a4c36c54ed3793709996990405efffcf216834074c", "phash": "bf0192174d77648d", "dhash": "d8f93f3b360e1d2d", "phash_int": -4.683301508707032e+18, "collected_at": "2026-05-22T04:29:09.421861+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2127_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2127_IMG.JPG", "file_name": "121-2127_IMG.JPG", "file_stem": "121-2127_IMG", "file_ext": ".jpg", "file_size": 1535555.0, "mtime": "2002-09-14T12:16:42+00:00", "mtime_ts": 1032005802.0, "ctime": "2002-09-14T12:16:42+00:00", "sha256_file": "e4576aab2384ce336106ed1512290ec20edefd112a73dabaab633538eb44a7e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:16:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4758", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:16:43", "EXIF DateTimeDigitized": "2002:09:14 12:16:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b31c282402bfabed892ccab818a386dcc48987de681fb7808713b65326e69c5e", "phash": "c0c3e0f07a7a8e9e", "dhash": "a0c0e060b0e09080", "phash_int": -4.556551074517185e+18, "collected_at": "2026-05-22T04:29:09.429862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2128_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2128_IMG.JPG", "file_name": "121-2128_IMG.JPG", "file_stem": "121-2128_IMG", "file_ext": ".jpg", "file_size": 2197524.0, "mtime": "2002-09-14T12:16:48+00:00", "mtime_ts": 1032005808.0, "ctime": "2002-09-14T12:16:48+00:00", "sha256_file": "595e2ec87ed737a0fd8d2a300bc50d00135f672e4207674bb23b1a21b17006fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:16:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5758", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:16:49", "EXIF DateTimeDigitized": "2002:09:14 12:16:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0eb4f8fd2f96a969a1466661197c10d0c0391607fe004a4592b21d10d23c80a", "phash": "c848c997d3365da9", "dhash": "d0e3b30cc972d6f3", "phash_int": -4.014737413879997e+18, "collected_at": "2026-05-22T04:29:09.577866+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2129_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2129_IMG.JPG", "file_name": "121-2129_IMG.JPG", "file_stem": "121-2129_IMG", "file_ext": ".jpg", "file_size": 2803270.0, "mtime": "2002-09-14T12:21:46+00:00", "mtime_ts": 1032006106.0, "ctime": "2002-09-14T12:21:46+00:00", "sha256_file": "a6b3cddb1d498f0143086bbc4586497fbfcbdebde53c5cd83a37a82953432af5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:21:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7243", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:21:47", "EXIF DateTimeDigitized": "2002:09:14 12:21:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "287", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9aaff9ce482db08e5a504d9bcd54cc483b4a14725d511c00c795560dea6e98d9", "phash": "c242c3e3311bfe9a", "dhash": "88c4f4948522d0e0", "phash_int": -4.448778101339718e+18, "collected_at": "2026-05-22T04:29:09.660869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2130_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2130_IMG.JPG", "file_name": "121-2130_IMG.JPG", "file_stem": "121-2130_IMG", "file_ext": ".jpg", "file_size": 2556650.0, "mtime": "2002-09-14T12:21:50+00:00", "mtime_ts": 1032006110.0, "ctime": "2002-09-14T12:21:50+00:00", "sha256_file": "5d9590075f5e05e5ca3b612d2e07be0308376e1c300e6377af927a1f4b0fb362", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:21:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7329", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:21:52", "EXIF DateTimeDigitized": "2002:09:14 12:21:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "adbfece0a7bd1d1bbe7229de4dc594b894ee0f2e8fef69895cd9e28fa97e5998", "phash": "b1b1b3184879b5f1", "dhash": "9e9c9c88d46c188c", "phash_int": -5.642531941241998e+18, "collected_at": "2026-05-22T04:29:09.771872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2131_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2131_IMG.JPG", "file_name": "121-2131_IMG.JPG", "file_stem": "121-2131_IMG", "file_ext": ".jpg", "file_size": 2352532.0, "mtime": "2002-09-14T12:21:54+00:00", "mtime_ts": 1032006114.0, "ctime": "2002-09-14T12:21:54+00:00", "sha256_file": "30ace60b051155e75debab9f0371d39ccf4144698f99cc9c1957a75d832ec758", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:21:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7608", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:21:56", "EXIF DateTimeDigitized": "2002:09:14 12:21:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "315d7ec1ceffdf4dc4149a6defab9e6480ba4b945aff8938fc69e67b44eb0221", "phash": "d0e9c6e42e1f48f2", "dhash": "828ad11b9e963c8c", "phash_int": -3.392962160918313e+18, "collected_at": "2026-05-22T04:29:09.787872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2132_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2132_IMG.JPG", "file_name": "121-2132_IMG.JPG", "file_stem": "121-2132_IMG", "file_ext": ".jpg", "file_size": 2379265.0, "mtime": "2002-09-14T12:21:58+00:00", "mtime_ts": 1032006118.0, "ctime": "2002-09-14T12:21:58+00:00", "sha256_file": "b201bcc605179402fbcc8389d082674a3a0149ffc7b01ede7a1bf4d3a9c530a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:22:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8497", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:22:00", "EXIF DateTimeDigitized": "2002:09:14 12:22:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbe2ca37a65a14edcacc79f356822082872f0be4660bd8940180988f2b9279d5", "phash": "881aa479a3af1a7d", "dhash": "951431c75031b296", "phash_int": -8.639412092812715e+18, "collected_at": "2026-05-22T04:29:09.955118+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2133_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2133_IMG.JPG", "file_name": "121-2133_IMG.JPG", "file_stem": "121-2133_IMG", "file_ext": ".jpg", "file_size": 2348604.0, "mtime": "2002-09-14T12:22:02+00:00", "mtime_ts": 1032006122.0, "ctime": "2002-09-14T12:22:02+00:00", "sha256_file": "895b55fdfafc037b8af62b2afee8754ff57ffab7034ed3e41f92cd3a400a6a79", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:22:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8116", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:22:04", "EXIF DateTimeDigitized": "2002:09:14 12:22:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212133", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87696b71f8ddb33d3c86ffad42778a46f08f05e0faf6c7f0eb032b44381963b7", "phash": "9610d92fa547563d", "dhash": "b495bce4bf6d46d2", "phash_int": -7.633362569733384e+18, "collected_at": "2026-05-22T04:29:09.998119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2134_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2134_IMG.JPG", "file_name": "121-2134_IMG.JPG", "file_stem": "121-2134_IMG", "file_ext": ".jpg", "file_size": 2459054.0, "mtime": "2002-09-14T12:22:08+00:00", "mtime_ts": 1032006128.0, "ctime": "2002-09-14T12:22:08+00:00", "sha256_file": "4f986942dffc0e4277839f9295ec0311c0b7933ca5b8b49872403b86574221ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:22:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8861", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:22:09", "EXIF DateTimeDigitized": "2002:09:14 12:22:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212134", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "301", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19dcd6e3c60f2a4408c52df1ecf9e0d1d009d418d1fe3803c5f16d14c84e7074", "phash": "da605bbc87693345", "dhash": "89a999a3e6393171", "phash_int": -2.7110661103932406e+18, "collected_at": "2026-05-22T04:29:10.070205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2135_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2135_IMG.JPG", "file_name": "121-2135_IMG.JPG", "file_stem": "121-2135_IMG", "file_ext": ".jpg", "file_size": 2244669.0, "mtime": "2002-09-14T12:22:14+00:00", "mtime_ts": 1032006134.0, "ctime": "2002-09-14T12:22:14+00:00", "sha256_file": "b79708c1a4b9c6e9c7331163e485c1465f16d72b35dfa4fff4e4091db599b18f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:22:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8432", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:22:15", "EXIF DateTimeDigitized": "2002:09:14 12:22:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212135", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8280ee83ce5e3e605fee891e02b0726f9166a6ac1dbd87e42cb0f2d35b510cf", "phash": "bda52caad20af543", "dhash": "3636367d593a3333", "phash_int": -4.781366317203918e+18, "collected_at": "2026-05-22T04:29:10.109203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2136_IMG.JPG", "file_name": "121-2136_IMG.JPG", "file_stem": "121-2136_IMG", "file_ext": ".jpg", "file_size": 2034225.0, "mtime": "2002-09-14T12:22:26+00:00", "mtime_ts": 1032006146.0, "ctime": "2002-09-14T12:22:26+00:00", "sha256_file": "2aa7461ff1d68857f69b00be1d02a567db99c951c1949fe19fef4afe381ca84a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:22:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8270", "EXIF ExposureTime": "1/800", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:22:27", "EXIF DateTimeDigitized": "2002:09:14 12:22:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1351/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10808"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "546f7b433a9ca0f64317bc0fb8776c886ff8bf6e546e83bca053eacc5db6bc31", "phash": "9897373423998ece", "dhash": "7eaab293b3b031b3", "phash_int": -7.451426361386103e+18, "collected_at": "2026-05-22T04:29:10.168304+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2137_IMG.JPG", "file_name": "121-2137_IMG.JPG", "file_stem": "121-2137_IMG", "file_ext": ".jpg", "file_size": 2000566.0, "mtime": "2002-09-14T12:23:06+00:00", "mtime_ts": 1032006186.0, "ctime": "2002-09-14T12:23:06+00:00", "sha256_file": "3bd399fe33ec1b3bd097c40ab06cc44e416e20af16726852199e265f7b3f2eb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:23:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7929", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:23:07", "EXIF DateTimeDigitized": "2002:09:14 12:23:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1f6405cb8c1cbd52836cdc4954146b3d86e07f6cafd1702dfa045b70b6d3da9", "phash": "9185cede1c7b5c30", "dhash": "70da9e9a9c209815", "phash_int": -7.960729312951576e+18, "collected_at": "2026-05-22T04:29:10.223307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2138_IMG.JPG", "file_name": "121-2138_IMG.JPG", "file_stem": "121-2138_IMG", "file_ext": ".jpg", "file_size": 1964013.0, "mtime": "2002-09-14T12:23:12+00:00", "mtime_ts": 1032006192.0, "ctime": "2002-09-14T12:23:12+00:00", "sha256_file": "7302354ddd0d02551ab4dc8ec80e34d7fabd858a94d6a98cd84f95d9a5cbbe16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:23:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7269", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:23:14", "EXIF DateTimeDigitized": "2002:09:14 12:23:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "803/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "352", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3212"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05354b132a954e8c7ce78c9c679f97ac44b3f97d1e934f4017a9ec12777b1c9b", "phash": "953822d61e397a5b", "dhash": "3a8e92b2f8d4dec4", "phash_int": -7.694361660337063e+18, "collected_at": "2026-05-22T04:29:10.278309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2139_IMG.JPG", "file_name": "121-2139_IMG.JPG", "file_stem": "121-2139_IMG", "file_ext": ".jpg", "file_size": 1616871.0, "mtime": "2002-09-14T12:23:18+00:00", "mtime_ts": 1032006198.0, "ctime": "2002-09-14T12:23:18+00:00", "sha256_file": "1335fffb10bc03dc39a96c218073f77894f53f00b233be7425159505f60d364c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:23:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7022", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:23:19", "EXIF DateTimeDigitized": "2002:09:14 12:23:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1951/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1951"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc273dbe9505ef4fc38f2782b52a00c5202ffe885a3f80143951336b9db40005", "phash": "9dc2fe5278435629", "dhash": "807e5bd312fc5636", "phash_int": -7.078816034114546e+18, "collected_at": "2026-05-22T04:29:10.348311+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2140_IMG.JPG", "file_name": "121-2140_IMG.JPG", "file_stem": "121-2140_IMG", "file_ext": ".jpg", "file_size": 1875421.0, "mtime": "2002-09-14T12:23:36+00:00", "mtime_ts": 1032006216.0, "ctime": "2002-09-14T12:23:36+00:00", "sha256_file": "28a318b1ccad3daed50b37cc5f488d2ed851dbd2834f5b71114a4b2c822e00a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:23:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6850", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:23:37", "EXIF DateTimeDigitized": "2002:09:14 12:23:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5197/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5197"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e3549cd2d8ad18545cbbf8c27ad0fd7b41292966653b96e9038eb1b6376532d", "phash": "eb45f0c80f70534f", "dhash": "a4360a1763899b19", "phash_int": -1.4935229593603064e+18, "collected_at": "2026-05-22T04:29:10.405313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2141_IMG.JPG", "file_name": "121-2141_IMG.JPG", "file_stem": "121-2141_IMG", "file_ext": ".jpg", "file_size": 1923436.0, "mtime": "2002-09-14T12:23:40+00:00", "mtime_ts": 1032006220.0, "ctime": "2002-09-14T12:23:40+00:00", "sha256_file": "72ea4c4dde0a8d92572c36b3d0172cbb01c4a390fa5577572b4bba5f0c347716", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:23:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6866", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:23:42", "EXIF DateTimeDigitized": "2002:09:14 12:23:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8991/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8991"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a9e2044cf270632fd07ea246bdfc9c88e187f5538e540bda297308f619acb68", "phash": "e11c23d02f9ce19f", "dhash": "c2d1c7a2c2cacbcf", "phash_int": -2.2258647387688873e+18, "collected_at": "2026-05-22T04:29:10.481584+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2142_IMG.JPG", "file_name": "121-2142_IMG.JPG", "file_stem": "121-2142_IMG", "file_ext": ".jpg", "file_size": 1353704.0, "mtime": "2002-09-14T12:24:00+00:00", "mtime_ts": 1032006240.0, "ctime": "2002-09-14T12:24:00+00:00", "sha256_file": "e98a8be75dc36f2e210b38848fb578e2125107903c9a2ac1ef487b39f84d7655", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:24:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6661", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:24:02", "EXIF DateTimeDigitized": "2002:09:14 12:24:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2ea7af749f9e6a9e77d23f20aaba4d20bf973d7319524ae2106c4483161dfb9", "phash": "f67bef3081b52842", "dhash": "0f0c0ddc8ca404e4", "phash_int": -6.856915266302668e+17, "collected_at": "2026-05-22T04:29:10.499583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2143_IMG.JPG", "file_name": "121-2143_IMG.JPG", "file_stem": "121-2143_IMG", "file_ext": ".jpg", "file_size": 1222084.0, "mtime": "2002-09-14T12:24:16+00:00", "mtime_ts": 1032006256.0, "ctime": "2002-09-14T12:24:16+00:00", "sha256_file": "0c7f71a2caf3cb6a95167dc43327633ffdf838c08f14d368aac2883b4b7e32e5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:24:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6521", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:24:18", "EXIF DateTimeDigitized": "2002:09:14 12:24:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3417/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "204", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13668"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3722a4690a858b769a4feb837661d15b350af787d6b660ee074cd445b21951e", "phash": "eb22563bbc22e0bc", "dhash": "0949979b1b5b0980", "phash_int": -1.5035445110288627e+18, "collected_at": "2026-05-22T04:29:10.627588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2145_IMG.JPG", "file_name": "121-2145_IMG.JPG", "file_stem": "121-2145_IMG", "file_ext": ".jpg", "file_size": 1286382.0, "mtime": "2002-09-14T12:38:30+00:00", "mtime_ts": 1032007110.0, "ctime": "2002-09-14T12:38:30+00:00", "sha256_file": "be92a82e27dff7bfe96789fa54b9bc2eb09200a7a8e922918fd9cd63b2a89db6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5762", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:31", "EXIF DateTimeDigitized": "2002:09:14 12:38:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1dfd6715e1130a38e1b2041d640dfed2ba742dd5bec8a92c850c78618011cc9", "phash": "d12391d3a389bf07", "dhash": "9999a7ab882cb0a4", "phash_int": -3.3766949574298993e+18, "collected_at": "2026-05-22T04:29:10.635589+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2146_IMG.JPG", "file_name": "121-2146_IMG.JPG", "file_stem": "121-2146_IMG", "file_ext": ".jpg", "file_size": 1204540.0, "mtime": "2002-09-14T12:38:34+00:00", "mtime_ts": 1032007114.0, "ctime": "2002-09-14T12:38:34+00:00", "sha256_file": "272914fc293531473e5a17a388796b891aaf3182628f81bebf710868ce0379bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5586", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:36", "EXIF DateTimeDigitized": "2002:09:14 12:38:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41c751d13d72953db55d01d36238477f24a725d011ecab2a1fa669e7ddda954e", "phash": "95e1b9dee0e8ac44", "dhash": "505cd6c2c8745858", "phash_int": -7.646626325391169e+18, "collected_at": "2026-05-22T04:29:10.760595+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2147_IMG.JPG", "file_name": "121-2147_IMG.JPG", "file_stem": "121-2147_IMG", "file_ext": ".jpg", "file_size": 1222376.0, "mtime": "2002-09-14T12:38:40+00:00", "mtime_ts": 1032007120.0, "ctime": "2002-09-14T12:38:40+00:00", "sha256_file": "ac49e5fdf0cc29c8a5810d9ec4925df6f93e3daee0769d97d53211d88965363b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5062", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:41", "EXIF DateTimeDigitized": "2002:09:14 12:38:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9d2951d00b4cd8b1bab593128a79432772900e6d665c23e66ea40ed5581fe4a", "phash": "98c6deb8c4e9e921", "dhash": "303c44b4be983038", "phash_int": -7.438012849396783e+18, "collected_at": "2026-05-22T04:29:10.771750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2148_IMG.JPG", "file_name": "121-2148_IMG.JPG", "file_stem": "121-2148_IMG", "file_ext": ".jpg", "file_size": 1046415.0, "mtime": "2002-09-14T12:38:46+00:00", "mtime_ts": 1032007126.0, "ctime": "2002-09-14T12:38:46+00:00", "sha256_file": "b457d99910ea07c6e03415a9868dde914f21d7f62cec3951ab224f20fdbbc6cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5609", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:47", "EXIF DateTimeDigitized": "2002:09:14 12:38:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3719/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212148", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3719"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c924ffa6bc675c885b897932552a91c8824d22511ff5389904f938ae1233365", "phash": "cf34988eb4d9a694", "dhash": "2c2c4c48646b5149", "phash_int": -3.516017670382574e+18, "collected_at": "2026-05-22T04:29:10.849758+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2149_IMG.JPG", "file_name": "121-2149_IMG.JPG", "file_stem": "121-2149_IMG", "file_ext": ".jpg", "file_size": 1114279.0, "mtime": "2002-09-14T12:38:52+00:00", "mtime_ts": 1032007132.0, "ctime": "2002-09-14T12:38:52+00:00", "sha256_file": "5235da07895d0d16c430286cc54103f6edaccc802213b7691ae9e5c85d734711", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6697", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:53", "EXIF DateTimeDigitized": "2002:09:14 12:38:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "99/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3960"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce290b66e7e0b2a5c611976a32c4ec5b4516e2dab7a6f6cc3e67423f95882f9f", "phash": "e31cebc1ec5190f2", "dhash": "10432c70c4d8c94b", "phash_int": -2.0815297096260278e+18, "collected_at": "2026-05-22T04:29:10.890758+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2150_IMG.JPG", "file_name": "121-2150_IMG.JPG", "file_stem": "121-2150_IMG", "file_ext": ".jpg", "file_size": 987904.0, "mtime": "2002-09-14T12:38:58+00:00", "mtime_ts": 1032007138.0, "ctime": "2002-09-14T12:38:58+00:00", "sha256_file": "a1af4b42c0ed24d87952c20f6396ef84e3b70be481428012ab82d56700c6f1d5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:38:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5953", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:38:59", "EXIF DateTimeDigitized": "2002:09:14 12:38:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "99/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3960"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9372b2bc857da1d5ea6c0f83045d63664e60b519cd4d5127e23dc17afc1bfb43", "phash": "cb8fdbfd06303414", "dhash": "62626865471591f9", "phash_int": -3.7785596825635256e+18, "collected_at": "2026-05-22T04:29:10.958866+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2151_IMG.JPG", "file_name": "121-2151_IMG.JPG", "file_stem": "121-2151_IMG", "file_ext": ".jpg", "file_size": 800330.0, "mtime": "2002-09-14T12:39:04+00:00", "mtime_ts": 1032007144.0, "ctime": "2002-09-14T12:39:04+00:00", "sha256_file": "c68f9041ed6baba610cfef785ed8e89c1ec355a7f5e06bca769640b8e420e29c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:39:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4847", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:39:05", "EXIF DateTimeDigitized": "2002:09:14 12:39:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4279/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4279"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2bbbf4a2e576603d2f66c59893c4006fef734ede89dc192a0f4f2bf83cb194a2", "phash": "d9cb096766a409db", "dhash": "a27a32a62812b6b2", "phash_int": -2.7530964074986184e+18, "collected_at": "2026-05-22T04:29:10.980878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2152_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2152_IMG.JPG", "file_name": "121-2152_IMG.JPG", "file_stem": "121-2152_IMG", "file_ext": ".jpg", "file_size": 1024555.0, "mtime": "2002-09-14T12:39:12+00:00", "mtime_ts": 1032007152.0, "ctime": "2002-09-14T12:39:12+00:00", "sha256_file": "7adf135abeb1c985c06ac34e8c58907291c72db182ef5d5424e825b02de1a4d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 12:39:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5824", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 12:39:14", "EXIF DateTimeDigitized": "2002:09:14 12:39:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212152", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3fa236d06a3ba35641068130a2bf00701d633db84c2342e2dbd92dc0224944c", "phash": "d0419ea163e277e6", "dhash": "c8b0b194c692a929", "phash_int": -3.440294224331639e+18, "collected_at": "2026-05-22T04:29:11.072871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2153_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2153_IMG.JPG", "file_name": "121-2153_IMG.JPG", "file_stem": "121-2153_IMG", "file_ext": ".jpg", "file_size": 962965.0, "mtime": "2002-09-14T14:43:46+00:00", "mtime_ts": 1032014626.0, "ctime": "2002-09-14T14:43:46+00:00", "sha256_file": "699ba378bb3d07a2215fac4bb59fe1f7d87adf139054c982bdae2dd42c521a20", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:43:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6396", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:43:47", "EXIF DateTimeDigitized": "2002:09:14 14:43:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4149/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212153", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "20745"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "032710ea903b54fc11bb4a320700e3cbd13b65c987fd794362f5e4e31a164b35", "phash": "c5c230b1cf6613db", "dhash": "8d88c8626a1aa6b6", "phash_int": -4.196738362508963e+18, "collected_at": "2026-05-22T04:29:11.077874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2154_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2154_IMG.JPG", "file_name": "121-2154_IMG.JPG", "file_stem": "121-2154_IMG", "file_ext": ".jpg", "file_size": 1000729.0, "mtime": "2002-09-14T14:50:12+00:00", "mtime_ts": 1032015012.0, "ctime": "2002-09-14T14:50:12+00:00", "sha256_file": "f03adfe4e0ef8433094f15cbbbb050bc74ad3cffcf909560c71e4dd44b8103c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:50:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4670", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:50:14", "EXIF DateTimeDigitized": "2002:09:14 14:50:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212154", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d98cd195f6e8ce1d9da84999c46c49be0e4b77b56eb5978477bbd1589c775e6", "phash": "8c0ce6e635f5862e", "dhash": "e4f0f292f0e9c8f0", "phash_int": -8.355049332256963e+18, "collected_at": "2026-05-22T04:29:11.159876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2155_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2155_IMG.JPG", "file_name": "121-2155_IMG.JPG", "file_stem": "121-2155_IMG", "file_ext": ".jpg", "file_size": 994526.0, "mtime": "2002-09-14T14:51:26+00:00", "mtime_ts": 1032015086.0, "ctime": "2002-09-14T14:51:26+00:00", "sha256_file": "10e909d65836809d0ff708906b92a37c83324832fc64d3bf3e93e6e9e3e8824e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:51:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6224", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:51:27", "EXIF DateTimeDigitized": "2002:09:14 14:51:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212155", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5593f2ab2e92866f19183affe891a965d6dda89c49d527ef1885027bdf3e5b2", "phash": "938c84d3e33c7ec2", "dhash": "e0f0785bc958d8c9", "phash_int": -7.814725207809294e+18, "collected_at": "2026-05-22T04:29:11.170874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2156_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2156_IMG.JPG", "file_name": "121-2156_IMG.JPG", "file_stem": "121-2156_IMG", "file_ext": ".jpg", "file_size": 970461.0, "mtime": "2002-09-14T14:53:36+00:00", "mtime_ts": 1032015216.0, "ctime": "2002-09-14T14:53:36+00:00", "sha256_file": "48f3822311dc1fe5dc2d98c82f3813cee00f15ea038e68d397600624047ffafc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:53:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4859", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:53:38", "EXIF DateTimeDigitized": "2002:09:14 14:53:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212156", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7dc6f2ccf380b7bd537fc30e76e9f9c4ea625a588dc77f9de9b335d967328090", "phash": "c6c0f0bf0967f4a8", "dhash": "8ce8e1f1732c6cd0", "phash_int": -4.125032555384147e+18, "collected_at": "2026-05-22T04:29:11.205878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2158_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2158_IMG.JPG", "file_name": "121-2158_IMG.JPG", "file_stem": "121-2158_IMG", "file_ext": ".jpg", "file_size": 658865.0, "mtime": "2002-09-14T14:55:24+00:00", "mtime_ts": 1032015324.0, "ctime": "2002-09-14T14:55:24+00:00", "sha256_file": "6de31595203936d4e49d0791f2d06ebfb4949b1b0d96fe5ff1cc0dc8100de817", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5590", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:55:26", "EXIF DateTimeDigitized": "2002:09:14 14:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212158", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce62d1129cfc614f76b1c0e710ae418588c7a1ad01f9423f6441af2ba76a6018", "phash": "8996e6f16bf9300c", "dhash": "ea69fb339392d3a3", "phash_int": -8.532378519433826e+18, "collected_at": "2026-05-22T04:29:11.268882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2157_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2157_IMG.JPG", "file_name": "121-2157_IMG.JPG", "file_stem": "121-2157_IMG", "file_ext": ".jpg", "file_size": 1055623.0, "mtime": "2002-09-14T14:54:20+00:00", "mtime_ts": 1032015260.0, "ctime": "2002-09-14T14:54:20+00:00", "sha256_file": "4198f31f5f6f03d9822f0be088f49f41c517032c86896d8fb18b2ec164230603", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 14:54:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5755", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 14:54:22", "EXIF DateTimeDigitized": "2002:09:14 14:54:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212157", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e058249004813dd8e30cbfefa04680ee7a98765219823d95dac8145c0331ce24", "phash": "eee4e3c84c21b8cb", "dhash": "c70907343131496b", "phash_int": -1.2326099485824305e+18, "collected_at": "2026-05-22T04:29:11.274880+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2160_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2160_IMG.JPG", "file_name": "121-2160_IMG.JPG", "file_stem": "121-2160_IMG", "file_ext": ".jpg", "file_size": 676253.0, "mtime": "2002-09-14T15:27:02+00:00", "mtime_ts": 1032017222.0, "ctime": "2002-09-14T15:27:02+00:00", "sha256_file": "ef1659eb76981a3ce11777c78663ab772af1b3dd67915f1acdf6bde5be74ac92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:27:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5187", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 15:27:04", "EXIF DateTimeDigitized": "2002:09:14 15:27:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212160", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d856b96357858130c7e664e2650826f5e10215cb147e82ff193b16cf9898942d", "phash": "d7621842e5a4ee7a", "dhash": "845024464c783476", "phash_int": -2.9267501322377016e+18, "collected_at": "2026-05-22T04:29:11.353884+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2159_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2159_IMG.JPG", "file_name": "121-2159_IMG.JPG", "file_stem": "121-2159_IMG", "file_ext": ".jpg", "file_size": 810005.0, "mtime": "2002-09-14T15:26:54+00:00", "mtime_ts": 1032017214.0, "ctime": "2002-09-14T15:26:54+00:00", "sha256_file": "d3cc9ea42cea56f28aba916bf6411d1736ec687e240a32cc3a0a5c6bdd0a79e2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:26:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5157", "EXIF ExposureTime": "1/800", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 15:26:55", "EXIF DateTimeDigitized": "2002:09:14 15:26:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1919/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212159", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1919"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06cf7800359352a54186650f427e6a4a2e62d46842f53b57e138c0fcff5625ff", "phash": "cacea9f097f03584", "dhash": "e1616161649092da", "phash_int": -3.832939382039366e+18, "collected_at": "2026-05-22T04:29:11.354881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2161_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2161_IMG.JPG", "file_name": "121-2161_IMG.JPG", "file_stem": "121-2161_IMG", "file_ext": ".jpg", "file_size": 784232.0, "mtime": "2002-09-14T15:58:24+00:00", "mtime_ts": 1032019104.0, "ctime": "2002-09-14T15:58:24+00:00", "sha256_file": "f5676a3de7eb19e341f8861956beb4182430bc53945055a77f748b2faea6457b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:58:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5058", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 15:58:25", "EXIF DateTimeDigitized": "2002:09:14 15:58:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3021/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212161", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3021"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a76f73ba4d12faa66c38e4e18335bae4ee34cb95ec8985fa8793761497fd163", "phash": "bdc24b952066ecd3", "dhash": "b4d817b636367232", "phash_int": -4.773169551193478e+18, "collected_at": "2026-05-22T04:29:11.431966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2162_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2162_IMG.JPG", "file_name": "121-2162_IMG.JPG", "file_stem": "121-2162_IMG", "file_ext": ".jpg", "file_size": 670686.0, "mtime": "2002-09-14T15:58:28+00:00", "mtime_ts": 1032019108.0, "ctime": "2002-09-14T15:58:28+00:00", "sha256_file": "5a529722ac6f0364ac4fc518cc4cf223936b1cf2c65bd8945b22880448c92f1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:58:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5090", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 15:58:30", "EXIF DateTimeDigitized": "2002:09:14 15:58:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1099/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212162", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1099"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a116e8642edc7da568d4154d7ab73e3042db29b97bffe2ba9a903a642385debd", "phash": "bdc24b9d202ce9d3", "dhash": "b4d017a61636361a", "phash_int": -4.773169516837542e+18, "collected_at": "2026-05-22T04:29:11.440968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2163_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2163_IMG.JPG", "file_name": "121-2163_IMG.JPG", "file_stem": "121-2163_IMG", "file_ext": ".jpg", "file_size": 798227.0, "mtime": "2002-09-14T16:27:20+00:00", "mtime_ts": 1032020840.0, "ctime": "2002-09-14T16:27:20+00:00", "sha256_file": "2d5707e7c647a58b6b53a0f084f6abfb47e5491bb071f56a3df526fd742153cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:27:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4764", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:27:21", "EXIF DateTimeDigitized": "2002:09:14 16:27:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212163", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "baebcaa1ab1263c9edbe702fdf28db2a8ac00548f0d3cb5e97d5a056781ad8df", "phash": "b5c96636d8a62734", "dhash": "c25256999a4c2c3e", "phash_int": -5.347630696776718e+18, "collected_at": "2026-05-22T04:29:11.482971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2165_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2165_IMG.JPG", "file_name": "121-2165_IMG.JPG", "file_stem": "121-2165_IMG", "file_ext": ".jpg", "file_size": 865380.0, "mtime": "2002-09-14T16:49:26+00:00", "mtime_ts": 1032022166.0, "ctime": "2002-09-14T16:49:26+00:00", "sha256_file": "f1c2d9e9b2ff5db078c9abfa909e5e49667b0647df5fbdde4b54bf7c275e7f0a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:49:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3565", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:49:28", "EXIF DateTimeDigitized": "2002:09:14 16:49:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1859/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212165", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3718"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b921101aafbf850d8021e249259bb107bf76c22a354e7c3821be708ace358676", "phash": "f14f4cd1a7b18b30", "dhash": "505098c8ccd81c1e", "phash_int": -1.0585429240634708e+18, "collected_at": "2026-05-22T04:29:11.526974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2164_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2164_IMG.JPG", "file_name": "121-2164_IMG.JPG", "file_stem": "121-2164_IMG", "file_ext": ".jpg", "file_size": 825690.0, "mtime": "2002-09-14T16:30:16+00:00", "mtime_ts": 1032021016.0, "ctime": "2002-09-14T16:30:16+00:00", "sha256_file": "d7c40f0660c943ce3a17ae58c3f0e155be8c9a21e355a261e8ee6035a731243a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:30:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5369", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:30:17", "EXIF DateTimeDigitized": "2002:09:14 16:30:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212164", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ca2da31d13e6fbd97d5088af21167ab63d6a965141cf2802ce9f5dea8918bad", "phash": "a9d24e95a7619cc6", "dhash": "f8c9a99b9e96d263", "phash_int": -6.209814531525207e+18, "collected_at": "2026-05-22T04:29:11.528970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2166_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2166_IMG.JPG", "file_name": "121-2166_IMG.JPG", "file_stem": "121-2166_IMG", "file_ext": ".jpg", "file_size": 857940.0, "mtime": "2002-09-14T16:49:34+00:00", "mtime_ts": 1032022174.0, "ctime": "2002-09-14T16:49:34+00:00", "sha256_file": "cab7177cc2f6c015ca2fa39e3187526ceb00c6d1b4784a1e4f9af97de6371b42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:49:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4124", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:49:35", "EXIF DateTimeDigitized": "2002:09:14 16:49:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2649/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212166", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2649"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "693fc7c9c2427a7b7e7662211238a09d6d224f1b01bb9557ef7ab3a23936f69c", "phash": "b344d94c4c637373", "dhash": "94948c0c0c1d1e1d", "phash_int": -5.529055520781798e+18, "collected_at": "2026-05-22T04:29:11.626977+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2167_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2167_IMG.JPG", "file_name": "121-2167_IMG.JPG", "file_stem": "121-2167_IMG", "file_ext": ".jpg", "file_size": 904530.0, "mtime": "2002-09-14T16:49:56+00:00", "mtime_ts": 1032022196.0, "ctime": "2002-09-14T16:49:56+00:00", "sha256_file": "0b24529bbf99099cd7d4852943dca40648795c0fdc0414489872ea949823e204", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:49:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5216", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:49:57", "EXIF DateTimeDigitized": "2002:09:14 16:49:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212167", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "645d07cf6bcc3f419453ec4e39afcf9f01d9bb9cb16729fa25610a364e0ef0b9", "phash": "d26d1f90614d4e9e", "dhash": "f159e1919dbc3d29", "phash_int": -3.2839338483150157e+18, "collected_at": "2026-05-22T04:29:11.628974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2168_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2168_IMG.JPG", "file_name": "121-2168_IMG.JPG", "file_stem": "121-2168_IMG", "file_ext": ".jpg", "file_size": 831702.0, "mtime": "2002-09-14T16:50:14+00:00", "mtime_ts": 1032022214.0, "ctime": "2002-09-14T16:50:14+00:00", "sha256_file": "ec2b8738207a3afe5aae1c4965abb8a9c3b1ca8d8ecad2088522cca0fa0fe32c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:50:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5058", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:50:16", "EXIF DateTimeDigitized": "2002:09:14 16:50:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "212/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212168", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1696"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76773c8a5bc30a03a052f9f5c2dc1559fd413cbeb86d745465e7a6e5367a658a", "phash": "da659cb26cc5b48c", "dhash": "8cb0e0a829383830", "phash_int": -2.7095873106504776e+18, "collected_at": "2026-05-22T04:29:11.730054+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2169_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2169_IMG.JPG", "file_name": "121-2169_IMG.JPG", "file_stem": "121-2169_IMG", "file_ext": ".jpg", "file_size": 836566.0, "mtime": "2002-09-14T16:50:20+00:00", "mtime_ts": 1032022220.0, "ctime": "2002-09-14T16:50:20+00:00", "sha256_file": "a0f3aca3fd1669afb50389ad5e9dff3e47aab6c93afa1310f44fa3b3517e1613", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:50:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5113", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:50:21", "EXIF DateTimeDigitized": "2002:09:14 16:50:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1651/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212169", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1651"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f62fbfaf374f689f9c4d57a34ddfa80147de94230cf505570e5a5712176654fb", "phash": "d2659db26ce19c8a", "dhash": "84a0e0ac2d3c3830", "phash_int": -3.2860469634404444e+18, "collected_at": "2026-05-22T04:29:11.732058+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2170_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2170_IMG.JPG", "file_name": "121-2170_IMG.JPG", "file_stem": "121-2170_IMG", "file_ext": ".jpg", "file_size": 1466855.0, "mtime": "2002-09-14T16:53:40+00:00", "mtime_ts": 1032022420.0, "ctime": "2002-09-14T16:53:40+00:00", "sha256_file": "09cee077392bc8be5f9665fa4334f6771a9bbd655cff3209e44e585c3242ccde", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 16:53:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6196", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 16:53:41", "EXIF DateTimeDigitized": "2002:09:14 16:53:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212170", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46c529b76a1c98e216c6d54e2564b8962968c2b63e40c3850e2a877cf7b6fb74", "phash": "e3b990a3995c51f2", "dhash": "1b9b052b4bcfadc8", "phash_int": -2.0374383240814054e+18, "collected_at": "2026-05-22T04:29:11.835060+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2171_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2171_IMG.JPG", "file_name": "121-2171_IMG.JPG", "file_stem": "121-2171_IMG", "file_ext": ".jpg", "file_size": 1518568.0, "mtime": "2002-09-14T17:23:42+00:00", "mtime_ts": 1032024222.0, "ctime": "2002-09-14T17:23:42+00:00", "sha256_file": "b52c0246e0327e8633ee95031284ec988a85b7111db447a375cdedca71afae32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 17:23:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5540", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 17:23:43", "EXIF DateTimeDigitized": "2002:09:14 17:23:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2329/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212171", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2329"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71dc98d08b45042cf78de7eb2943e05d8f07767483da2a73350ce7ddc0d2f3b2", "phash": "8a88e8e199d477ad", "dhash": "03f361f8bb0dc4eb", "phash_int": -8.464259443996723e+18, "collected_at": "2026-05-22T04:29:11.871061+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2172_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2172_IMG.JPG", "file_name": "121-2172_IMG.JPG", "file_stem": "121-2172_IMG", "file_ext": ".jpg", "file_size": 1674105.0, "mtime": "2002-09-14T17:23:50+00:00", "mtime_ts": 1032024230.0, "ctime": "2002-09-14T17:23:50+00:00", "sha256_file": "db25fa96c4970a17abf7eb082b3a94e8ea987bdec633a2e7e3d380adfa707516", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 17:23:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5406", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 17:23:51", "EXIF DateTimeDigitized": "2002:09:14 17:23:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212172", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60a579475f63cfc60059db67fed23e0be3937c0f750317c66d7519bfe98484d1", "phash": "9293e1bd8c4b47ac", "dhash": "9a0ccdf8b64dc8f2", "phash_int": -7.884710318376794e+18, "collected_at": "2026-05-22T04:29:11.986065+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2173_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2173_IMG.JPG", "file_name": "121-2173_IMG.JPG", "file_stem": "121-2173_IMG", "file_ext": ".jpg", "file_size": 1761810.0, "mtime": "2002-09-14T17:23:54+00:00", "mtime_ts": 1032024234.0, "ctime": "2002-09-14T17:23:54+00:00", "sha256_file": "c50b8f94f380b9e04ca3ab1fe7a7fb430576ec46f85ee81ec28e46bbe9704502", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 17:23:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5563", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 17:23:56", "EXIF DateTimeDigitized": "2002:09:14 17:23:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212173", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7ed2be8861c53e92e0336075151433505ed36b4e74b3f9fe019586d0e21c13e", "phash": "b393e7f79cc0420c", "dhash": "980dc9bc3e488ef2", "phash_int": -5.5068028686712e+18, "collected_at": "2026-05-22T04:29:12.036069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2174_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2174_IMG.JPG", "file_name": "121-2174_IMG.JPG", "file_stem": "121-2174_IMG", "file_ext": ".jpg", "file_size": 1322386.0, "mtime": "2002-09-14T17:24:02+00:00", "mtime_ts": 1032024242.0, "ctime": "2002-09-14T17:24:02+00:00", "sha256_file": "c807952fdbc5cc80f4eda5f636fd5035706922b91e662eb64098b6c0f41e1847", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 17:24:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5377", "EXIF ExposureTime": "1/250", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 17:24:04", "EXIF DateTimeDigitized": "2002:09:14 17:24:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212174", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3806"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0706f372f60b201ba59b8ef16d4efc89c15553836474ed41fff357259691da8b", "phash": "e4a61d395b716ac4", "dhash": "1fe6c404848b96a0", "phash_int": -1.9708556547435123e+18, "collected_at": "2026-05-22T04:29:12.093070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2175_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2175_IMG.JPG", "file_name": "121-2175_IMG.JPG", "file_stem": "121-2175_IMG", "file_ext": ".jpg", "file_size": 827468.0, "mtime": "2002-09-14T17:24:10+00:00", "mtime_ts": 1032024250.0, "ctime": "2002-09-14T17:24:10+00:00", "sha256_file": "d7537bd22726250e3704eb098bc1077167c4677534b3c0c45e7e4856849fec71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 17:24:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4812", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 17:24:12", "EXIF DateTimeDigitized": "2002:09:14 17:24:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1257/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212175", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10056"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "001d5e7236b54aedf19683ae69c7d7f154328c084f0d8fe6249f20831631859c", "phash": "d6d49da969aa4a2a", "dhash": "18a42d89c9dc7551", "phash_int": -2.9665729035825126e+18, "collected_at": "2026-05-22T04:29:12.139073+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2176_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2176_IMG.JPG", "file_name": "121-2176_IMG.JPG", "file_stem": "121-2176_IMG", "file_ext": ".jpg", "file_size": 302422.0, "mtime": "2002-09-22T20:06:32+00:00", "mtime_ts": 1032725192.0, "ctime": "2002-09-22T20:06:32+00:00", "sha256_file": "e2ebf1894dc1bc519ed12459f71976a9c2f7712adc0898fc86e0e6a27bd19b41", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e70a73e146a5f8f33495ff10e9f6ae8cef81f3d4f7cf4a7dcd8e56c0bef6568a", "phash": "8469271ee9b59176", "dhash": "e765d6b2a56cacae", "phash_int": -8.905543774424953e+18, "collected_at": "2026-05-22T04:29:12.196074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2177_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2177_IMG.JPG", "file_name": "121-2177_IMG.JPG", "file_stem": "121-2177_IMG", "file_ext": ".jpg", "file_size": 2160869.0, "mtime": "2002-09-14T18:16:14+00:00", "mtime_ts": 1032027374.0, "ctime": "2002-09-14T18:16:14+00:00", "sha256_file": "0fc9b5a3f63543bf1d9cc164f64542231043a1b460c9ed7099b0630977fce4b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 18:16:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8216", "EXIF ExposureTime": "1/13", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 18:16:12", "EXIF DateTimeDigitized": "2002:09:14 18:16:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/5", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212177", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6200"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2990d1ee14bd3b559288c83e54057f3c26b2d5aa3616c8e489d6087802230ae", "phash": "cb055ee096e9371c", "dhash": "e3e3c2d3310b2321", "phash_int": -3.8175407904290755e+18, "collected_at": "2026-05-22T04:29:12.235074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2178_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2178_IMG.JPG", "file_name": "121-2178_IMG.JPG", "file_stem": "121-2178_IMG", "file_ext": ".jpg", "file_size": 354710.0, "mtime": "2002-09-22T20:06:38+00:00", "mtime_ts": 1032725198.0, "ctime": "2002-09-22T20:06:38+00:00", "sha256_file": "4c74163feb27b0454a486a7f4ef19ce41d079332bfe52a1002205979dd63fa06", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50f59a294703265af4f55a43a25e4ef45edff661af6004f74fdae50be4a3fba0", "phash": "c8055ef887cb7714", "dhash": "e3f2cbd3b22b3121", "phash_int": -4.033713469717252e+18, "collected_at": "2026-05-22T04:29:12.306076+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2180_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2180_IMG.JPG", "file_name": "121-2180_IMG.JPG", "file_stem": "121-2180_IMG", "file_ext": ".jpg", "file_size": 502989.0, "mtime": "2002-09-22T20:07:24+00:00", "mtime_ts": 1032725244.0, "ctime": "2002-09-22T20:07:24+00:00", "sha256_file": "9733b69ad3834deac666d23d8296a6bb1fb54a35c270adc17ada0e4891c0547e", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ace5ca1b1ae2a3b483ee3f2930fd4d7a5854da2b8f0a03d9e019e50980e403f", "phash": "853225fcea87782b", "dhash": "bc9c58f875b4e6e6", "phash_int": -8.84896854963287e+18, "collected_at": "2026-05-22T04:29:12.333258+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2183_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2183_IMG.JPG", "file_name": "121-2183_IMG.JPG", "file_stem": "121-2183_IMG", "file_ext": ".jpg", "file_size": 389086.0, "mtime": "2002-09-22T20:07:50+00:00", "mtime_ts": 1032725270.0, "ctime": "2002-09-22T20:07:50+00:00", "sha256_file": "d878df0918efb07493e624d2127f419ad14bf94368c37080d3a386ad8983a547", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "178f6b4f30202da248af8ac9782d65ace826abb6be766806d341cf998080da4b", "phash": "8c5c68848ff07fa3", "dhash": "b0f13070629e9fc7", "phash_int": -8.332670291982385e+18, "collected_at": "2026-05-22T04:29:12.432069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\121-2184_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\121-2184_IMG.JPG", "file_name": "121-2184_IMG.JPG", "file_stem": "121-2184_IMG", "file_ext": ".jpg", "file_size": 1408939.0, "mtime": "2002-09-14T18:43:26+00:00", "mtime_ts": 1032029006.0, "ctime": "2002-09-14T18:43:26+00:00", "sha256_file": "66b6f81ef120bcda350ad78e831d5d3d6e17e62231ae299b740ae640317ed707", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 18:43:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 18:43:27", "EXIF DateTimeDigitized": "2002:09:14 18:43:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[45, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212184", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a457edf25504b6a36cd9200711801d26961db5472f67ce646860a84ab0cfd6c7", "phash": "d86373da0ee8007f", "dhash": "8c9892b630b83131", "phash_int": -2.8543103584326124e+18, "collected_at": "2026-05-22T04:29:12.477072+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0296.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0296.JPG", "file_name": "IMG_0296.JPG", "file_stem": "IMG_0296", "file_ext": ".jpg", "file_size": 546864.0, "mtime": "2002-09-13T23:11:06+00:00", "mtime_ts": 1031958666.0, "ctime": "2002-09-13T23:11:06+00:00", "sha256_file": "63cb964192b2a6ce26b745467791adade574e51d56210fcc2bda72043b4f41f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:13 23:11:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:13 23:11:07", "EXIF DateTimeDigitized": "2002:09:13 23:11:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 463, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020296", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3045"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8963b9c3faa5dc5ff71b36d7936d3b24dc6162aa0ce9928ead93d55ebc8b1c1b", "phash": "a5e11631dfc67099", "dhash": "d7d7d7c25bd76666", "phash_int": -6.493884784228012e+18, "collected_at": "2026-05-22T04:29:12.482070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0297.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0297.JPG", "file_name": "IMG_0297.JPG", "file_stem": "IMG_0297", "file_ext": ".jpg", "file_size": 399056.0, "mtime": "2002-09-14T07:03:08+00:00", "mtime_ts": 1031986988.0, "ctime": "2002-09-14T07:03:08+00:00", "sha256_file": "a786e0ea2c37ecc3ffe882745d8b455628a316428a62e9cf885f2a5b1a82fb5e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:03:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3194", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 07:03:09", "EXIF DateTimeDigitized": "2002:09:14 07:03:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 7, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020297", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1935"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a310fcdbe32e3fe9c6897215129148968898af49b4ad1f2c4b6dc3e34e610b69", "phash": "b5b59746caa98456", "dhash": "1e1e9e9a2ee662ea", "phash_int": -5.353206251756355e+18, "collected_at": "2026-05-22T04:29:12.561195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0298.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0298.JPG", "file_name": "IMG_0298.JPG", "file_stem": "IMG_0298", "file_ext": ".jpg", "file_size": 463337.0, "mtime": "2002-09-14T08:20:16+00:00", "mtime_ts": 1031991616.0, "ctime": "2002-09-14T08:20:16+00:00", "sha256_file": "d1672f48ac58e44af5a48f0c7e65f324862e9fa253f811f2bdb6fd09e88885a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:20:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5011", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 08:20:17", "EXIF DateTimeDigitized": "2002:09:14 08:20:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 84, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020298", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1121"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "562b8df65e51030b7e3ed1c698cd147b0ba33d791649469d6121195ff9f2d73d", "phash": "c51638583a7935dd", "dhash": "94e4e6e2e1e22222", "phash_int": -4.245143647160814e+18, "collected_at": "2026-05-22T04:29:12.565201+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0299.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0299.JPG", "file_name": "IMG_0299.JPG", "file_stem": "IMG_0299", "file_ext": ".jpg", "file_size": 562033.0, "mtime": "2002-09-14T08:21:00+00:00", "mtime_ts": 1031991660.0, "ctime": "2002-09-14T08:21:00+00:00", "sha256_file": "9662781654bc19ca2fb7ff154be77c1684c93abef06e4ea57d317a41371eb698", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:21:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5139", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 08:21:01", "EXIF DateTimeDigitized": "2002:09:14 08:21:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 11, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020299", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5852"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6308c73b2b7fc88d3c2b2bc187ae6876c4a129d1998029d21f522fc63f6879ba", "phash": "a12f44f89b0056ff", "dhash": "574fcfdb1b8e86c6", "phash_int": -6.832166275154684e+18, "collected_at": "2026-05-22T04:29:12.617196+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0300.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0300.JPG", "file_name": "IMG_0300.JPG", "file_stem": "IMG_0300", "file_ext": ".jpg", "file_size": 502146.0, "mtime": "2002-09-14T09:21:48+00:00", "mtime_ts": 1031995308.0, "ctime": "2002-09-14T09:21:48+00:00", "sha256_file": "fb42c28517fe262369da14a9a63076d610869e8191416adf5c6fd1da0452a9e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 09:21:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5327", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 09:21:50", "EXIF DateTimeDigitized": "2002:09:14 09:21:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1020300", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2178"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0d478c5fed8792c1af72ae4fa32221c515af0a3ca642a816bcf040a7d4141d7", "phash": "913cf3738c592cf0", "dhash": "5c5c7a70d44858a0", "phash_int": -7.981236762005919e+18, "collected_at": "2026-05-22T04:29:12.622197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0301.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0301.JPG", "file_name": "IMG_0301.JPG", "file_stem": "IMG_0301", "file_ext": ".jpg", "file_size": 525152.0, "mtime": "2002-09-14T09:22:40+00:00", "mtime_ts": 1031995360.0, "ctime": "2002-09-14T09:22:40+00:00", "sha256_file": "5c3d3b329d1a0b29cc3ba43580ec8c004cbe15564c5d1c2820e8ed545ca6bfb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 09:22:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5646", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 09:22:41", "EXIF DateTimeDigitized": "2002:09:14 09:22:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2/3", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[19, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030301", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "65516", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "104", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2178"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d705454f9f7cbf3ad53a38c0c11cb8503890aaed7bcacfe65ec193245dfcb8e6", "phash": "d33df067988b34e0", "dhash": "283cf870544cc890", "phash_int": -3.2251574303958497e+18, "collected_at": "2026-05-22T04:29:12.681531+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0302.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0302.JPG", "file_name": "IMG_0302.JPG", "file_stem": "IMG_0302", "file_ext": ".jpg", "file_size": 488949.0, "mtime": "2002-09-14T09:22:48+00:00", "mtime_ts": 1031995368.0, "ctime": "2002-09-14T09:22:48+00:00", "sha256_file": "008a0ae981b0726bbf18f5ea5fa9a5001d6597818b0adc2fb1a321a895621c89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 09:22:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5260", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 09:22:50", "EXIF DateTimeDigitized": "2002:09:14 09:22:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2/3", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[58, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030302", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "204", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "65516", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "59", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1121"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df57c7ce0b7e4ff00d30acae2660a81d40f321ef11b41d1544e0c90759fdb777", "phash": "922967364edb9097", "dhash": "a7b3b2b93dbc4c6c", "phash_int": -7.914681387178029e+18, "collected_at": "2026-05-22T04:29:12.684526+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0303.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0303.JPG", "file_name": "IMG_0303.JPG", "file_stem": "IMG_0303", "file_ext": ".jpg", "file_size": 397873.0, "mtime": "2002-09-14T09:22:56+00:00", "mtime_ts": 1031995376.0, "ctime": "2002-09-14T09:22:56+00:00", "sha256_file": "eccf17741dc43dd36081968b186b6b82a97314c9ae148ce9238e35a476b1d936", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 09:22:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4697", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 09:22:57", "EXIF DateTimeDigitized": "2002:09:14 09:22:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "-2/3", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[64, 596, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030303", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "65516", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "61", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1655"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be6c386d6d3ed0e5813bc61c2f8d4d8b3f27109fbac0dd811637a5f6f3254456", "phash": "9f6134db218e6956", "dhash": "4b497073707870fc", "phash_int": -6.962225433172613e+18, "collected_at": "2026-05-22T04:29:12.725527+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0305.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0305.JPG", "file_name": "IMG_0305.JPG", "file_stem": "IMG_0305", "file_ext": ".jpg", "file_size": 537039.0, "mtime": "2002-09-14T11:05:16+00:00", "mtime_ts": 1032001516.0, "ctime": "2002-09-14T11:05:16+00:00", "sha256_file": "fabe1193747a2f8cf15c3a5c428085dd4f630507c3871e782ae8b21e49a71f3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:05:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7243", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:05:17", "EXIF DateTimeDigitized": "2002:09:14 11:05:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030305", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "76", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e684030a6bfa0c2f4ac1fb4d87f3d417dc4a9aa8d7629e85fcbc86d5f388b9b0", "phash": "9a0ba6ee77886526", "dhash": "c9b9b1b8352abe8c", "phash_int": -7.346594823986978e+18, "collected_at": "2026-05-22T04:29:12.735533+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0307.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0307.JPG", "file_name": "IMG_0307.JPG", "file_stem": "IMG_0307", "file_ext": ".jpg", "file_size": 519671.0, "mtime": "2002-09-14T11:05:34+00:00", "mtime_ts": 1032001534.0, "ctime": "2002-09-14T11:05:34+00:00", "sha256_file": "2d5d1cc6ac22e3d9d083a099398434ba0950f16aae5b3834fd372d7a343e022f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:05:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7102", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:05:36", "EXIF DateTimeDigitized": "2002:09:14 11:05:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030307", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e222051846bed2cd50e5c7b8010e86f37ad788f88d9ff9299b105b4005aae6b", "phash": "8763968b5d36245d", "dhash": "c5c94d5552f96978", "phash_int": -8.690937330586476e+18, "collected_at": "2026-05-22T04:29:12.795764+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0306.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0306.JPG", "file_name": "IMG_0306.JPG", "file_stem": "IMG_0306", "file_ext": ".jpg", "file_size": 514912.0, "mtime": "2002-09-14T11:05:26+00:00", "mtime_ts": 1032001526.0, "ctime": "2002-09-14T11:05:26+00:00", "sha256_file": "0006c5c6cc913a1983b47202ca89f616a191cc109a908bd676e2fcc2bc4fd423", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:05:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7292", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:05:27", "EXIF DateTimeDigitized": "2002:09:14 11:05:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030306", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d3678c2f7429af8d0356311a728a028c5bcdc50a091dc50839ce757dcbb0e335", "phash": "b516edd96c8a4869", "dhash": "a2cc4c6c1a584fc6", "phash_int": -5.397865585272273e+18, "collected_at": "2026-05-22T04:29:12.806772+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0308.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0308.JPG", "file_name": "IMG_0308.JPG", "file_stem": "IMG_0308", "file_ext": ".jpg", "file_size": 528573.0, "mtime": "2002-09-14T11:06:08+00:00", "mtime_ts": 1032001568.0, "ctime": "2002-09-14T11:06:08+00:00", "sha256_file": "79d5ac4c65e63f5e38fc057fc01864033ccc52b55ebcfcebd88a48b844208817", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:06:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7318", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:06:09", "EXIF DateTimeDigitized": "2002:09:14 11:06:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030308", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4841"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0f828a77d920e8600392e35d7502f66fbd5e94979ab93d9f1cace6230971e5a", "phash": "921b80f6ab6699a7", "dhash": "d9b1d8353b9c8c9b", "phash_int": -7.918593722874948e+18, "collected_at": "2026-05-22T04:29:12.889776+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0309.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0309.JPG", "file_name": "IMG_0309.JPG", "file_stem": "IMG_0309", "file_ext": ".jpg", "file_size": 486325.0, "mtime": "2002-09-14T11:24:22+00:00", "mtime_ts": 1032002662.0, "ctime": "2002-09-14T11:24:22+00:00", "sha256_file": "79b2330970c9945ef62735bb17ec68bb4691417264bd2a15d37dfbd563e51ee9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:24:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6336", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:24:24", "EXIF DateTimeDigitized": "2002:09:14 11:24:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030309", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "50", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6eb891b5b51009d63ac751bb3ee5d2d28d794ec0844510de9328f8f517aab9e7", "phash": "bc14c7bd870fc886", "dhash": "e6b6b03c3e3a56cf", "phash_int": -4.894067278216182e+18, "collected_at": "2026-05-22T04:29:12.896775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0312.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0312.JPG", "file_name": "IMG_0312.JPG", "file_stem": "IMG_0312", "file_ext": ".jpg", "file_size": 495090.0, "mtime": "2002-09-14T11:28:06+00:00", "mtime_ts": 1032002886.0, "ctime": "2002-09-14T11:28:06+00:00", "sha256_file": "226b4943683e37483a1246be1631cf295f331c5e0d1d1c23118a8d706ff1320c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:28:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5671", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:28:08", "EXIF DateTimeDigitized": "2002:09:14 11:28:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 137, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030312", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bc6e284dbef2cc88e484e73511852948540128f0f2794cb8917182af8d91e3d", "phash": "b76c421e382d8f35", "dhash": "218456163c7c58dc", "phash_int": -5.229732369725026e+18, "collected_at": "2026-05-22T04:29:12.979989+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0310.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0310.JPG", "file_name": "IMG_0310.JPG", "file_stem": "IMG_0310", "file_ext": ".jpg", "file_size": 497907.0, "mtime": "2002-09-14T11:24:30+00:00", "mtime_ts": 1032002670.0, "ctime": "2002-09-14T11:24:30+00:00", "sha256_file": "ee6a3dd8ca9ae46ff750f10824e2c6f471728594bfc0bd8f86adcae4475eeba4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:24:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6309", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:24:31", "EXIF DateTimeDigitized": "2002:09:14 11:24:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Manual Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030310", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "50", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a0ca49b2b61af5bd8f309182dc8e58e956495ce167ee0db9112b841dae8b4a6", "phash": "9c5f603db52039e5", "dhash": "2e68686c72329697", "phash_int": -7.178913462857222e+18, "collected_at": "2026-05-22T04:29:12.988096+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0313.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0313.JPG", "file_name": "IMG_0313.JPG", "file_stem": "IMG_0313", "file_ext": ".jpg", "file_size": 492568.0, "mtime": "2002-09-14T11:28:18+00:00", "mtime_ts": 1032002898.0, "ctime": "2002-09-14T11:28:18+00:00", "sha256_file": "6671c74f2716db453b971669f9ddba6ee897bf5990c7f7e3357d6dfe1988f3c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:28:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5275", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:28:20", "EXIF DateTimeDigitized": "2002:09:14 11:28:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 198, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030313", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1544"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "788cf3fd81e8c4e2b22202fd15eda9b2a1c31213332c0dad9a95dc2040bc68ff", "phash": "cca5f1b383b888b9", "dhash": "aea43171793131b1", "phash_int": -3.7002857655036457e+18, "collected_at": "2026-05-22T04:29:13.066554+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0314.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0314.JPG", "file_name": "IMG_0314.JPG", "file_stem": "IMG_0314", "file_ext": ".jpg", "file_size": 550555.0, "mtime": "2002-09-14T11:28:42+00:00", "mtime_ts": 1032002922.0, "ctime": "2002-09-14T11:28:42+00:00", "sha256_file": "a36d29980a34bbe449db066c43d9e76e410dacf3ff984d90aff45c242a7c5dff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:28:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6593", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:28:43", "EXIF DateTimeDigitized": "2002:09:14 11:28:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 104, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030314", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2f27bf1bb39a68f656f34dd393d80da596f7f5d1e43c72c1441efeae38894eb", "phash": "95d2d92ed234f138", "dhash": "fce8dcf4e4263632", "phash_int": -7.650814021830644e+18, "collected_at": "2026-05-22T04:29:13.100944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0315.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0315.JPG", "file_name": "IMG_0315.JPG", "file_stem": "IMG_0315", "file_ext": ".jpg", "file_size": 544083.0, "mtime": "2002-09-14T11:29:12+00:00", "mtime_ts": 1032002952.0, "ctime": "2002-09-14T11:29:12+00:00", "sha256_file": "2d4b82fbb9d1714c0fa8f45ec346b899e2fa4afaabbccc2adf48ae45615d12b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 11:29:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6988", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 11:29:13", "EXIF DateTimeDigitized": "2002:09:14 11:29:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030315", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cfa5eb8f5afea5f3d9d239fb4956ec0c3648dd394b1b2e4ac352a7d2e1bb49f6", "phash": "b87ecb30c00ee4af", "dhash": "2d3d3cbcbcbe3ada", "phash_int": -5.152457513424199e+18, "collected_at": "2026-05-22T04:29:13.146580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0318.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0318.JPG", "file_name": "IMG_0318.JPG", "file_stem": "IMG_0318", "file_ext": ".jpg", "file_size": 610278.0, "mtime": "2002-09-14T15:28:44+00:00", "mtime_ts": 1032017324.0, "ctime": "2002-09-14T15:28:44+00:00", "sha256_file": "08445eb6b3968b3cb93ca56439ed7832674db741e8fc76387a315d19868d7ab7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:28:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5936", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 15:28:45", "EXIF DateTimeDigitized": "2002:09:14 15:28:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030318", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5561"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb8f27ca17eeed0c8938311bbd82062410cdbef6f23d0d15cd09f6bf6aba0bda", "phash": "8d9c8c338da62adb", "dhash": "f6f2f2f2daccc6e2", "phash_int": -8.242559064947152e+18, "collected_at": "2026-05-22T04:29:13.181896+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0319.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0319.JPG", "file_name": "IMG_0319.JPG", "file_stem": "IMG_0319", "file_ext": ".jpg", "file_size": 457468.0, "mtime": "2002-09-14T15:29:12+00:00", "mtime_ts": 1032017352.0, "ctime": "2002-09-14T15:29:12+00:00", "sha256_file": "259a718bade9b8ddccc7789e32eca01e3e323682eabb8b87c9e2f3729982eb8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 15:29:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5328", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 15:29:14", "EXIF DateTimeDigitized": "2002:09:14 15:29:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030319", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "9337"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c875479c4d61dfba7ca21e6f1a767019b052405d5ca3bbab230b5a9cbcfa9e19", "phash": "96e1323bec3838b3", "dhash": "ecc8e8e460787c64", "phash_int": -7.574717865312897e+18, "collected_at": "2026-05-22T04:29:13.214899+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0320.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0320.JPG", "file_name": "IMG_0320.JPG", "file_stem": "IMG_0320", "file_ext": ".jpg", "file_size": 418874.0, "mtime": "2002-09-14T20:55:32+00:00", "mtime_ts": 1032036932.0, "ctime": "2002-09-14T20:55:32+00:00", "sha256_file": "84dffd594fe9e0669abc3a149ff6bc871f1532de4e61b021d2cbf3ca1c0cc1c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:55:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4193", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:55:34", "EXIF DateTimeDigitized": "2002:09:14 20:55:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 803, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030320", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d62295613e03dfd82dd431f94e0ab4b02d87c4491101dea3741beb136e3b46a", "phash": "8c71b2cc738bdc2c", "dhash": "fc7474707263e3eb", "phash_int": -8.326677644849718e+18, "collected_at": "2026-05-22T04:29:13.247205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0322.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0322.JPG", "file_name": "IMG_0322.JPG", "file_stem": "IMG_0322", "file_ext": ".jpg", "file_size": 392506.0, "mtime": "2002-09-14T20:57:16+00:00", "mtime_ts": 1032037036.0, "ctime": "2002-09-14T20:57:16+00:00", "sha256_file": "27540bea87ee9870ca78ef87794f807388c5204bd42254c1dcbc2c971f41adbc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:57:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3625", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:57:17", "EXIF DateTimeDigitized": "2002:09:14 20:57:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1969, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030322", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "141", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d03bd1cb6f5daa6c38c9f7e02797c34cf90dab6fb25d048a887b6137b209f02d", "phash": "895954736cb34e65", "dhash": "b0b073f3e3d9dce6", "phash_int": -8.549709562864513e+18, "collected_at": "2026-05-22T04:29:13.282212+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0323.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0323.JPG", "file_name": "IMG_0323.JPG", "file_stem": "IMG_0323", "file_ext": ".jpg", "file_size": 540452.0, "mtime": "2002-09-14T20:57:48+00:00", "mtime_ts": 1032037068.0, "ctime": "2002-09-14T20:57:48+00:00", "sha256_file": "1ad658cebe6c10edd07b309cadba6c497d41242736a678a4c4d0f3443a114def", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:57:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5169", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:57:49", "EXIF DateTimeDigitized": "2002:09:14 20:57:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030323", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6328023cd5a9b6524bee875b1d603005a920e1862b94ae7c91dc15eb70569ac7", "phash": "c03f6bf294c61b38", "dhash": "db2b74e49488a9b3", "phash_int": -4.5938344052723476e+18, "collected_at": "2026-05-22T04:29:13.287308+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0324.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0324.JPG", "file_name": "IMG_0324.JPG", "file_stem": "IMG_0324", "file_ext": ".jpg", "file_size": 577318.0, "mtime": "2002-09-14T20:58:12+00:00", "mtime_ts": 1032037092.0, "ctime": "2002-09-14T20:58:12+00:00", "sha256_file": "7b5a21242f5da9203062f87bb03d73444396d3bc79275d261a5574590e405678", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:58:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4946", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:58:13", "EXIF DateTimeDigitized": "2002:09:14 20:58:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 53, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030324", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f243150899d0a63d47ed4a27bad66de2dc0fb82b1f4ffdcc634ee5785faef84c", "phash": "ce718bce250ab46b", "dhash": "a02899ac666d6161", "phash_int": -3.5709193120271104e+18, "collected_at": "2026-05-22T04:29:13.321401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0325.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0325.JPG", "file_name": "IMG_0325.JPG", "file_stem": "IMG_0325", "file_ext": ".jpg", "file_size": 608732.0, "mtime": "2002-09-14T20:58:36+00:00", "mtime_ts": 1032037116.0, "ctime": "2002-09-14T20:58:36+00:00", "sha256_file": "f668b03631fada37a004680e71184ca7c1c9af60099ec8f4441865c25d33f813", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:58:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5398", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:58:37", "EXIF DateTimeDigitized": "2002:09:14 20:58:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 98, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030325", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4cd11a9cb393484c698d3d8236b2d3087a0b49ce1359279d488ee94a736f3a28", "phash": "b41be9a65e218e53", "dhash": "5c3cb83c2cafaaba", "phash_int": -5.468520421758235e+18, "collected_at": "2026-05-22T04:29:13.337548+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0326.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0326.JPG", "file_name": "IMG_0326.JPG", "file_stem": "IMG_0326", "file_ext": ".jpg", "file_size": 528535.0, "mtime": "2002-09-14T20:59:10+00:00", "mtime_ts": 1032037150.0, "ctime": "2002-09-14T20:59:10+00:00", "sha256_file": "8e24cfc1dafe7ec0f1c472c38d1161071407642bcc433c05259b8da2b4e05a92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 20:59:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5161", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 20:59:11", "EXIF DateTimeDigitized": "2002:09:14 20:59:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 156, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030326", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "046e0cd9687c46d0e7ac10cdf27fb7809f76b01df11d1ad1b245ca9c0b68832a", "phash": "956ad0b78d70ce25", "dhash": "c0cea44a5ecc9cf4", "phash_int": -7.680096727756386e+18, "collected_at": "2026-05-22T04:29:13.394549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0327.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0327.JPG", "file_name": "IMG_0327.JPG", "file_stem": "IMG_0327", "file_ext": ".jpg", "file_size": 577450.0, "mtime": "2002-09-14T21:00:44+00:00", "mtime_ts": 1032037244.0, "ctime": "2002-09-14T21:00:44+00:00", "sha256_file": "2bc1345ae1a169d098db18fbd75d06a38680386c83e15cc12afec4520cf509f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:00:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5574", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:00:46", "EXIF DateTimeDigitized": "2002:09:14 21:00:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 73, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030327", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df70f4c7df03bc76638b8c6fbedd009936d80054a49a6492c2c15f794d1210d8", "phash": "c01ee16b92d48f7c", "dhash": "c88ba4b495cb9294", "phash_int": -4.602993916984914e+18, "collected_at": "2026-05-22T04:29:13.425551+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0328.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0328.JPG", "file_name": "IMG_0328.JPG", "file_stem": "IMG_0328", "file_ext": ".jpg", "file_size": 546640.0, "mtime": "2002-09-14T21:01:24+00:00", "mtime_ts": 1032037284.0, "ctime": "2002-09-14T21:01:24+00:00", "sha256_file": "86e5167dd8b77d01710b70cab61cd731f1e3b9d7299b2ce3cf8c06e65a33b6cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:01:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4379", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:01:26", "EXIF DateTimeDigitized": "2002:09:14 21:01:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 18, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030328", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6018"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6a9399f5c1d29f99e01e3b557e30425152ac9637928d66cc572266d3b2dd63d", "phash": "8c51a38edc33a75c", "dhash": "ecd3733033ebeba3", "phash_int": -8.335701601311021e+18, "collected_at": "2026-05-22T04:29:13.444549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0329.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0329.JPG", "file_name": "IMG_0329.JPG", "file_stem": "IMG_0329", "file_ext": ".jpg", "file_size": 400056.0, "mtime": "2002-09-14T21:13:04+00:00", "mtime_ts": 1032037984.0, "ctime": "2002-09-14T21:13:04+00:00", "sha256_file": "a9fd7ba162a1c8f200d5421a1369d1fc8abd0afc55db6bef9e2f5e9be162a5f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:13:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4453", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:13:05", "EXIF DateTimeDigitized": "2002:09:14 21:13:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1105, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030329", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1167244baa3521b6316ab1c87dfee9543f1ef77353c131c043de0ba977dc1a1a", "phash": "a156ac5252b9553f", "dhash": "1f0e9b9b49da9bd7", "phash_int": -6.821075116030864e+18, "collected_at": "2026-05-22T04:29:13.459550+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0330.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0330.JPG", "file_name": "IMG_0330.JPG", "file_stem": "IMG_0330", "file_ext": ".jpg", "file_size": 380720.0, "mtime": "2002-09-14T21:19:12+00:00", "mtime_ts": 1032038352.0, "ctime": "2002-09-14T21:19:12+00:00", "sha256_file": "e7aee3565620df8ca4895e5753310f07c013b2ea07cc99f5be0b1e3dd170150c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:19:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3871", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:19:13", "EXIF DateTimeDigitized": "2002:09:14 21:19:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1565, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030330", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7eca9e6754eb19418bb00dd123d2e92b8da8e5c2e634b035e2fc191b4a58492", "phash": "eb403f001ff8e60f", "dhash": "28400090d1c3033f", "phash_int": -1.4951258065180493e+18, "collected_at": "2026-05-22T04:29:13.498559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0331.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0331.JPG", "file_name": "IMG_0331.JPG", "file_stem": "IMG_0331", "file_ext": ".jpg", "file_size": 387115.0, "mtime": "2002-09-14T21:19:48+00:00", "mtime_ts": 1032038388.0, "ctime": "2002-09-14T21:19:48+00:00", "sha256_file": "3efcb03c68ae9f56e503b5fc714323a4b0e964d59685ec5e61e1828b7be35fb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:19:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4166", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:19:50", "EXIF DateTimeDigitized": "2002:09:14 21:19:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030331", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc930ea4146024c515bc3ddb32f8ee97d18f1bee22075668c530de426574449c", "phash": "ce2c7137936938c6", "dhash": "6fa5f2616968d1d9", "phash_int": -3.5903703194108416e+18, "collected_at": "2026-05-22T04:29:13.532635+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0332.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0332.JPG", "file_name": "IMG_0332.JPG", "file_stem": "IMG_0332", "file_ext": ".jpg", "file_size": 522436.0, "mtime": "2002-09-14T21:20:02+00:00", "mtime_ts": 1032038402.0, "ctime": "2002-09-14T21:20:02+00:00", "sha256_file": "243511100c47424c111bb18b5e96f87dc99d8fd8de5a8eee8e1d546ed77f9313", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:20:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4795", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:20:04", "EXIF DateTimeDigitized": "2002:09:14 21:20:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1530, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030332", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22181eeb46420df04bb3f0f1767284bf67e41ac52f3dd21386e4f9c7015cb1cc", "phash": "931b4c766e718b64", "dhash": "f8d8d8d8cec8cee3", "phash_int": -7.84659385422017e+18, "collected_at": "2026-05-22T04:29:13.540636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0333.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0333.JPG", "file_name": "IMG_0333.JPG", "file_stem": "IMG_0333", "file_ext": ".jpg", "file_size": 604823.0, "mtime": "2002-09-14T21:41:48+00:00", "mtime_ts": 1032039708.0, "ctime": "2002-09-14T21:41:48+00:00", "sha256_file": "44be418273886ec05562f3be09e98d3ac197105eb63c3c79e1a503069be90a34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:41:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5869", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:41:49", "EXIF DateTimeDigitized": "2002:09:14 21:41:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 504, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030333", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "90ec2bf847387be799e9170fb5a5a32456fdce039592367828a00f1c09134dbf", "phash": "c865c7573e0e7868", "dhash": "40929331b290f1f3", "phash_int": -4.0065771159589704e+18, "collected_at": "2026-05-22T04:29:13.566633+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0334.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0334.JPG", "file_name": "IMG_0334.JPG", "file_stem": "IMG_0334", "file_ext": ".jpg", "file_size": 577257.0, "mtime": "2002-09-14T21:58:34+00:00", "mtime_ts": 1032040714.0, "ctime": "2002-09-14T21:58:34+00:00", "sha256_file": "82a395484b1d385fc22455413e4fca4e04984b1beb5737cadbdda01ff6e602d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:58:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5161", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:58:36", "EXIF DateTimeDigitized": "2002:09:14 21:58:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 112, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030334", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d39b26cda22e71b8b25a4965be1f69b00171bda6c2b1b0aeb0c31e2ed84fc299", "phash": "c37d9c12e03bd741", "dhash": "f0f0c9c9ccc8e1c4", "phash_int": -4.3601572593394094e+18, "collected_at": "2026-05-22T04:29:13.615806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0335.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0335.JPG", "file_name": "IMG_0335.JPG", "file_stem": "IMG_0335", "file_ext": ".jpg", "file_size": 366691.0, "mtime": "2002-09-14T21:58:48+00:00", "mtime_ts": 1032040728.0, "ctime": "2002-09-14T21:58:48+00:00", "sha256_file": "56745ea2bde77f45073e96cc00c2c06c5a4fa5776d4979aa372673597d08f572", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:58:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4291", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:58:49", "EXIF DateTimeDigitized": "2002:09:14 21:58:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030335", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "146", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1704"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff2c2e1df77367d51aace4930c7e31e7aa57530c9d257ed01889ee619661a66a", "phash": "c639e38e38c5233b", "dhash": "3c4cc63630e5e5c5", "phash_int": -4.163046180550008e+18, "collected_at": "2026-05-22T04:29:13.625968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0336.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0336.JPG", "file_name": "IMG_0336.JPG", "file_stem": "IMG_0336", "file_ext": ".jpg", "file_size": 407670.0, "mtime": "2002-09-14T21:58:58+00:00", "mtime_ts": 1032040738.0, "ctime": "2002-09-14T21:58:58+00:00", "sha256_file": "e7a87ce11ce9c948877b95bec9a20979f74f57484ecf6be16b54c1def1e7013f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:59:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4498", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:59:00", "EXIF DateTimeDigitized": "2002:09:14 21:59:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1883, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030336", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "146", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "42a07b8ede2ce0d489c4ce46529c0115f4491c0264ac5107109ce949e988cbaf", "phash": "8356b4496d67a995", "dhash": "fcecccced3d3ce9e", "phash_int": -8.982794179282754e+18, "collected_at": "2026-05-22T04:29:13.656967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0337.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0337.JPG", "file_name": "IMG_0337.JPG", "file_stem": "IMG_0337", "file_ext": ".jpg", "file_size": 529213.0, "mtime": "2002-09-14T21:59:22+00:00", "mtime_ts": 1032040762.0, "ctime": "2002-09-14T21:59:22+00:00", "sha256_file": "4c3a4ce327124dd2613db6dcd49af8d88e4a9205c98a96486772be51a74bf997", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 21:59:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5148", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 21:59:24", "EXIF DateTimeDigitized": "2002:09:14 21:59:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 172, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030337", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5db553115b412da6bffe1cf53b45b2e43e3ca2c1bf9301c88e7c4c698ae8de81", "phash": "c817b99da4569b25", "dhash": "2c2aa0a4e6519493", "phash_int": -4.028547254941476e+18, "collected_at": "2026-05-22T04:29:13.740386+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0338.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0338.JPG", "file_name": "IMG_0338.JPG", "file_stem": "IMG_0338", "file_ext": ".jpg", "file_size": 468249.0, "mtime": "2002-09-14T22:07:40+00:00", "mtime_ts": 1032041260.0, "ctime": "2002-09-14T22:07:40+00:00", "sha256_file": "f80824c362c59e2e34eb69a8108d26969f33ac787c91078ad726370d6441ef96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:07:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4133", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:07:41", "EXIF DateTimeDigitized": "2002:09:14 22:07:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 117, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030338", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b41dc2bb316b00b317f7e184e1b27a24c95d4487a21929ee570de2fdf39a288c", "phash": "d279e9266164cd93", "dhash": "83b898b4ede4e4d8", "phash_int": -3.2803345025106703e+18, "collected_at": "2026-05-22T04:29:13.769586+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0339.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0339.JPG", "file_name": "IMG_0339.JPG", "file_stem": "IMG_0339", "file_ext": ".jpg", "file_size": 533829.0, "mtime": "2002-09-14T22:18:12+00:00", "mtime_ts": 1032041892.0, "ctime": "2002-09-14T22:18:12+00:00", "sha256_file": "1f8669d1dd14e2e0bb517f25e2f96c883056bb65601a197c94ff544b2adac9a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:18:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5302", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:18:13", "EXIF DateTimeDigitized": "2002:09:14 22:18:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030339", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6884e14212d1ec94253ead469a4a0d455dff766504352e9717bb5091bbe262ee", "phash": "a6256896cd25d5c7", "dhash": "c7d7ee66646cadb3", "phash_int": -6.474653892379028e+18, "collected_at": "2026-05-22T04:29:13.802663+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0342.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0342.JPG", "file_name": "IMG_0342.JPG", "file_stem": "IMG_0342", "file_ext": ".jpg", "file_size": 594448.0, "mtime": "2002-09-14T22:34:40+00:00", "mtime_ts": 1032042880.0, "ctime": "2002-09-14T22:34:40+00:00", "sha256_file": "012bd89cb6f8fb45ad83bec0946eaede75b7c54e29d1968de1c398eeb24511bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:34:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5012", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:34:42", "EXIF DateTimeDigitized": "2002:09:14 22:34:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 98, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030342", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76284554bdb55bcbd2f1fa6192bfea49f42cc200e4fd8b34e29a0a7c60728692", "phash": "8d6ab38c4fa01f72", "dhash": "f3f1f0f23272b6ce", "phash_int": -8.256589551617696e+18, "collected_at": "2026-05-22T04:29:13.820663+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0344.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0344.JPG", "file_name": "IMG_0344.JPG", "file_stem": "IMG_0344", "file_ext": ".jpg", "file_size": 441348.0, "mtime": "2002-09-14T22:36:18+00:00", "mtime_ts": 1032042978.0, "ctime": "2002-09-14T22:36:18+00:00", "sha256_file": "b3fbf0b23bb43aa21f45db5f5482382890e927ff08a8a68fb7f543b0b971ed8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:36:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4966", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:36:20", "EXIF DateTimeDigitized": "2002:09:14 22:36:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1455, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030344", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a27b6df8f103dfdd9bd8784962012ed9c57ce721b16a0b32988012e08cd253ca", "phash": "d9932c0e13f53ce2", "dhash": "f2a10898c8232213", "phash_int": -2.76882090692672e+18, "collected_at": "2026-05-22T04:29:13.872835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0348.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0348.JPG", "file_name": "IMG_0348.JPG", "file_stem": "IMG_0348", "file_ext": ".jpg", "file_size": 495431.0, "mtime": "2002-09-14T22:59:22+00:00", "mtime_ts": 1032044362.0, "ctime": "2002-09-14T22:59:22+00:00", "sha256_file": "b77b25faf3d790c853f675f6badf6b0cb09eabca96ffff374d78d8ef21bba212", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:59:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5415", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:59:24", "EXIF DateTimeDigitized": "2002:09:14 22:59:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 337, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030348", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3a7235bae7b1d225e428cab9b0c1ad9f5afbef9811c496fffbd1be00d4f94d5", "phash": "c31e6cb0db075ee0", "dhash": "b0b16aca8886c746", "phash_int": -4.3869494801675474e+18, "collected_at": "2026-05-22T04:29:13.900967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0347.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0347.JPG", "file_name": "IMG_0347.JPG", "file_stem": "IMG_0347", "file_ext": ".jpg", "file_size": 593802.0, "mtime": "2002-09-14T22:42:38+00:00", "mtime_ts": 1032043358.0, "ctime": "2002-09-14T22:42:38+00:00", "sha256_file": "48ad8124ac4302563cdd13c469d91dd5159ecb88667bfb38427186e3f7df48b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:42:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5462", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:42:39", "EXIF DateTimeDigitized": "2002:09:14 22:42:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 112, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030347", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8459f2e310d30fd653a7c714f542eb5881ccfcb809d1ca37285c96ec682a598", "phash": "b51ecae117945a2d", "dhash": "7068361e969296d1", "phash_int": -5.395652235431224e+18, "collected_at": "2026-05-22T04:29:13.909023+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_0349.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_0349.JPG", "file_name": "IMG_0349.JPG", "file_stem": "IMG_0349", "file_ext": ".jpg", "file_size": 405073.0, "mtime": "2002-09-14T22:59:48+00:00", "mtime_ts": 1032044388.0, "ctime": "2002-09-14T22:59:48+00:00", "sha256_file": "30186be75740dae3f47f198c4d355423d03913501128b792b2ed5c872a204146", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 22:59:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4347", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 22:59:49", "EXIF DateTimeDigitized": "2002:09:14 22:59:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2013, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030349", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c9eba56fbe7c3f270a6918c1812ad6e5e016e41169fc24f8505fc17dc6c9106", "phash": "a55e49812f5816ef", "dhash": "d36c6ceccecc9357", "phash_int": -6.530701590446729e+18, "collected_at": "2026-05-22T04:29:13.954024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2082.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2082.JPG", "file_name": "IMG_2082.JPG", "file_stem": "IMG_2082", "file_ext": ".jpg", "file_size": 1635320.0, "mtime": "2002-09-14T07:00:22+00:00", "mtime_ts": 1031986822.0, "ctime": "2002-09-14T07:00:22+00:00", "sha256_file": "7442daedef972829197506d9462cab8d0fe04ce0c0f2fcaa8bb093500d68fb4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:00:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4845", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:00:24", "EXIF DateTimeDigitized": "2002:09:14 07:00:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "323d17ff8fdd8ae01cb67eb51cc3dd8d0a326739da97cdee8cd8e9b4160fd3e9", "phash": "81c0c5c9b1be3e7a", "dhash": "80c039ce9be060e2", "phash_int": -9.097053777227268e+18, "collected_at": "2026-05-22T04:29:14.076514+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2083.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2083.JPG", "file_name": "IMG_2083.JPG", "file_stem": "IMG_2083", "file_ext": ".jpg", "file_size": 1696782.0, "mtime": "2002-09-14T07:00:34+00:00", "mtime_ts": 1031986834.0, "ctime": "2002-09-14T07:00:34+00:00", "sha256_file": "73b8098400e8b69c58e8d680dcc1928c87690ce7fb874a628299ce887c960a7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:00:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6231", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:00:36", "EXIF DateTimeDigitized": "2002:09:14 07:00:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "056c48131b88a0da639f77229b990753023d8abc0a3e6b1877f1aa2d8cb18b8b", "phash": "8fbf3450dab86858", "dhash": "7c4e734360c2b4c6", "phash_int": -8.088688883862575e+18, "collected_at": "2026-05-22T04:29:14.138208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2084.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2084.JPG", "file_name": "IMG_2084.JPG", "file_stem": "IMG_2084", "file_ext": ".jpg", "file_size": 1676266.0, "mtime": "2002-09-14T07:00:42+00:00", "mtime_ts": 1031986842.0, "ctime": "2002-09-14T07:00:42+00:00", "sha256_file": "40ab128da449afda7e8289b07b07746caba4e5ee757bc6a123d3652970975206", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:00:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6169", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:00:44", "EXIF DateTimeDigitized": "2002:09:14 07:00:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5019/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[68, 81, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5019"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "208deebe7a91dc6bc2bfe670850a1ff4b1154ca50d98c1f214b02aa4bafcdc40", "phash": "d252366a1c65d4bd", "dhash": "0c8d8ac4bd89cebc", "phash_int": -3.2915085482835425e+18, "collected_at": "2026-05-22T04:29:14.251562+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2085.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2085.JPG", "file_name": "IMG_2085.JPG", "file_stem": "IMG_2085", "file_ext": ".jpg", "file_size": 1179131.0, "mtime": "2002-09-14T07:01:14+00:00", "mtime_ts": 1031986874.0, "ctime": "2002-09-14T07:01:14+00:00", "sha256_file": "6abbfc958c38d1eee4b984057ade3d5064d86ab48f71fdbe4a67b3d4386e5811", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:01:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4247", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:01:16", "EXIF DateTimeDigitized": "2002:09:14 07:01:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "72/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "100", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57cadc7f6d6160a8cdc96ad4828c37343ff385328cd703e08ac12336613322e7", "phash": "8fa6747a307138d3", "dhash": "256072f261717170", "phash_int": -8.095655212004329e+18, "collected_at": "2026-05-22T04:29:14.259562+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2086.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2086.JPG", "file_name": "IMG_2086.JPG", "file_stem": "IMG_2086", "file_ext": ".jpg", "file_size": 1465423.0, "mtime": "2002-09-14T07:01:46+00:00", "mtime_ts": 1031986906.0, "ctime": "2002-09-14T07:01:46+00:00", "sha256_file": "21b74d3487eff8a690cfc012219c515ec60f658392a6b14a159e1f53af5aa899", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:01:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5204", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:01:47", "EXIF DateTimeDigitized": "2002:09:14 07:01:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "064f6901e1427c729cfb798e9ecb4de1f67d5d46bc88f452f9d9238497c4e6b7", "phash": "80b2985ce3c7cde9", "dhash": "acaccecccda7d6d6", "phash_int": -9.173101966274344e+18, "collected_at": "2026-05-22T04:29:14.335136+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2087.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2087.JPG", "file_name": "IMG_2087.JPG", "file_stem": "IMG_2087", "file_ext": ".jpg", "file_size": 1698698.0, "mtime": "2002-09-14T07:33:06+00:00", "mtime_ts": 1031988786.0, "ctime": "2002-09-14T07:33:06+00:00", "sha256_file": "9ffbd22a76e1333b412339676f26814e483c05b7c93c0e94dac5f4800571c805", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:33:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5167", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:33:07", "EXIF DateTimeDigitized": "2002:09:14 07:33:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202087", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32ae378c040df2934e9473d2341426b53ccf1ccca10cc1b407bea7d2e118d396", "phash": "83d0e4ac642fbb78", "dhash": "c4d0d850f2eec6c6", "phash_int": -8.948401030518818e+18, "collected_at": "2026-05-22T04:29:14.378806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2088.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2088.JPG", "file_name": "IMG_2088.JPG", "file_stem": "IMG_2088", "file_ext": ".jpg", "file_size": 2329613.0, "mtime": "2002-09-14T07:33:58+00:00", "mtime_ts": 1031988838.0, "ctime": "2002-09-14T07:33:58+00:00", "sha256_file": "9e4c465e6c445310a920401e97f8bd793a6210ba077403bf132570bcc2ab27b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:33:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5764", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:33:59", "EXIF DateTimeDigitized": "2002:09:14 07:33:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40fecb1bc97f02dd73a6da3b2d22ef12a05480f9fd9c2115f5d9b130f2073163", "phash": "d0d98f0f4cec7291", "dhash": "b09898b099899080", "phash_int": -3.397527147996483e+18, "collected_at": "2026-05-22T04:29:14.564818+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2089.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2089.JPG", "file_name": "IMG_2089.JPG", "file_stem": "IMG_2089", "file_ext": ".jpg", "file_size": 1382761.0, "mtime": "2002-09-14T07:34:16+00:00", "mtime_ts": 1031988856.0, "ctime": "2002-09-14T07:34:16+00:00", "sha256_file": "9fda4cd537b6bebb1bc8858d35cd037f793c1bad960748c530351c1c16e3654f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:34:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5597", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:34:18", "EXIF DateTimeDigitized": "2002:09:14 07:34:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1957/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 139, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "188", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3914"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a50361de48d23c67597a08fcec8195fd65f8b35bcdd23b0f6f35e5254e15f32", "phash": "cc7996ce20bcdd48", "dhash": "525c32979531f5e4", "phash_int": -3.7127706057335854e+18, "collected_at": "2026-05-22T04:29:14.580818+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2091.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2091.JPG", "file_name": "IMG_2091.JPG", "file_stem": "IMG_2091", "file_ext": ".jpg", "file_size": 1208670.0, "mtime": "2002-09-14T07:35:18+00:00", "mtime_ts": 1031988918.0, "ctime": "2002-09-14T07:35:18+00:00", "sha256_file": "cd2d4b22d984e9a48de56734894d74fdccb905c87986a6b60a0db8c2caa38ea4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:35:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3867", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:35:20", "EXIF DateTimeDigitized": "2002:09:14 07:35:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3167/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 51, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6334"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33a20ca60750bbad77a59b7e4c566ac31d75dd925e29a193abe7c29af4fab38d", "phash": "c22abf8ac33e99c1", "dhash": "730792c8c0b929c8", "phash_int": -4.4555382786276326e+18, "collected_at": "2026-05-22T04:29:14.672819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2090.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2090.JPG", "file_name": "IMG_2090.JPG", "file_stem": "IMG_2090", "file_ext": ".jpg", "file_size": 1977131.0, "mtime": "2002-09-14T07:34:50+00:00", "mtime_ts": 1031988890.0, "ctime": "2002-09-14T07:34:50+00:00", "sha256_file": "75d084c3d85cb7243291001e5da665a4205a421a3fddfe810eb8ca6a9cc6db59", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:34:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6764", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:34:51", "EXIF DateTimeDigitized": "2002:09:14 07:34:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "777e37d8fd6c736c9e88dced2c9a584b09e7decfc41526f67389225d88185645", "phash": "f4c687b1312e4d59", "dhash": "84c0602498862790", "phash_int": -8.088098879623461e+17, "collected_at": "2026-05-22T04:29:14.683869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2092.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2092.JPG", "file_name": "IMG_2092.JPG", "file_stem": "IMG_2092", "file_ext": ".jpg", "file_size": 78920.0, "mtime": "2002-09-14T07:35:32+00:00", "mtime_ts": 1031988932.0, "ctime": "2002-09-14T07:35:32+00:00", "sha256_file": "96f14b454478ea794ac84450db66df50624c2518d7d1a5b4349b42f9e10fca5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:35:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6198", "EXIF ExposureTime": "1/25", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:35:31", "EXIF DateTimeDigitized": "2002:09:14 07:35:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7341/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7341"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "762234b097c9e56346b771bb094f299634116b6df61748ec00d5e825e0a83653", "phash": "c2682f832f3f9649", "dhash": "c3818024c0ec64e4", "phash_int": -4.438245192293706e+18, "collected_at": "2026-05-22T04:29:14.705046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2093.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2093.JPG", "file_name": "IMG_2093.JPG", "file_stem": "IMG_2093", "file_ext": ".jpg", "file_size": 53763.0, "mtime": "2002-09-14T07:35:32+00:00", "mtime_ts": 1031988932.0, "ctime": "2002-09-14T07:35:32+00:00", "sha256_file": "79642536f6baf385bf5ac3002c712ab33b1491f41b6c857f3b63b9dff1cbe0be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:35:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4582", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:35:32", "EXIF DateTimeDigitized": "2002:09:14 07:35:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "-5/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7341/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202093", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7341"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9fae690572310207d22c1cafef7675ab5078ded1d90cd0dcf9c32918e4a77ee", "phash": "c0603fc3493f97c9", "dhash": "8385b824c0ec64e0", "phash_int": -4.584594312683088e+18, "collected_at": "2026-05-22T04:29:14.722195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2098.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2098.JPG", "file_name": "IMG_2098.JPG", "file_stem": "IMG_2098", "file_ext": ".jpg", "file_size": 1516436.0, "mtime": "2002-09-14T07:37:34+00:00", "mtime_ts": 1031989054.0, "ctime": "2002-09-14T07:37:34+00:00", "sha256_file": "bb1664ab9ab0c3d32465f0452c21d4475fd80d5552e8a2f42e72914ec7a06aff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:37:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5770", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:37:32", "EXIF DateTimeDigitized": "2002:09:14 07:37:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202098", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea66f5c5a0ad0a5bb1339af35ea423611fce4e605ec9e008c5c60a7e492f1203", "phash": "d85a7170f08e2ff0", "dhash": "3a9a61e1b8108080", "phash_int": -2.8568462837270323e+18, "collected_at": "2026-05-22T04:29:14.833619+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2099.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2099.JPG", "file_name": "IMG_2099.JPG", "file_stem": "IMG_2099", "file_ext": ".jpg", "file_size": 1060878.0, "mtime": "2002-09-14T07:37:34+00:00", "mtime_ts": 1031989054.0, "ctime": "2002-09-14T07:37:34+00:00", "sha256_file": "3c6dd5d423781f16a6c2fbccc731bc035fba09be286c82db954d00656b225a55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:37:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3879", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:37:33", "EXIF DateTimeDigitized": "2002:09:14 07:37:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-5/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202099", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27ab028cd05a28c4216995b5ea1010a3204fd5ed589ec73fe6cc182a2cb27890", "phash": "d83c7170fc8e8e70", "dhash": "2a9861e198308080", "phash_int": -2.8652905328270013e+18, "collected_at": "2026-05-22T04:29:14.843620+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2102.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2102.JPG", "file_name": "IMG_2102.JPG", "file_stem": "IMG_2102", "file_ext": ".jpg", "file_size": 1173869.0, "mtime": "2002-09-14T07:38:22+00:00", "mtime_ts": 1031989102.0, "ctime": "2002-09-14T07:38:22+00:00", "sha256_file": "901158fd73749b49f01b8c46e0cf98d48e138f7b1a828b6127b8c429c101dd7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:38:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5302", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:38:23", "EXIF DateTimeDigitized": "2002:09:14 07:38:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 195, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212102", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9834225a0580d9d523f30c6c571cf00d972beec495e1b53bd11dcb06caf6898", "phash": "c62ec96f969261c9", "dhash": "e766dc2c6c46e0e0", "phash_int": -4.1661711241664015e+18, "collected_at": "2026-05-22T04:29:14.949826+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2101.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2101.JPG", "file_name": "IMG_2101.JPG", "file_stem": "IMG_2101", "file_ext": ".jpg", "file_size": 1129294.0, "mtime": "2002-09-14T07:38:16+00:00", "mtime_ts": 1031989096.0, "ctime": "2002-09-14T07:38:16+00:00", "sha256_file": "11d60fb012484a9c726bf21ead84f76276b1d5e3e9967499054f2927bc94b7c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:38:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5193", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:38:17", "EXIF DateTimeDigitized": "2002:09:14 07:38:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[144, 121, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212101", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f54b13f6aceb31a2c46bc4fe0d3b1a733f10f4333f6bf3ef043ea66b1d3c6a21", "phash": "d83cf178f48a2a74", "dhash": "3a1a61e13031e1e0", "phash_int": -2.865149761113413e+18, "collected_at": "2026-05-22T04:29:14.951830+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2103.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2103.JPG", "file_name": "IMG_2103.JPG", "file_stem": "IMG_2103", "file_ext": ".jpg", "file_size": 1520383.0, "mtime": "2002-09-14T07:38:42+00:00", "mtime_ts": 1031989122.0, "ctime": "2002-09-14T07:38:42+00:00", "sha256_file": "a1a04884dfb0d9164b464b67bdc46221ace34e6a07c40418fab9646ad16a14e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:38:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6640", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:38:44", "EXIF DateTimeDigitized": "2002:09:14 07:38:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[130, 212, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212103", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c03443edfd26c30477948829f98383a42cb15e01c779c69cd4e83ece5e3adeff", "phash": "900b1d799783f939", "dhash": "f8d19ccc8c98b830", "phash_int": -8.067321899433855e+18, "collected_at": "2026-05-22T04:29:15.029561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2104.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2104.JPG", "file_name": "IMG_2104.JPG", "file_stem": "IMG_2104", "file_ext": ".jpg", "file_size": 1315860.0, "mtime": "2002-09-14T07:39:40+00:00", "mtime_ts": 1031989180.0, "ctime": "2002-09-14T07:39:40+00:00", "sha256_file": "88c485fbbe2c6676ff681d97502c13192efc6fdc6746375f3f0a62bcf783db44", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:39:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5651", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:39:42", "EXIF DateTimeDigitized": "2002:09:14 07:39:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[175, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212104", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09439df9b03c12cbe30e031cc904e79d5e5bae8856ccb5c32701795d377902f9", "phash": "d0f4f5a6b6d5480c", "dhash": "0e92b2c8e5a75254", "phash_int": -3.3898145231223337e+18, "collected_at": "2026-05-22T04:29:15.032623+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2105.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2105.JPG", "file_name": "IMG_2105.JPG", "file_stem": "IMG_2105", "file_ext": ".jpg", "file_size": 2063032.0, "mtime": "2002-09-14T07:41:40+00:00", "mtime_ts": 1031989300.0, "ctime": "2002-09-14T07:41:40+00:00", "sha256_file": "4fa4a310978eed289ed7b1fa78ea0f5ee63b0eae62dbdb4a2221812b18927034", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:41:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6202", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:41:41", "EXIF DateTimeDigitized": "2002:09:14 07:41:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212105", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60655427e9dbfaf055e341a570ba38b52c8393f44c2c5448a00220b29cb5ee71", "phash": "c84833b373329ecb", "dhash": "88b2b1b5b3b6aeb6", "phash_int": -4.0149022219759375e+18, "collected_at": "2026-05-22T04:29:15.271702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2106.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2106.JPG", "file_name": "IMG_2106.JPG", "file_stem": "IMG_2106", "file_ext": ".jpg", "file_size": 1875749.0, "mtime": "2002-09-14T07:41:50+00:00", "mtime_ts": 1031989310.0, "ctime": "2002-09-14T07:41:50+00:00", "sha256_file": "4c17b2e1f1d26dcc733774bc2aac97f602ea01d1cf760b44c217d21e01f24bc8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:41:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4916", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:41:52", "EXIF DateTimeDigitized": "2002:09:14 07:41:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 351, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212106", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f751608b9434208f95b3d2aed4621ecacd1c8077db4ce63323da2fb7d9bf8be0", "phash": "d0ca7a42fa3325bc", "dhash": "e9f0f2f8f6d43830", "phash_int": -3.401772140440902e+18, "collected_at": "2026-05-22T04:29:15.278702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2107.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2107.JPG", "file_name": "IMG_2107.JPG", "file_stem": "IMG_2107", "file_ext": ".jpg", "file_size": 1702921.0, "mtime": "2002-09-14T07:46:32+00:00", "mtime_ts": 1031989592.0, "ctime": "2002-09-14T07:46:32+00:00", "sha256_file": "420e9d2fad9cdfb781611b0bfbd80f876c3929b130e659a938a4b491d6409da1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 07:46:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6200", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 07:46:33", "EXIF DateTimeDigitized": "2002:09:14 07:46:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 317, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1434b912ff9aba99ba3773b4bbdda2a643b8dcc9cd3dc2dc22dab8fcac244730", "phash": "d8403732338d9bbd", "dhash": "8032323331313333", "phash_int": -2.8642286742548244e+18, "collected_at": "2026-05-22T04:29:15.377564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2108.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2108.JPG", "file_name": "IMG_2108.JPG", "file_stem": "IMG_2108", "file_ext": ".jpg", "file_size": 1987002.0, "mtime": "2002-09-14T08:03:52+00:00", "mtime_ts": 1031990632.0, "ctime": "2002-09-14T08:03:52+00:00", "sha256_file": "d6e695d7e972f380ec4a236deae685ac1aea1fa2e2a6fada6c044a54bfe1aaef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:03:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4807", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 08:03:53", "EXIF DateTimeDigitized": "2002:09:14 08:03:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 299, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f946c69a9ab4409e73dd64cacf4a805faee04715f6f4fa3cd58ad8df43048ef", "phash": "91a1264e5a9dad9d", "dhash": "6cdcd2d8d86e7878", "phash_int": -7.953033348989998e+18, "collected_at": "2026-05-22T04:29:15.391631+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2109.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2109.JPG", "file_name": "IMG_2109.JPG", "file_stem": "IMG_2109", "file_ext": ".jpg", "file_size": 2063738.0, "mtime": "2002-09-14T08:04:12+00:00", "mtime_ts": 1031990652.0, "ctime": "2002-09-14T08:04:12+00:00", "sha256_file": "4219fe5e52b438df1c32091a10dde103c5ad586edc8115c622e3f913fc2ae44d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:04:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6325", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 08:04:13", "EXIF DateTimeDigitized": "2002:09:14 08:04:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9444fff6f73d3c9021ef44ed506e28b39f3e141589bd9bef5dc1ff59879b7ada", "phash": "d95a26a66436b5ca", "dhash": "0119111333362e36", "phash_int": -2.7848709234874967e+18, "collected_at": "2026-05-22T04:29:15.504672+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2110.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2110.JPG", "file_name": "IMG_2110.JPG", "file_stem": "IMG_2110", "file_ext": ".jpg", "file_size": 2087903.0, "mtime": "2002-09-14T08:04:18+00:00", "mtime_ts": 1031990658.0, "ctime": "2002-09-14T08:04:18+00:00", "sha256_file": "9ac4d0e8a108b2af007246d656a7901b82add0f68735bd2e320e4e3dad3b366b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:04:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6188", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 08:04:19", "EXIF DateTimeDigitized": "2002:09:14 08:04:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 281, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5ccbe8711bd35e844f689b09e9c22f436fbe18a23c0f9d48af48254078c82f1", "phash": "951c50e2263f71f3", "dhash": "b4343476e7ced7c6", "phash_int": -7.702192330475868e+18, "collected_at": "2026-05-22T04:29:15.518642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-15\\IMG_0353.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-15\\IMG_0353.JPG", "file_name": "IMG_0353.JPG", "file_stem": "IMG_0353", "file_ext": ".jpg", "file_size": 493694.0, "mtime": "2002-09-14T23:30:32+00:00", "mtime_ts": 1032046232.0, "ctime": "2002-09-14T23:30:32+00:00", "sha256_file": "e51603579d5ce003deb90b2cd1d3d5f3a3b1fe5f5ab72aa18e490da1de32f0f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 23:30:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5155", "EXIF ExposureTime": "1/100", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 23:30:34", "EXIF DateTimeDigitized": "2002:09:14 23:30:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 368, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030353", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1285"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "716f17b34b547e6ef1bd82d437af888753a132e6c0f6ff5255a66351df82548e", "phash": "9941362ee0d99d4f", "dhash": "f052b292d3373565", "phash_int": -7.403576737451632e+18, "collected_at": "2026-05-22T04:29:15.663641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-14\\IMG_2111.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-14\\IMG_2111.JPG", "file_name": "IMG_2111.JPG", "file_stem": "IMG_2111", "file_ext": ".jpg", "file_size": 1723258.0, "mtime": "2002-09-14T08:19:18+00:00", "mtime_ts": 1031991558.0, "ctime": "2002-09-14T08:19:18+00:00", "sha256_file": "f78096838aa0c8c22bc2805b53526e8e163f902be0cdd55638b2230565daae4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 08:19:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6112", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:14 08:19:19", "EXIF DateTimeDigitized": "2002:09:14 08:19:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1787491404e0f60a65640d2b2bb5f13201ce32f88a287de14717ce9f59c8508a", "phash": "a4f9398e5386d313", "dhash": "9e9e9eeeeee6e6de", "phash_int": -6.559148098838932e+18, "collected_at": "2026-05-22T04:29:15.700644+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-15\\IMG_0354.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-15\\IMG_0354.JPG", "file_name": "IMG_0354.JPG", "file_stem": "IMG_0354", "file_ext": ".jpg", "file_size": 449739.0, "mtime": "2002-09-14T23:31:02+00:00", "mtime_ts": 1032046262.0, "ctime": "2002-09-14T23:31:02+00:00", "sha256_file": "a9c1b73848df79b7f1eb886217f7b4b481218e363452bf67dfad9375d70f3529", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 23:31:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4249", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 23:31:03", "EXIF DateTimeDigitized": "2002:09:14 23:31:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5005, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030354", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "550f9007222be6dfed62c7bc4a73b2469b753e2867356e4d313845f515b54063", "phash": "e272992d4ab2ce5c", "dhash": "989dcdcdc7e31cf8", "phash_int": -2.129471253987013e+18, "collected_at": "2026-05-22T04:29:15.773645+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-15\\IMG_0357.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-15\\IMG_0357.JPG", "file_name": "IMG_0357.JPG", "file_stem": "IMG_0357", "file_ext": ".jpg", "file_size": 354996.0, "mtime": "2002-09-14T23:33:00+00:00", "mtime_ts": 1032046380.0, "ctime": "2002-09-14T23:33:00+00:00", "sha256_file": "93329800c31dcedc5cb0ea0bea6df869027b2f85361eea1bd1b28638793f3942", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:14 23:33:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4154", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:14 23:33:01", "EXIF DateTimeDigitized": "2002:09:14 23:33:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 6656, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030357", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5c19b78ed8a43a7225deea952c15d76528342e88a636d0466a78fe36fe6d05e", "phash": "f05ca74e5e684c27", "dhash": "301890b4ac9d8fce", "phash_int": -1.1268418517162854e+18, "collected_at": "2026-05-22T04:29:15.798728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-15\\IMG_0358.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-15\\IMG_0358.JPG", "file_name": "IMG_0358.JPG", "file_stem": "IMG_0358", "file_ext": ".jpg", "file_size": 547980.0, "mtime": "2002-09-15T00:33:50+00:00", "mtime_ts": 1032050030.0, "ctime": "2002-09-15T00:33:50+00:00", "sha256_file": "e09d44d580b5773b32824269c417da1b268d9a0f6cd01f1cc721defdac3ed0e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:15 00:33:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4782", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:15 00:33:51", "EXIF DateTimeDigitized": "2002:09:15 00:33:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 81, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030358", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2681"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8cec13f0075eacd2463e21d9a427122ea3b4908b1c6a5a14f57ffb1f3f10a400", "phash": "dc013fa8c19f6f50", "dhash": "88c8d6d694376564", "phash_int": -2.593721916353188e+18, "collected_at": "2026-05-22T04:29:15.817924+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-15\\IMG_0360.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-15\\IMG_0360.JPG", "file_name": "IMG_0360.JPG", "file_stem": "IMG_0360", "file_ext": ".jpg", "file_size": 502259.0, "mtime": "2002-09-15T01:00:30+00:00", "mtime_ts": 1032051630.0, "ctime": "2002-09-15T01:00:30+00:00", "sha256_file": "a4deead64b9903a19a8033035201032b33665cc97e4c7883dc9d6e5540d2ea73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:15 01:00:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4778", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:09:15 01:00:31", "EXIF DateTimeDigitized": "2002:09:15 01:00:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1106, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1030360", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "527758e5136980691192f3209bd318a2f12b1327d8980967276f298a2c0b0b78", "phash": "9c726d91c6995a3c", "dhash": "c6ce3171f4f0f2b0", "phash_int": -7.173550783578154e+18, "collected_at": "2026-05-22T04:29:15.841923+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-16\\121-2185_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-16\\121-2185_IMG.JPG", "file_name": "121-2185_IMG.JPG", "file_stem": "121-2185_IMG", "file_ext": ".jpg", "file_size": 687267.0, "mtime": "2002-09-16T19:38:36+00:00", "mtime_ts": 1032205116.0, "ctime": "2002-09-16T19:38:36+00:00", "sha256_file": "16a77d2ffe7433b67d828095e7df931c6ed5f2b619cb30079a3812bdfc045752", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:16 19:38:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6715", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:16 19:38:37", "EXIF DateTimeDigitized": "2002:09:16 19:38:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "847/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212185", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "847"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e194e5cd51ac7a84de1fbf13449a1664e72d481766aa48dcf7b21c25e7171df", "phash": "9d50e78728b9dc4a", "dhash": "6ed1999371724a67", "phash_int": -7.110929243928143e+18, "collected_at": "2026-05-22T04:29:15.907015+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-16\\121-2186_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-16\\121-2186_IMG.JPG", "file_name": "121-2186_IMG.JPG", "file_stem": "121-2186_IMG", "file_ext": ".jpg", "file_size": 572296.0, "mtime": "2002-09-16T19:38:48+00:00", "mtime_ts": 1032205128.0, "ctime": "2002-09-16T19:38:48+00:00", "sha256_file": "9066fe30200532eea478e491189292270c38f62064c812292f834022ae86d4f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:16 19:38:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6328", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:16 19:38:50", "EXIF DateTimeDigitized": "2002:09:16 19:38:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "99/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1212186", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "132", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "495"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91526c38779452460a417d8a8ab2a879d3f030ad82a8f29fa321b73a29e0726d", "phash": "8521658fb0de7b86", "dhash": "4acaaeb4e4626278", "phash_int": -8.853683724611585e+18, "collected_at": "2026-05-22T04:29:15.913013+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 726717.0, "mtime": "2002-09-20T17:59:00+00:00", "mtime_ts": 1032544740.0, "ctime": "2002-09-20T17:59:00+00:00", "sha256_file": "fd906b81820dac1aec3ce62980a54754219d46dfab5595a84c9ea08d8baf5c05", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 17:59:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4113", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 17:59:02", "EXIF DateTimeDigitized": "2002:09:20 17:59:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "99/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3960"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8cfa35f71ef638f76db9a08fe4588caa6c9e8871de1fa28a86e7f3e69d780975", "phash": "c38b8d3d54c2cd9c", "dhash": "fbcbc9c91813d8e0", "phash_int": -4.3562329199962486e+18, "collected_at": "2026-05-22T04:29:15.990197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 740948.0, "mtime": "2002-09-20T17:58:50+00:00", "mtime_ts": 1032544730.0, "ctime": "2002-09-20T17:58:50+00:00", "sha256_file": "56592992f60bb5752e6f4af9b06c76dcd953b4c37d0a111a06b79395f67956fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 17:58:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3829", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 17:58:52", "EXIF DateTimeDigitized": "2002:09:20 17:58:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6caf3c5405cc3bc2e2040c2375d49c0b6c20019a6d5af4330954ca9089d94976", "phash": "b3b14c0ee4f31339", "dhash": "f89a9a9e1f791bdb", "phash_int": -5.498530043188276e+18, "collected_at": "2026-05-22T04:29:15.996197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 887526.0, "mtime": "2002-09-20T17:59:06+00:00", "mtime_ts": 1032544746.0, "ctime": "2002-09-20T17:59:06+00:00", "sha256_file": "2a6a470efee180ce42a13cfce0939312a49edb38c8d747e80d71f2752eb48386", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 17:59:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4199", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 17:59:08", "EXIF DateTimeDigitized": "2002:09:20 17:59:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6349/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "188", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6349"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c63b55a70bb7894ecfd8f22cd720172668e694330f193b558ff6a4627fd3b8c", "phash": "e45c93ca1a9be586", "dhash": "a0302687a7c690e0", "phash_int": -1.9915544389655004e+18, "collected_at": "2026-05-22T04:29:16.126481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 737257.0, "mtime": "2002-09-20T17:59:28+00:00", "mtime_ts": 1032544768.0, "ctime": "2002-09-20T17:59:28+00:00", "sha256_file": "d2cf637dfaa2208db4749ae1410012f38df401cc7d279893a82cb1e167c4549e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 17:59:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4245", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 17:59:29", "EXIF DateTimeDigitized": "2002:09:20 17:59:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6291/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12582"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c43f3c1f18ee3a1f1c0c15b0dd1740cd5171710f59d5adae704342121d2dd18c", "phash": "cdf68d512c8d721c", "dhash": "56d606d792daf2f2", "phash_int": -3.6055390718841687e+18, "collected_at": "2026-05-22T04:29:16.134481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 1186835.0, "mtime": "2002-09-22T20:04:40+00:00", "mtime_ts": 1032725080.0, "ctime": "2002-09-22T20:04:40+00:00", "sha256_file": "01ec08ddb5d8c5cbc41d048f7a835891b0b6acd1e8ddf888bee6f3f2b552be32", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd14599f79c28f029931602c5baabe7d258a960c492a11fe07104debe3757918", "phash": "8a8b257594753d96", "dhash": "69697969694dccb0", "phash_int": -8.463629887780603e+18, "collected_at": "2026-05-22T04:29:16.228048+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 785586.0, "mtime": "2002-09-20T17:59:46+00:00", "mtime_ts": 1032544786.0, "ctime": "2002-09-20T17:59:46+00:00", "sha256_file": "c7d350cf098218a46f52489d3ba429f89c7f2ecc0717609ec6ae9c482ed14427", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 17:59:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4011", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 17:59:48", "EXIF DateTimeDigitized": "2002:09:20 17:59:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "251", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae24408c40b93f810252a5eef7b7bf12a94f637f7fc13ffaf73606b9cf60fc53", "phash": "a6a7191dcc589de4", "dhash": "f2eeceace6ee84d8", "phash_int": -6.43814952652973e+18, "collected_at": "2026-05-22T04:29:16.232051+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 908495.0, "mtime": "2002-09-20T18:00:00+00:00", "mtime_ts": 1032544800.0, "ctime": "2002-09-20T18:00:00+00:00", "sha256_file": "78303cd3687201dd9162e2f500f60fde8bb53524e2b4514065f03deb58f87ef6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:00:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4730", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:00:01", "EXIF DateTimeDigitized": "2002:09:20 18:00:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa524cfbede19961ccf0ac819c77f3ade8e300925ae171da13fae4e59f0de2d2", "phash": "bcf244a3ce11ea55", "dhash": "9636161e1f1ebee6", "phash_int": -4.831723979887482e+18, "collected_at": "2026-05-22T04:29:16.308371+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 876501.0, "mtime": "2002-09-20T18:00:06+00:00", "mtime_ts": 1032544806.0, "ctime": "2002-09-20T18:00:06+00:00", "sha256_file": "bf5d62573e1218d567c5deed84cdd397903a195df512bcf7c3fcadb4ccc7e7ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:00:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4811", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:00:08", "EXIF DateTimeDigitized": "2002:09:20 18:00:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6957/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6957"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "80bf529e8a131d475cb6f344109c6b3649047fc2e95dd5984f074bc2b6d745fa", "phash": "dfcfcc7419303891", "dhash": "70485858580484a4", "phash_int": -2.319410484061653e+18, "collected_at": "2026-05-22T04:29:16.319430+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 809428.0, "mtime": "2002-09-20T18:01:20+00:00", "mtime_ts": 1032544880.0, "ctime": "2002-09-20T18:01:20+00:00", "sha256_file": "2624403e0ca3b541acbfde09f4c58ba8bb540e247fc9fb1d53e0ca3bd90b3079", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:01:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5177", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:01:21", "EXIF DateTimeDigitized": "2002:09:20 18:01:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2833/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5666"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e13b54a2375baa331969ea83a26692ebc34fcaea82c8ce2e52e99fd3419cacc", "phash": "b3f290d781ca6ccc", "dhash": "8c0f074fd64452d6", "phash_int": -5.480158541286577e+18, "collected_at": "2026-05-22T04:29:16.359433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 704177.0, "mtime": "2002-09-20T18:01:30+00:00", "mtime_ts": 1032544890.0, "ctime": "2002-09-20T18:01:30+00:00", "sha256_file": "f176610c610e0e273afc4d6cc84472342c0c5e972370f3846279b1464296bfd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:01:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3992", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:01:31", "EXIF DateTimeDigitized": "2002:09:20 18:01:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "237", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18102e3f42a2bf317a7ffffc6622f1129edb2c5334b09cd57275598d3af81af6", "phash": "b1e34fbce81c9c88", "dhash": "cacccccc9c9cbcc3", "phash_int": -5.628567436516353e+18, "collected_at": "2026-05-22T04:29:16.371433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 818462.0, "mtime": "2002-09-20T18:01:36+00:00", "mtime_ts": 1032544896.0, "ctime": "2002-09-20T18:01:36+00:00", "sha256_file": "1f7e4e227914a07ad5aa8f0e477de9b6e14fd67726a3c989eeff09199536ec48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:01:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4517", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:01:37", "EXIF DateTimeDigitized": "2002:09:20 18:01:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1006aa2bdd5c1e08ddf64e374cb263b003ca45221c3935336be54a93163da061", "phash": "d6d68dc59cad09b0", "dhash": "644c5c5c4dc8cce8", "phash_int": -2.966027424700233e+18, "collected_at": "2026-05-22T04:29:16.487601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 909688.0, "mtime": "2002-09-20T18:09:04+00:00", "mtime_ts": 1032545344.0, "ctime": "2002-09-20T18:09:04+00:00", "sha256_file": "4ca13a0cd78d829f816310ef8c832298975addffb5c98934858a1c69e2c62ffa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:09:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4400", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:09:05", "EXIF DateTimeDigitized": "2002:09:20 18:09:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b2c60bd876350ce1b7126f6782cb4b0a69a8e865093be11e700a4bdd153a87e", "phash": "de7f8488167dc0d4", "dhash": "30200000408160e4", "phash_int": -2.414065155219538e+18, "collected_at": "2026-05-22T04:29:16.488598+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 814646.0, "mtime": "2002-09-20T18:09:16+00:00", "mtime_ts": 1032545356.0, "ctime": "2002-09-20T18:09:16+00:00", "sha256_file": "0d9615441d1ecbd22471aa2b01d40fa053dc4aa82e73490da203db247ddfb717", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:09:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3762", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:09:18", "EXIF DateTimeDigitized": "2002:09:20 18:09:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11527/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 38, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11527"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0fac93297b1de97e40076e41ddfc0bfdfb379b08e52c7f8bdcba5785fe4fb504", "phash": "9818e7ee1838f66a", "dhash": "32f2b2b2b23093c0", "phash_int": -7.48697937070883e+18, "collected_at": "2026-05-22T04:29:16.592198+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 1674518.0, "mtime": "2002-09-20T18:09:28+00:00", "mtime_ts": 1032545368.0, "ctime": "2002-09-20T18:09:28+00:00", "sha256_file": "493cf5627b6f802d9d28a00706d36c52b49bfb59e60f09fcbf8f60a99e88c567", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:09:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4335", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:09:29", "EXIF DateTimeDigitized": "2002:09:20 18:09:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "10243/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[57, 43, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10243"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f2e731e961781760cdc4b9a94af2a668ed1b8e33f8d688be4ff30891fe23182", "phash": "9d1de3a64c80f21f", "dhash": "f2b2b2b232209a00", "phash_int": -7.125288732042661e+18, "collected_at": "2026-05-22T04:29:16.633194+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 1420235.0, "mtime": "2002-09-20T18:09:42+00:00", "mtime_ts": 1032545382.0, "ctime": "2002-09-20T18:09:42+00:00", "sha256_file": "d204dbd84d66f3c973636f37256c2f82ea3ebd9470d9d1f3ff4457c0c7f7d66f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:09:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4292", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:09:44", "EXIF DateTimeDigitized": "2002:09:20 18:09:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4387/500", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 43, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "20", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8774"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5bd04fe0d8b656e54331dcc66ebd442c23801cc7406ec36ad95696f367fd5a9", "phash": "d941e2c6e2e2b8b6", "dhash": "c0d2b2b23232328c", "phash_int": -2.791700950155086e+18, "collected_at": "2026-05-22T04:29:16.689292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 191272.0, "mtime": "2002-09-22T20:04:20+00:00", "mtime_ts": 1032725060.0, "ctime": "2002-09-22T20:04:20+00:00", "sha256_file": "b1e0605283981ba5ea48da4858d5408e28ea1fd4e569adb68e1da2328d40f350", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f3a0fc0c8d80829ed6fce1bbaf325a65801af1eb354172f50e257d84d546205", "phash": "cfe19392b27270ac", "dhash": "c8f2f221e3e1e0e0", "phash_int": -3.467327979830219e+18, "collected_at": "2026-05-22T04:29:16.720295+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1614880.0, "mtime": "2002-09-20T18:09:52+00:00", "mtime_ts": 1032545392.0, "ctime": "2002-09-20T18:09:52+00:00", "sha256_file": "712dace30362092fc7bcb71a21e2dfb7fd73b211ce844beb783fec9288bb95f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:09:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4343", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:09:53", "EXIF DateTimeDigitized": "2002:09:20 18:09:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "53167/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 45, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "53167"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "999a575b9d8e63cc5e52da3663454e3adde923da4b899f3e9961c0737ac1346c", "phash": "9d4de3c849e361e1", "dhash": "d2b2b272b2324c92", "phash_int": -7.111777787175543e+18, "collected_at": "2026-05-22T04:29:16.733292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 741865.0, "mtime": "2002-09-20T18:39:20+00:00", "mtime_ts": 1032547160.0, "ctime": "2002-09-20T18:39:20+00:00", "sha256_file": "987f01512b8bf9c16fb04c5aef4f81c6a86a8e81301f85b86310fb692d3de919", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3704", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:21", "EXIF DateTimeDigitized": "2002:09:20 18:39:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d4b2ed5702bc3a93c4e72cec16ebd0228cab80e085d48030e542b8315f9460eb", "phash": "bdb980424e7fad90", "dhash": "a890176eb07e58f4", "phash_int": -4.775644907576514e+18, "collected_at": "2026-05-22T04:29:16.770781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 785510.0, "mtime": "2002-09-20T18:39:10+00:00", "mtime_ts": 1032547150.0, "ctime": "2002-09-20T18:39:10+00:00", "sha256_file": "5bc71f395d2d306c8203105a9c0ecd9a2ccdec3f6958ea07096ed59c4787adc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3908", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:12", "EXIF DateTimeDigitized": "2002:09:20 18:39:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1244f27a3bbacdd8567a4231c611a8be3647070ef3a3decb96625b2b3abead1c", "phash": "a6e6d91983f07227", "dhash": "3004cc8ccc7cded8", "phash_int": -6.42020551515908e+18, "collected_at": "2026-05-22T04:29:16.772779+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 882028.0, "mtime": "2002-09-20T18:39:32+00:00", "mtime_ts": 1032547172.0, "ctime": "2002-09-20T18:39:32+00:00", "sha256_file": "3aae53bbdecf7d80e3788e99e24e059abfe646942196fd0e4c51b5e7681cea98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4200", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:34", "EXIF DateTimeDigitized": "2002:09:20 18:39:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4cd744d0bb5d979d4decc749d7fd52bce8a066ea8ffba3b4c427f2d3ed946185", "phash": "d2f78c113de0e742", "dhash": "f8f0c909e8c8f0b0", "phash_int": -3.2449710008166707e+18, "collected_at": "2026-05-22T04:29:16.831830+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 931256.0, "mtime": "2002-09-20T18:39:26+00:00", "mtime_ts": 1032547166.0, "ctime": "2002-09-20T18:39:26+00:00", "sha256_file": "cb6fa668743c063a577491e1e48ea0d2268a2849cd7fbb3dfeadc106b234af6f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5131", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:27", "EXIF DateTimeDigitized": "2002:09:20 18:39:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7987008d2f0363471be329df5c3cd4e91987e27cf721dccc648d5626fa2d5e6", "phash": "94948bcb5f14f4c6", "dhash": "f0fcc41440c0e084", "phash_int": -7.740408153953209e+18, "collected_at": "2026-05-22T04:29:16.833830+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 977328.0, "mtime": "2002-09-20T18:39:38+00:00", "mtime_ts": 1032547178.0, "ctime": "2002-09-20T18:39:38+00:00", "sha256_file": "a651c39ad1de59281cbdbdf031f63702dc2a86f5cc83ab20df324452b5c44c26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4420", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:39", "EXIF DateTimeDigitized": "2002:09:20 18:39:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "193", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd9e0926073b8e88d4f423a1a32c34110c574f0423b0b7e59f2d16ab34de2408", "phash": "d5d58c0e32f315cc", "dhash": "f4f4da988c8480f2", "phash_int": -3.038368380979309e+18, "collected_at": "2026-05-22T04:29:16.885979+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 713206.0, "mtime": "2002-09-20T18:39:56+00:00", "mtime_ts": 1032547196.0, "ctime": "2002-09-20T18:39:56+00:00", "sha256_file": "ef0cfd40f88237fc425f1eb947d13391f90dd5a87e519c26a748716da036b8d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:39:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3786", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:39:58", "EXIF DateTimeDigitized": "2002:09:20 18:39:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4203/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4203"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9372e257ea339d95375ace1a1a06865f1228c815d0e5f9ddd1339d014f95a030", "phash": "c3d61c49919f1f61", "dhash": "e8c888c8c860ccb0", "phash_int": -4.3352464889962086e+18, "collected_at": "2026-05-22T04:29:16.895980+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 782476.0, "mtime": "2002-09-20T18:40:02+00:00", "mtime_ts": 1032547202.0, "ctime": "2002-09-20T18:40:02+00:00", "sha256_file": "a7c6ee0d05113a808aa4106e138f008c3e671e5ebd3850912390243ffe7530ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:40:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4457", "EXIF ExposureTime": "1/50", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:40:03", "EXIF DateTimeDigitized": "2002:09:20 18:40:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3439/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3439"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6a623ec765e2ec9087263e56eae1fba9c94f6b04aa0c02056f9f7b045373ce5", "phash": "f3b3880c7c13e3a5", "dhash": "e4da480806cad9da", "phash_int": -8.862151144591924e+17, "collected_at": "2026-05-22T04:29:16.926981+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 202415.0, "mtime": "2002-09-22T20:04:12+00:00", "mtime_ts": 1032725052.0, "ctime": "2002-09-22T20:04:12+00:00", "sha256_file": "f36f2afe3d5514962ca69ae9865aae045ffe60e5c43904f85c8d371865fb1b34", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "920c94f8b7e2eaaaf16bcc5c7c904dd54ae1f449b9025a7a824c5a69d7b94c9e", "phash": "e30da3e6ccd986c2", "dhash": "63565112c4cccccc", "phash_int": -2.085830840728058e+18, "collected_at": "2026-05-22T04:29:16.941982+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 840944.0, "mtime": "2002-09-20T18:40:22+00:00", "mtime_ts": 1032547222.0, "ctime": "2002-09-20T18:40:22+00:00", "sha256_file": "5a849f3288a016fca12004f8c4727b7e28a7ee17f0a7bb668b6152ef29201671", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:40:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4332", "EXIF ExposureTime": "1/25", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:40:24", "EXIF DateTimeDigitized": "2002:09:20 18:40:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1257/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "171", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10056"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "62d6b4c2f75492f338b72a84f8b481c7730e17666ff4effdcdc48fcf56965d22", "phash": "ddb681e27a7d060a", "dhash": "08f2323205c092d3", "phash_int": -2.4706445358485325e+18, "collected_at": "2026-05-22T04:29:16.986035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 820637.0, "mtime": "2002-09-20T18:40:18+00:00", "mtime_ts": 1032547218.0, "ctime": "2002-09-20T18:40:18+00:00", "sha256_file": "ac04dfd9c151d0520261dec11a320151682c05f3a4fa292c8f8d7cb2f5cbca2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:40:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3990", "EXIF ExposureTime": "1/25", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:40:20", "EXIF DateTimeDigitized": "2002:09:20 18:40:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "367/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "18350"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0bb84f653ad1cfc9fb8044899438fce0212261f30540af997851bce9dd2da518", "phash": "dc8c83e37e5d4aa0", "dhash": "20d0723002c0f8d4", "phash_int": -2.554521875525056e+18, "collected_at": "2026-05-22T04:29:16.994036+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 961619.0, "mtime": "2002-09-20T18:40:44+00:00", "mtime_ts": 1032547244.0, "ctime": "2002-09-20T18:40:44+00:00", "sha256_file": "3242b001fe0ea49f96d46ae16be1100eaf7bc035ec7e03a56f5c335c3a8ab389", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:40:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5207", "EXIF ExposureTime": "1/15", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:40:46", "EXIF DateTimeDigitized": "2002:09:20 18:40:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "553/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13825"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9f75d55886e95c6e4631dfc09fb24aa5320e716d9a6e2d5c7a6abfddb35b9df", "phash": "e285a69ab57264e3", "dhash": "e6ebcb93d189aded", "phash_int": -2.1241084658359734e+18, "collected_at": "2026-05-22T04:29:17.031431+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 981206.0, "mtime": "2002-09-20T18:41:02+00:00", "mtime_ts": 1032547262.0, "ctime": "2002-09-20T18:41:02+00:00", "sha256_file": "a9fc672fe762d69360f3c1359eecbd0e65634920996ec267101096ee41e48e94", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:41:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4995", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:41:04", "EXIF DateTimeDigitized": "2002:09:20 18:41:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2761/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[122, 29, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "156", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5522"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52ad60eceec79e3bb9ad03389419095ede3e27c6748715474107caea68fb7443", "phash": "953acac4eaead491", "dhash": "6178786efaf2d0f2", "phash_int": -7.693614066305412e+18, "collected_at": "2026-05-22T04:29:17.037427+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 877563.0, "mtime": "2002-09-20T19:08:10+00:00", "mtime_ts": 1032548890.0, "ctime": "2002-09-20T19:08:10+00:00", "sha256_file": "886d1eb3da45a6cae9f62843bd294438580e3c268da6febb922285df737300f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 19:08:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4708", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 19:08:11", "EXIF DateTimeDigitized": "2002:09:20 19:08:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[90, 45, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ab531dbff8e3fd2b71fda12cf09f005355d5d8b82130885388d2477981a8b22", "phash": "c5e9f2769617c1c0", "dhash": "8c83c2e2646078e8", "phash_int": -4.1855477875259633e+18, "collected_at": "2026-05-22T04:29:17.075730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 848369.0, "mtime": "2002-09-20T18:55:18+00:00", "mtime_ts": 1032548118.0, "ctime": "2002-09-20T18:55:18+00:00", "sha256_file": "681a6aa3b519d91176fb029069bf0464f1f1ce2df1265a0b80267f28ac16310a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 18:55:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6415", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 18:55:19", "EXIF DateTimeDigitized": "2002:09:20 18:55:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[111, 156, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7914a3fc5cb4688aaafca774e96aeb9282af5678f9aa2c112daa87363d7c5550", "phash": "f8a9d2364ddb3046", "dhash": "13171313261c18f0", "phash_int": -5.286603505630453e+17, "collected_at": "2026-05-22T04:29:17.077732+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 182771.0, "mtime": "2002-09-22T20:02:42+00:00", "mtime_ts": 1032724962.0, "ctime": "2002-09-22T20:02:42+00:00", "sha256_file": "77f9fe355070b023fa3f3361f513c148a5c4a11726bc696092801e7cfaa14c22", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "550ccab64a8e820879047bb98f7e476f323abe7867b475401b17b2c68045b272", "phash": "c1e3f276968f85c0", "dhash": "c481c3f3b4e0f8ec", "phash_int": -4.47546701353009e+18, "collected_at": "2026-05-22T04:29:17.114876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 912301.0, "mtime": "2002-09-20T19:08:32+00:00", "mtime_ts": 1032548912.0, "ctime": "2002-09-20T19:08:32+00:00", "sha256_file": "7de2974ae876dd8108a918c5e25e67175fd70212441a53152826a3c0bd747c29", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 19:08:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4677", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 19:08:34", "EXIF DateTimeDigitized": "2002:09:20 19:08:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[123, 81, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a07c141475a161d3c2b025c8a104d252301ae1fd349efb009c04f3ae1ed0f1c", "phash": "c5e1f2161685c1fd", "dhash": "cc03c2e2646078e8", "phash_int": -4.1878000017967836e+18, "collected_at": "2026-05-22T04:29:17.121069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 191459.0, "mtime": "2002-09-22T20:02:58+00:00", "mtime_ts": 1032724978.0, "ctime": "2002-09-22T20:02:58+00:00", "sha256_file": "9589ffe68b2c6db53f906a25d7c165e14a5f6761137965863e33c8ff6844a2d4", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd8bdef48bbd927eb875ecf3cc44b7952f313443f283b9f186f20732b1ded5b9", "phash": "a3b632d8c18f1736", "dhash": "ac0d6ccbebe3e3e3", "phash_int": -6.650071893224253e+18, "collected_at": "2026-05-22T04:29:17.146140+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 765476.0, "mtime": "2002-09-20T19:10:50+00:00", "mtime_ts": 1032549050.0, "ctime": "2002-09-20T19:10:50+00:00", "sha256_file": "c417af65bd8b4237d3fc7832092bdcf37f7bc8b38d5dd406cd95bedb7e89ba9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 19:10:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4719", "EXIF ExposureTime": "3/10", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 19:10:51", "EXIF DateTimeDigitized": "2002:09:20 19:10:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "393/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[128, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3144"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7377230a4e53ada948ee78b5a2dfde74128640966deb6b685bf55ac7377cf8ba", "phash": "d5d5d5d8da182525", "dhash": "b0c446aba1e0b010", "phash_int": -3.0382872462428636e+18, "collected_at": "2026-05-22T04:29:17.164218+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 172000.0, "mtime": "2002-09-22T20:03:08+00:00", "mtime_ts": 1032724988.0, "ctime": "2002-09-22T20:03:08+00:00", "sha256_file": "f01473b3df869f4eae51f88f2bc72b84d0595177ec0f33b703cf2330e040bf29", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b86c23097bd0f6566954eaad8c6a33d36742cdba4c26244f4703b3f045bdc1a", "phash": "d191862e39f1c6ae", "dhash": "e0e0e09a9ae00020", "phash_int": -3.345745515060804e+18, "collected_at": "2026-05-22T04:29:17.180215+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 203813.0, "mtime": "2002-09-22T20:03:14+00:00", "mtime_ts": 1032724994.0, "ctime": "2002-09-22T20:03:14+00:00", "sha256_file": "206d24afebda3aa13b66ebb3fe6090356266bdcb88aeb6cbb1c7a373e8d0c527", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b1d7a02631e6a69ce0121b929dd2c108f84c0c2a10622da1a2a0ba10b66d6d8", "phash": "cdd4b2b28baf3230", "dhash": "4094b2622ab4e3fb", "phash_int": -3.615068120954228e+18, "collected_at": "2026-05-22T04:29:17.197465+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 149775.0, "mtime": "2002-09-22T20:03:32+00:00", "mtime_ts": 1032725012.0, "ctime": "2002-09-22T20:03:32+00:00", "sha256_file": "f9b91f2498cf06afcc9138982158f7b8d990b853f3e93b970142b26ff036087e", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dfbb9a660e7baa766d0068d951319075213019a8cc8dc92698b461b9428ec2a", "phash": "dba08bbd9446466e", "dhash": "929bccd414547978", "phash_int": -2.6209413367769155e+18, "collected_at": "2026-05-22T04:29:17.232467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-20\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-20\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 162648.0, "mtime": "2002-09-22T20:03:36+00:00", "mtime_ts": 1032725016.0, "ctime": "2002-09-22T20:03:36+00:00", "sha256_file": "eb2543f3abe99ea1e8fed8f2c68c4d9090d48dce7b780707f4724e21ca85fa67", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "922e06ac1dc3b59a1bc9c8af1dbd2674e5acf7bb6556407c415f6bda938646b2", "phash": "90e4eb8bba8447e3", "dhash": "339a84b698f9b071", "phash_int": -8.006015252195686e+18, "collected_at": "2026-05-22T04:29:17.236468+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 859315.0, "mtime": "2002-09-20T23:50:30+00:00", "mtime_ts": 1032565830.0, "ctime": "2002-09-20T23:50:30+00:00", "sha256_file": "f32b0a5006c3ba842dfdc4b04ebba421abcc042cf61075a50c75f7df9004743a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 23:50:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3899", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 23:50:31", "EXIF DateTimeDigitized": "2002:09:20 23:50:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "119038913862c442857234e786ae1a7ea5cd7f3f2254fe3edbde6fd4f35f4d21", "phash": "8c93731c0330df7b", "dhash": "f8fc78e4763697c3", "phash_int": -8.317177522673361e+18, "collected_at": "2026-05-22T04:29:17.302608+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 613282.0, "mtime": "2002-09-20T23:50:46+00:00", "mtime_ts": 1032565846.0, "ctime": "2002-09-20T23:50:46+00:00", "sha256_file": "83522de0b40120cb3f1b87b47cace710e4b18e59f5f625de446dd4fccc3b1d17", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 23:50:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4389", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 23:50:48", "EXIF DateTimeDigitized": "2002:09:20 23:50:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[86, 181, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e94cdc52d9ca615e394cf765b39a386852d93424ca5be638874d9963cac5652", "phash": "cc97731dc0729d61", "dhash": "e8606aa6f63205c0", "phash_int": -3.704365596868961e+18, "collected_at": "2026-05-22T04:29:17.308609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 634964.0, "mtime": "2002-09-20T23:50:54+00:00", "mtime_ts": 1032565854.0, "ctime": "2002-09-20T23:50:54+00:00", "sha256_file": "1ad1163a033eabdfcb66c78bae2b36ee84f074e636bdb24b4494d14f8cb9b73d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:20 23:50:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4254", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:20 23:50:56", "EXIF DateTimeDigitized": "2002:09:20 23:50:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[80, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70ffda9c32981837f72822254f9c95d90f08d6a6451f151b07d38ad444c19e7f", "phash": "cc97673980723f83", "dhash": "e03028a8f13385e0", "phash_int": -3.7043786718231757e+18, "collected_at": "2026-05-22T04:29:17.345749+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 769112.0, "mtime": "2002-09-21T17:38:54+00:00", "mtime_ts": 1032629934.0, "ctime": "2002-09-21T17:38:54+00:00", "sha256_file": "cb50ca51d17bd1a5dbb8d199ded574ee86ebb4f2becb7c6d3c665fa3eb3b6981", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:38:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3888", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:38:56", "EXIF DateTimeDigitized": "2002:09:21 17:38:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1000763d3482ca259f6f926d157ba9d0e3e62010ea0064479d9f504b995e595d", "phash": "d52b6a95354a1bf0", "dhash": "90d249529278c080", "phash_int": -3.0862559305556224e+18, "collected_at": "2026-05-22T04:29:17.375752+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 695175.0, "mtime": "2002-09-21T17:39:04+00:00", "mtime_ts": 1032629944.0, "ctime": "2002-09-21T17:39:04+00:00", "sha256_file": "e3df8161d3d5b0850764c52c1ac3aad4cc2b9ae1d53530fe2d3b1836f9b833ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:39:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4104", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:39:05", "EXIF DateTimeDigitized": "2002:09:21 17:39:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d1b894e1a123ee234ee2a909cf1f37321d37b942612c8b425b001d8da9d8ecfa", "phash": "976e9269587a8596", "dhash": "e06e6e6256d258d8", "phash_int": -7.534924145390616e+18, "collected_at": "2026-05-22T04:29:17.388881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 804055.0, "mtime": "2002-09-21T17:39:20+00:00", "mtime_ts": 1032629960.0, "ctime": "2002-09-21T17:39:20+00:00", "sha256_file": "215a74912c4cb80377463e55eed992d859a5565730c22c01b5899ef4b6cfbb8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:39:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6010", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:39:21", "EXIF DateTimeDigitized": "2002:09:21 17:39:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "46", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d44aee467c6211a23218752164a1353db4ba6a7d1858b1db38de5e042f0c3d75", "phash": "c3e6911b6699e45c", "dhash": "c4e4a2cce473f3c7", "phash_int": -4.3306144447986473e+18, "collected_at": "2026-05-22T04:29:17.493175+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 1046651.0, "mtime": "2002-09-21T17:39:40+00:00", "mtime_ts": 1032629980.0, "ctime": "2002-09-21T17:39:40+00:00", "sha256_file": "0610a9f074efa456a03894bf9cc7071b361c4840ff2a54459aa65acd71450756", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:39:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4169", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:39:41", "EXIF DateTimeDigitized": "2002:09:21 17:39:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da6646e94c467004f5bb9b9bbdc94833436927771874b640f84969f7c25d3aa5", "phash": "d1cab5a16db1b642", "dhash": "d8d0d1d0d2f89816", "phash_int": -3.3296492695523354e+18, "collected_at": "2026-05-22T04:29:17.503175+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 819401.0, "mtime": "2002-09-21T17:39:48+00:00", "mtime_ts": 1032629988.0, "ctime": "2002-09-21T17:39:48+00:00", "sha256_file": "bb2792b3b2f509f8d6c2f0e74e598d431146ad14e1fe2807861605f13d208420", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:39:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4059", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:39:49", "EXIF DateTimeDigitized": "2002:09:21 17:39:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2bf4357f5f139bc9eb27a7e6bb9fee00f9416636ee2aa35b403c759a4bf7460d", "phash": "d44abda915b9b3a0", "dhash": "b2a4a4b49612b27e", "phash_int": -3.149496455480626e+18, "collected_at": "2026-05-22T04:29:17.591686+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 756960.0, "mtime": "2002-09-21T17:40:58+00:00", "mtime_ts": 1032630058.0, "ctime": "2002-09-21T17:40:58+00:00", "sha256_file": "2efa56003c0818a4c94459c0e58cc2e9bf701b6878627c678369978d8bacd134", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:40:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5940", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:40:59", "EXIF DateTimeDigitized": "2002:09:21 17:40:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02f8a8b6ff1239e369d78443f5977817597bde61f5c7c405bcebe3a1907ee929", "phash": "97c89c968397c9b4", "dhash": "f030984a4c4c6c58", "phash_int": -7.509580208373512e+18, "collected_at": "2026-05-22T04:29:17.601835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 753187.0, "mtime": "2002-09-21T17:41:08+00:00", "mtime_ts": 1032630068.0, "ctime": "2002-09-21T17:41:08+00:00", "sha256_file": "01a3a2e5720aea672a1562392bf157d4e70db13b81bd931d95939494eb3856db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:10", "EXIF DateTimeDigitized": "2002:09:21 17:41:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e60724cc7f744f43bbc6fd8ec11bc863c2091a45ca282a2052600ffb579a70a3", "phash": "8f601ec3513ec35b", "dhash": "83c3c786c1626470", "phash_int": -8.11545270429111e+18, "collected_at": "2026-05-22T04:29:17.732074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 936958.0, "mtime": "2002-09-21T17:41:04+00:00", "mtime_ts": 1032630064.0, "ctime": "2002-09-21T17:41:04+00:00", "sha256_file": "14562c952a449b8b17535d7046647a97bedf287d457daac0dcb9a6d956e4bfbc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5780", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:05", "EXIF DateTimeDigitized": "2002:09:21 17:41:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17dd2433da437e867d42cab0cec2ff740ebce28580411e1fe6133448f02ba8a5", "phash": "93c8de97c9b24cb0", "dhash": "f0b094dcd8cccc58", "phash_int": -7.797738011286681e+18, "collected_at": "2026-05-22T04:29:17.736074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 767726.0, "mtime": "2002-09-21T17:41:14+00:00", "mtime_ts": 1032630074.0, "ctime": "2002-09-21T17:41:14+00:00", "sha256_file": "a9e120491894b264cf4df4d6ee23fef11f162ae7d3bf1e12b829bd70b243cc3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3848", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:15", "EXIF DateTimeDigitized": "2002:09:21 17:41:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64d79c6f58036d58a72c7a56cd40995779fbc10d84308202e70f3b2e6920400c", "phash": "cd93c06e1f45e439", "dhash": "e8e8c0706364e1e2", "phash_int": -3.6333488951542487e+18, "collected_at": "2026-05-22T04:29:17.835079+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 862487.0, "mtime": "2002-09-21T17:41:20+00:00", "mtime_ts": 1032630080.0, "ctime": "2002-09-21T17:41:20+00:00", "sha256_file": "9ceb97e40d99163fbabbad491917e419f851851a02173f33f52985408167f647", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4913", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:21", "EXIF DateTimeDigitized": "2002:09:21 17:41:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65498", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4ce279941d9a05dc9ffeb2fd8f88bd3c2ae26aa392e3c55515cb56bee5dcf8e", "phash": "f587d01ed43d4368", "dhash": "bb0bcf0626511998", "phash_int": -7.544055817328877e+17, "collected_at": "2026-05-22T04:29:17.837107+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 832859.0, "mtime": "2002-09-21T17:41:34+00:00", "mtime_ts": 1032630094.0, "ctime": "2002-09-21T17:41:34+00:00", "sha256_file": "4904957e4fef338a6e382c5da80cebc3237b11502d8b1d19a16a77cd370cf989", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4635", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:36", "EXIF DateTimeDigitized": "2002:09:21 17:41:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56f047e43197e3b1fbc51e7488b25cbdf4d693f3448a3ed1a3b00747b2c682e7", "phash": "914c9672b2b05f9b", "dhash": "b0f0f292981998fc", "phash_int": -7.97683542061165e+18, "collected_at": "2026-05-22T04:29:17.911152+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 726613.0, "mtime": "2002-09-21T17:41:28+00:00", "mtime_ts": 1032630088.0, "ctime": "2002-09-21T17:41:28+00:00", "sha256_file": "fb9cfd4e66ecca59dbd22a842e9d5de0e4e79b522fd26c933d3a1b12a24465d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3580", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:29", "EXIF DateTimeDigitized": "2002:09:21 17:41:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "43", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65525", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c62c4c60e60ae8fbbb0c7f150ab93badde50b248df9ba9e7dda78f9e53d82034", "phash": "dbe9651c2a035ce6", "dhash": "e1e3d9f13939f1c9", "phash_int": -2.600436138191398e+18, "collected_at": "2026-05-22T04:29:17.912155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 794880.0, "mtime": "2002-09-21T17:41:44+00:00", "mtime_ts": 1032630104.0, "ctime": "2002-09-21T17:41:44+00:00", "sha256_file": "b45030489fb0ee55652c44262d7262c0d82d001731a4ccc5f29e70b31b9a1ccc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:46", "EXIF DateTimeDigitized": "2002:09:21 17:41:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c3a70193d59e873549e8f96eda5c10e0cab3f08196dd32455972ec6966abd8a", "phash": "907fcb2d74c20b65", "dhash": "282829ac9ebfe8fc", "phash_int": -8.034479814112835e+18, "collected_at": "2026-05-22T04:29:18.023111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 890850.0, "mtime": "2002-09-21T17:41:50+00:00", "mtime_ts": 1032630110.0, "ctime": "2002-09-21T17:41:50+00:00", "sha256_file": "4f37f56d353ec70a22fa5edd60b9e42402fa93e6688f23781cc9828fda2ccd67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:41:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5151", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:41:52", "EXIF DateTimeDigitized": "2002:09:21 17:41:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e98b3bb5f3775d4aa2d67afee8c0d1043114d750926b20bf7f1de069d475e7d", "phash": "e0cfd287f9968684", "dhash": "8801c49382c68484", "phash_int": -2.2473462075847785e+18, "collected_at": "2026-05-22T04:29:18.028110+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 837786.0, "mtime": "2002-09-21T17:42:00+00:00", "mtime_ts": 1032630120.0, "ctime": "2002-09-21T17:42:00+00:00", "sha256_file": "af23d566cccd967cb3c54628183c6f800a8d4c3fce355c430f2cfc1fcb48446a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:42:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4660", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:42:01", "EXIF DateTimeDigitized": "2002:09:21 17:42:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6321aff94de25b3580d332b8501172d991392f3159f9beba9110a72577c0329", "phash": "fccc83711ec12373", "dhash": "5030343022121b1b", "phash_int": -2.306649590322208e+17, "collected_at": "2026-05-22T04:29:18.145901+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 837427.0, "mtime": "2002-09-21T17:42:08+00:00", "mtime_ts": 1032630128.0, "ctime": "2002-09-21T17:42:08+00:00", "sha256_file": "ca89b2635bd7e000ae2c0d2374fd0020f1eba5a8d8a2b6200bf77b63db961aad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:42:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3760", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:42:09", "EXIF DateTimeDigitized": "2002:09:21 17:42:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fa7578c7906838539c074da342786012cc5315c24cf8abbf24a3a8997dfaede", "phash": "959d1966e6c342e6", "dhash": "f430f0ececf0f0f0", "phash_int": -7.665943060965801e+18, "collected_at": "2026-05-22T04:29:18.152905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 595040.0, "mtime": "2002-09-21T17:42:52+00:00", "mtime_ts": 1032630172.0, "ctime": "2002-09-21T17:42:52+00:00", "sha256_file": "0ec262f8728a528c3e8def3e2e3a7828dc0077aeeeea5217915022aacb278d92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:42:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3711", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:42:53", "EXIF DateTimeDigitized": "2002:09:21 17:42:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61e1f88931103027e4bd200aca00e1e86bc306e9a3566a78e01c8c351057e362", "phash": "d52d952dcfd84252", "dhash": "7276d0b0f0b0a860", "phash_int": -3.0856461456857984e+18, "collected_at": "2026-05-22T04:29:18.220068+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 610361.0, "mtime": "2002-09-21T17:43:10+00:00", "mtime_ts": 1032630190.0, "ctime": "2002-09-21T17:43:10+00:00", "sha256_file": "c29a35ac23d482632e94f9b2d414075e644a2fbc78883863a048ed56a9ee3921", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 17:43:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3701", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 17:43:12", "EXIF DateTimeDigitized": "2002:09:21 17:43:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "747154982a6346efbcbdb93891d189d6dccc72441c65c3c2ba9147f8e00b0240", "phash": "d10d6cf30f6c27c1", "dhash": "e2e0e2e8d88c80b1", "phash_int": -3.3829279538937754e+18, "collected_at": "2026-05-22T04:29:18.226062+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0080_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0080_IMG.JPG", "file_name": "100-0080_IMG.JPG", "file_stem": "100-0080_IMG", "file_ext": ".jpg", "file_size": 942220.0, "mtime": "2002-09-21T20:36:48+00:00", "mtime_ts": 1032640608.0, "ctime": "2002-09-21T20:36:48+00:00", "sha256_file": "48f4b1bff0ad61fc193393107b0afee2c72744d61f231bff9f1b5a731045a5f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:36:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5117", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:36:49", "EXIF DateTimeDigitized": "2002:09:21 20:36:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000080", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2bdfe0c3d08c8857a14f9a7c3f99a43ed23e2da46d860e28cc55778d05b4695d", "phash": "d27dc39e4549b249", "dhash": "4010122275d5c9c8", "phash_int": -3.2792498691211464e+18, "collected_at": "2026-05-22T04:29:18.294064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0081_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0081_IMG.JPG", "file_name": "100-0081_IMG.JPG", "file_stem": "100-0081_IMG", "file_ext": ".jpg", "file_size": 903266.0, "mtime": "2002-09-21T20:36:58+00:00", "mtime_ts": 1032640618.0, "ctime": "2002-09-21T20:36:58+00:00", "sha256_file": "967e5e7c10dcc21d411ed7bea394a25c1caaa2928f42e3fbbaa16e580c9f97ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:36:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4290", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:36:59", "EXIF DateTimeDigitized": "2002:09:21 20:36:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "241/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1928"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4acff62ba574e0166270044e3cafe66cca040aa333d5149aaef1d2627f108193", "phash": "df016ec33ca6d928", "dhash": "cff7f77c58496d24", "phash_int": -2.3774973434596654e+18, "collected_at": "2026-05-22T04:29:18.318068+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0082_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0082_IMG.JPG", "file_name": "100-0082_IMG.JPG", "file_stem": "100-0082_IMG", "file_ext": ".jpg", "file_size": 831916.0, "mtime": "2002-09-21T20:37:20+00:00", "mtime_ts": 1032640640.0, "ctime": "2002-09-21T20:37:20+00:00", "sha256_file": "6f03bb880081d75e2084446088cadc2e93290c8b1ef9a5101b5fb0136c5f1350", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:37:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4417", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:37:21", "EXIF DateTimeDigitized": "2002:09:21 20:37:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1121/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1121"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d84f171c677604eddfef522c257e4458da5e42e0970adc87a90f2f26236af727", "phash": "9e70a778c31d3326", "dhash": "632359d0b1b1726f", "phash_int": -7.029934881213959e+18, "collected_at": "2026-05-22T04:29:18.357066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0083_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0083_IMG.JPG", "file_name": "100-0083_IMG.JPG", "file_stem": "100-0083_IMG", "file_ext": ".jpg", "file_size": 866892.0, "mtime": "2002-09-21T20:38:14+00:00", "mtime_ts": 1032640694.0, "ctime": "2002-09-21T20:38:14+00:00", "sha256_file": "b0d4528a5721ed1ac0599372777958d7fae4342dc09ccbc4f3d3c1ff96a97029", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:38:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4651", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:38:15", "EXIF DateTimeDigitized": "2002:09:21 20:38:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86f5405489e9dcaa3666dd3ac3413dac5451d6c5806201f2b9269c2da08ced43", "phash": "b6484f823a2f3cf1", "dhash": "d0e0943c8c4c4c5c", "phash_int": -5.311908339742983e+18, "collected_at": "2026-05-22T04:29:18.395068+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0084_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0084_IMG.JPG", "file_name": "100-0084_IMG.JPG", "file_stem": "100-0084_IMG", "file_ext": ".jpg", "file_size": 812833.0, "mtime": "2002-09-21T20:39:16+00:00", "mtime_ts": 1032640756.0, "ctime": "2002-09-21T20:39:16+00:00", "sha256_file": "22702b8d21ee0a7bb425eb6ab01060a32b3f790c6d24bd7257b7a57d692071ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:39:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5073", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:39:17", "EXIF DateTimeDigitized": "2002:09:21 20:39:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "680d3b2e8eba05083af80ee3a07f5d104414f0011e64009ab397c84bac184df6", "phash": "936d94936ca1d2ad", "dhash": "8e8ed9d638b8b8bc", "phash_int": -7.823433616769035e+18, "collected_at": "2026-05-22T04:29:18.409070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0085_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0085_IMG.JPG", "file_name": "100-0085_IMG.JPG", "file_stem": "100-0085_IMG", "file_ext": ".jpg", "file_size": 184591.0, "mtime": "2002-09-22T19:59:38+00:00", "mtime_ts": 1032724778.0, "ctime": "2002-09-22T19:59:38+00:00", "sha256_file": "e0d6a865adb1a127d980d87e7797905a1e421b42914ac8dbfe46cc7b22e926f3", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a97cc9ab8a8919baa5eea85288636f083c8a36169aa8a9bfcec99f03c9a0c2b", "phash": "950aa51c7501fedd", "dhash": "eeccd9487622d216", "phash_int": -7.70716627065045e+18, "collected_at": "2026-05-22T04:29:18.420155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0086_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0086_IMG.JPG", "file_name": "100-0086_IMG.JPG", "file_stem": "100-0086_IMG", "file_ext": ".jpg", "file_size": 245321.0, "mtime": "2002-09-22T19:59:22+00:00", "mtime_ts": 1032724762.0, "ctime": "2002-09-22T19:59:22+00:00", "sha256_file": "7ee7619e112f08f4a253ad9a0b433e4c890e79fc585ee825b789998867fd10f6", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17310c8783bb4b9682e143be448837e1d8a58832cd28e002f0d94174185fe0cd", "phash": "ad971a31cd06b8d3", "dhash": "7b6b63635b1b6b61", "phash_int": -5.93824878246922e+18, "collected_at": "2026-05-22T04:29:18.476372+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0088_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0088_IMG.JPG", "file_name": "100-0088_IMG.JPG", "file_stem": "100-0088_IMG", "file_ext": ".jpg", "file_size": 816616.0, "mtime": "2002-09-21T20:41:06+00:00", "mtime_ts": 1032640866.0, "ctime": "2002-09-21T20:41:06+00:00", "sha256_file": "11b6e80f44d31cd467dc5bd66ba8c70028f8c5be194bf8a19665d18c253ca07f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:41:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4233", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:41:08", "EXIF DateTimeDigitized": "2002:09:21 20:41:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4331142a4f58bbc3a13e2cab6c9574e96080606faefbbd67fabf19360a0386c0", "phash": "d5639c0b718c9b69", "dhash": "80c8c0c48a6876b6", "phash_int": -3.0704389479729326e+18, "collected_at": "2026-05-22T04:29:18.516376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0089_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0089_IMG.JPG", "file_name": "100-0089_IMG.JPG", "file_stem": "100-0089_IMG", "file_ext": ".jpg", "file_size": 827149.0, "mtime": "2002-09-21T20:41:18+00:00", "mtime_ts": 1032640878.0, "ctime": "2002-09-21T20:41:18+00:00", "sha256_file": "7ef40986f2f638059c6ab171b01096db26d15cbd7bd9b377cd1e9889a2ffe820", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:41:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4827", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:41:19", "EXIF DateTimeDigitized": "2002:09:21 20:41:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28bbea89276e095041166a5bfdef19252d15f92dad67114e791aa25ff517fe5d", "phash": "a13d95766e135a64", "dhash": "e696979fefcddff3", "phash_int": -6.828137124138362e+18, "collected_at": "2026-05-22T04:29:18.536376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0091_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0091_IMG.JPG", "file_name": "100-0091_IMG.JPG", "file_stem": "100-0091_IMG", "file_ext": ".jpg", "file_size": 167289.0, "mtime": "2002-09-22T20:00:20+00:00", "mtime_ts": 1032724820.0, "ctime": "2002-09-22T20:00:20+00:00", "sha256_file": "636e9f855b493b7c9873ac272fff8e4eae42665639f8d0e13999668ab0a5943d", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27aa88748fdab319d15ee9e93b5765df824d30d37f0a281392deb3235115b499", "phash": "ab91895ba946bd1a", "dhash": "9b9bffc35b3169b3", "phash_int": -6.083930594825815e+18, "collected_at": "2026-05-22T04:29:18.605586+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0090_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0090_IMG.JPG", "file_name": "100-0090_IMG.JPG", "file_stem": "100-0090_IMG", "file_ext": ".jpg", "file_size": 933783.0, "mtime": "2002-09-21T20:41:26+00:00", "mtime_ts": 1032640886.0, "ctime": "2002-09-21T20:41:26+00:00", "sha256_file": "607f7b86c566d11cc1840145b3d1ad949f349ed1be40584c49a23025d1b5e6ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:41:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4486", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:41:28", "EXIF DateTimeDigitized": "2002:09:21 20:41:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2797/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2797"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1aae935d5f71d10097b84c4bf718401598875cdd902bbf7fb9ad7ae81663098c", "phash": "c9f0a54db21acc3b", "dhash": "078e3331e972f2f0", "phash_int": -3.8954319245563136e+18, "collected_at": "2026-05-22T04:29:18.623730+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0092_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0092_IMG.JPG", "file_name": "100-0092_IMG.JPG", "file_stem": "100-0092_IMG", "file_ext": ".jpg", "file_size": 820155.0, "mtime": "2002-09-21T20:42:08+00:00", "mtime_ts": 1032640928.0, "ctime": "2002-09-21T20:42:08+00:00", "sha256_file": "16c2d169f869610bb837cb7999fed7877889b9ba6ef43dfca43e7b227a0e628f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:42:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6509", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:42:09", "EXIF DateTimeDigitized": "2002:09:21 20:42:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[95, 197, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af6bf180535ca62b93649a4594cfd902f177ddcc1fa849955ff36550dfc19547", "phash": "a9d9906b9d63960d", "dhash": "b2b373433329c3b6", "phash_int": -6.207771819477068e+18, "collected_at": "2026-05-22T04:29:18.636930+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0093_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0093_IMG.JPG", "file_name": "100-0093_IMG.JPG", "file_stem": "100-0093_IMG", "file_ext": ".jpg", "file_size": 135163.0, "mtime": "2002-09-22T20:00:32+00:00", "mtime_ts": 1032724832.0, "ctime": "2002-09-22T20:00:32+00:00", "sha256_file": "75bafdfe3ffdee31008e84013a8825b90c1774dfbc304ca1227b9343d74d3943", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e426ceffb2115e33f69feca845faee77952f1f59e578cb8cb1a2b85bc9493c58", "phash": "cf9e2174323363d4", "dhash": "63716169e0c3d2d6", "phash_int": -3.4863122785960335e+18, "collected_at": "2026-05-22T04:29:18.668932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0094_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0094_IMG.JPG", "file_name": "100-0094_IMG.JPG", "file_stem": "100-0094_IMG", "file_ext": ".jpg", "file_size": 687023.0, "mtime": "2002-09-21T20:51:46+00:00", "mtime_ts": 1032641506.0, "ctime": "2002-09-21T20:51:46+00:00", "sha256_file": "dac93d1976d836f9b0c1a9fec07659d75e76938d6bb90f73261cb33e11b0cdb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 20:51:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4320", "EXIF ExposureTime": "4/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 20:51:47", "EXIF DateTimeDigitized": "2002:09:21 20:51:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "5/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[123, 141, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "10", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44f664407feb5cce6c911aaa69c116bd7f24921f68db4f519127365af9e1f28e", "phash": "a1f49f0cf8356782", "dhash": "96868e969786dfdf", "phash_int": -6.77661666123308e+18, "collected_at": "2026-05-22T04:29:18.690930+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0095_IMG.JPG", "file_name": "100-0095_IMG.JPG", "file_stem": "100-0095_IMG", "file_ext": ".jpg", "file_size": 193873.0, "mtime": "2002-09-22T20:01:54+00:00", "mtime_ts": 1032724914.0, "ctime": "2002-09-22T20:01:54+00:00", "sha256_file": "8e0d9c0e671325ead854213e52a91c66d75e54836f8888516ba7ddb9fb31ca22", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3cf12fbea14f2f72adc941d53b122faacd51bb4957a2871f72a7eaed57427b3a", "phash": "8439dfa14d8d12f5", "dhash": "393c75f2c2a96a68", "phash_int": -8.918851703146737e+18, "collected_at": "2026-05-22T04:29:18.700129+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0096_IMG.JPG", "file_name": "100-0096_IMG.JPG", "file_stem": "100-0096_IMG", "file_ext": ".jpg", "file_size": 161867.0, "mtime": "2002-09-22T20:01:54+00:00", "mtime_ts": 1032724914.0, "ctime": "2002-09-22T20:01:54+00:00", "sha256_file": "9daffc9c20794f18e1d36bf537f4256148adeb2abc60db532fdb8b1d431bce82", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae0f13eb423a93e44b5a743afd4168a09a24101592aaadaa3f6b25e4723f58fd", "phash": "853f8c716c8b526b", "dhash": "aedeecbe9cdcf6d6", "phash_int": -8.845196724352101e+18, "collected_at": "2026-05-22T04:29:18.713130+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0097_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0097_IMG.JPG", "file_name": "100-0097_IMG.JPG", "file_stem": "100-0097_IMG", "file_ext": ".jpg", "file_size": 189956.0, "mtime": "2002-09-22T20:01:56+00:00", "mtime_ts": 1032724916.0, "ctime": "2002-09-22T20:01:56+00:00", "sha256_file": "66efb1ebec9609cf2e0fa49ab8fbb3e089821317fec419721babc1110a23c371", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bfef26728bea1f6992e4700e8d7cd0e7f1278659ecf48cbca3597daf96bdc662", "phash": "967b8c7427897c83", "dhash": "2c19784c0c1cf8ec", "phash_int": -7.603329115377534e+18, "collected_at": "2026-05-22T04:29:18.731259+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0099_IMG.JPG", "file_name": "100-0099_IMG.JPG", "file_stem": "100-0099_IMG", "file_ext": ".jpg", "file_size": 169130.0, "mtime": "2002-09-22T20:01:56+00:00", "mtime_ts": 1032724916.0, "ctime": "2002-09-22T20:01:56+00:00", "sha256_file": "31154001712b92af3d5a514941a1144325752f142415cdf682c955e654db4849", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b79b53b6938cf746a6aa6e03866bffd3c387f7a4f6c55f2871b8d9f75079f6e", "phash": "8e7990a3f89c2c6e", "dhash": "dad2e56051e264e5", "phash_int": -8.180348214216742e+18, "collected_at": "2026-05-22T04:29:18.758862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0098_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0098_IMG.JPG", "file_name": "100-0098_IMG.JPG", "file_stem": "100-0098_IMG", "file_ext": ".jpg", "file_size": 182493.0, "mtime": "2002-09-22T20:01:56+00:00", "mtime_ts": 1032724916.0, "ctime": "2002-09-22T20:01:56+00:00", "sha256_file": "7d9f674454c47bb634fbd764691e09cf462b7a585db97182c83ae639111fe55e", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c7c8c22280e6d0c9701916aa3e481f03748f5307dd087b1fad0238a6e747e34", "phash": "c16abe4152be7b22", "dhash": "8d8181d0d050eee8", "phash_int": -4.5095828890877635e+18, "collected_at": "2026-05-22T04:29:18.766862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\100-0100_IMG.JPG", "file_name": "100-0100_IMG.JPG", "file_stem": "100-0100_IMG", "file_ext": ".jpg", "file_size": 168230.0, "mtime": "2002-09-22T20:01:56+00:00", "mtime_ts": 1032724916.0, "ctime": "2002-09-22T20:01:56+00:00", "sha256_file": "62745881218b73a29194109b0dbfaa07d4320b22021cda6dabb681d0571fa0e1", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93ad211f8de92c876e06162049f19b9b91756fe8b15e451b7975c1837dc18980", "phash": "c327d57a20bf7428", "dhash": "cac8c4cda9a8f1b4", "phash_int": -4.384300991709744e+18, "collected_at": "2026-05-22T04:29:18.792871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0101_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0101_IMG.JPG", "file_name": "101-0101_IMG.JPG", "file_stem": "101-0101_IMG", "file_ext": ".jpg", "file_size": 165974.0, "mtime": "2002-09-22T20:01:58+00:00", "mtime_ts": 1032724918.0, "ctime": "2002-09-22T20:01:58+00:00", "sha256_file": "924d30af29ad37b33c6b71c7d02e3b595c9a3c77bfe5b0a7769a0258c516eb0a", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da6e7e2110ba230b716b112f8bf81e2d6cbe8ce0afab515c54617bfa65c2f271", "phash": "996e943fca14273a", "dhash": "31b3e4d1597ab2b2", "phash_int": -7.390806936774236e+18, "collected_at": "2026-05-22T04:29:18.805864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0103_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0103_IMG.JPG", "file_name": "101-0103_IMG.JPG", "file_stem": "101-0103_IMG", "file_ext": ".jpg", "file_size": 200438.0, "mtime": "2002-09-22T20:01:58+00:00", "mtime_ts": 1032724918.0, "ctime": "2002-09-22T20:01:58+00:00", "sha256_file": "8a1b8c0c74a74bc9453d212ff764f5c407ea8e720b6f179575ceebd170ea3800", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c06e6d17bdaa56d94a51f8e5b4b673084cbd4d6d7eb1f2d9e1e915bcfd9b4894", "phash": "953682dd718b5a69", "dhash": "646464561630dade", "phash_int": -7.694819025711572e+18, "collected_at": "2026-05-22T04:29:18.842865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0102_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0102_IMG.JPG", "file_name": "101-0102_IMG.JPG", "file_stem": "101-0102_IMG", "file_ext": ".jpg", "file_size": 202802.0, "mtime": "2002-09-22T20:01:58+00:00", "mtime_ts": 1032724918.0, "ctime": "2002-09-22T20:01:58+00:00", "sha256_file": "39a79c8fc825adefcbb61d7fe53cedca681cd968f9740bcf3e49940265e10b55", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a66e1ebddd18ba3748930a4836ca9d3484b82d859ca5971a84e949ef0dc21da7", "phash": "c161d22b25d7d83e", "dhash": "c8c8cac2c3e2e8e8", "phash_int": -4.512094268888197e+18, "collected_at": "2026-05-22T04:29:18.850865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0104_IMG.JPG", "file_name": "101-0104_IMG.JPG", "file_stem": "101-0104_IMG", "file_ext": ".jpg", "file_size": 196977.0, "mtime": "2002-09-22T20:01:58+00:00", "mtime_ts": 1032724918.0, "ctime": "2002-09-22T20:01:58+00:00", "sha256_file": "c2e059733975f3f9568d31bedeb527515b6f8e87f812d6a532b97927aa8be7dc", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "657fd9eddb055801f2faacf35d921b7b25f89a240047cbf044617793dbd39c39", "phash": "be62cd56258d5a70", "dhash": "a48d818b0c3d72f2", "phash_int": -4.727990888904697e+18, "collected_at": "2026-05-22T04:29:18.874865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0105_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0105_IMG.JPG", "file_name": "101-0105_IMG.JPG", "file_stem": "101-0105_IMG", "file_ext": ".jpg", "file_size": 196609.0, "mtime": "2002-09-22T20:02:00+00:00", "mtime_ts": 1032724920.0, "ctime": "2002-09-22T20:02:00+00:00", "sha256_file": "c74618f5096f4409a7aba8c0d6150e1d4426c7c4079c67e85278ace3d259ced2", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f37523d9f1b1484331fa241c7c40665aa86581f92e094615aff63919ef585a34", "phash": "d27a974afcb0486c", "dhash": "a8699999b1b9e8f8", "phash_int": -3.2801430302632e+18, "collected_at": "2026-05-22T04:29:18.893868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0106_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0106_IMG.JPG", "file_name": "101-0106_IMG.JPG", "file_stem": "101-0106_IMG", "file_ext": ".jpg", "file_size": 187077.0, "mtime": "2002-09-22T20:02:00+00:00", "mtime_ts": 1032724920.0, "ctime": "2002-09-22T20:02:00+00:00", "sha256_file": "a174f0d3d8ac57482a1791f242758270f8ce97c0a6fc2c53c71168fd08075c84", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3a38e3a25d4fe90f0463c6c39f80e6aba985c942d5e46e4e0ef48bb08bef208", "phash": "c21d2f2ed5428775", "dhash": "6b39d8dcc8efc9c3", "phash_int": -4.4593561778340147e+18, "collected_at": "2026-05-22T04:29:18.907869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0107_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0107_IMG.JPG", "file_name": "101-0107_IMG.JPG", "file_stem": "101-0107_IMG", "file_ext": ".jpg", "file_size": 895756.0, "mtime": "2002-09-21T22:12:22+00:00", "mtime_ts": 1032646342.0, "ctime": "2002-09-21T22:12:22+00:00", "sha256_file": "1db7e5444a687dda5bd64f64d29ecd6409af383a3f9829e1fa9da87518296b90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:12:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6759", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:12:23", "EXIF DateTimeDigitized": "2002:09:21 22:12:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[91, 100, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8769a06a756e42f4f92e755fbd247bd989de3a991db0d5d39b96b28ab1d5aed0", "phash": "87055a5ec39d942f", "dhash": "24cbfa5aca2472cc", "phash_int": -8.717462140650417e+18, "collected_at": "2026-05-22T04:29:18.928119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0108_IMG.JPG", "file_name": "101-0108_IMG.JPG", "file_stem": "101-0108_IMG", "file_ext": ".jpg", "file_size": 908519.0, "mtime": "2002-09-21T22:12:36+00:00", "mtime_ts": 1032646356.0, "ctime": "2002-09-21T22:12:36+00:00", "sha256_file": "a86c2dbd7624a7a0a74fdbb71cf500d7f75a7e6a62a52b52e000ee3292d1cf57", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:12:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7277", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:12:37", "EXIF DateTimeDigitized": "2002:09:21 22:12:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[104, 96, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76778788bc90815b0836f2f0a103debc13d590931ed4164629cba7807e6bb358", "phash": "8655536ba0d6d593", "dhash": "d8faa4a4bb5129cd", "phash_int": -8.767009377881763e+18, "collected_at": "2026-05-22T04:29:18.977456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0109_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0109_IMG.JPG", "file_name": "101-0109_IMG.JPG", "file_stem": "101-0109_IMG", "file_ext": ".jpg", "file_size": 815571.0, "mtime": "2002-09-21T22:12:56+00:00", "mtime_ts": 1032646376.0, "ctime": "2002-09-21T22:12:56+00:00", "sha256_file": "bcbfc3de30af6b67e78f73226b8a3625e3e23b581a957c970ad800af91398cbf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:12:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5857", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:12:57", "EXIF DateTimeDigitized": "2002:09:21 22:12:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fc880c75b92cef16c70ab2a92e8fda076d7e31137b48fdba219c9d4cbfe80bb", "phash": "f674e915cc036c87", "dhash": "342c2cdc440c4b41", "phash_int": -6.876685632544818e+17, "collected_at": "2026-05-22T04:29:18.990455+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0110_IMG.JPG", "file_name": "101-0110_IMG.JPG", "file_stem": "101-0110_IMG", "file_ext": ".jpg", "file_size": 904482.0, "mtime": "2002-09-21T22:13:10+00:00", "mtime_ts": 1032646390.0, "ctime": "2002-09-21T22:13:10+00:00", "sha256_file": "59f16792b874909c0f29070769e5ed97d5e9a4c640fc2171e3525ce031423508", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:13:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6790", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:13:11", "EXIF DateTimeDigitized": "2002:09:21 22:13:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[97, 197, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23b12a2c48780c275a15dbd8b1ab89d2abfc0b03e1f04c995f24862b601bbaf3", "phash": "9927c27bc1b1c6b2", "dhash": "c9b19e92923a99d1", "phash_int": -7.410740825028442e+18, "collected_at": "2026-05-22T04:29:19.020455+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0111_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0111_IMG.JPG", "file_name": "101-0111_IMG.JPG", "file_stem": "101-0111_IMG", "file_ext": ".jpg", "file_size": 897954.0, "mtime": "2002-09-21T22:13:26+00:00", "mtime_ts": 1032646406.0, "ctime": "2002-09-21T22:13:26+00:00", "sha256_file": "d8b12a36a271fc14a1436918c704479e0190cf794ada37c097fc02b15941331e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:13:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6941", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:13:28", "EXIF DateTimeDigitized": "2002:09:21 22:13:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[98, 98, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3287d1df4af9ccd999cf78d349f81a20700dd209aa1652d8b41d2c86556ec63", "phash": "85336f43e8968f8c", "dhash": "499bf49496c9e223", "phash_int": -8.848606505397219e+18, "collected_at": "2026-05-22T04:29:19.051457+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0112_IMG.JPG", "file_name": "101-0112_IMG.JPG", "file_stem": "101-0112_IMG", "file_ext": ".jpg", "file_size": 797659.0, "mtime": "2002-09-21T22:13:48+00:00", "mtime_ts": 1032646428.0, "ctime": "2002-09-21T22:13:48+00:00", "sha256_file": "5c169c66f8e7d2bf3e4f360f4b19033546b8944263fb34dd8296e065189b385d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:13:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3984", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:13:49", "EXIF DateTimeDigitized": "2002:09:21 22:13:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1094dbdc082c78a9a85062375aedc386806b932129803a20482464ec6a2289a5", "phash": "e973068dd824a77c", "dhash": "001014141252d6b0", "phash_int": -1.624947834264181e+18, "collected_at": "2026-05-22T04:29:19.075458+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-21\\101-0113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-21\\101-0113_IMG.JPG", "file_name": "101-0113_IMG.JPG", "file_stem": "101-0113_IMG", "file_ext": ".jpg", "file_size": 560058.0, "mtime": "2002-09-21T22:17:38+00:00", "mtime_ts": 1032646658.0, "ctime": "2002-09-21T22:17:38+00:00", "sha256_file": "d48eaa850e93fe76dcb242006ef44822e05e51959d5be0ddb904219ed0e98054", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 22:17:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3233", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 22:17:39", "EXIF DateTimeDigitized": "2002:09:21 22:17:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 222, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04d32d234260693690ee931dc2840246d162e50ec9cda96f0f959f12b58c84b8", "phash": "a3944b39d66b05da", "dhash": "f8f4eccc8c130bcd", "phash_int": -6.659615237191564e+18, "collected_at": "2026-05-22T04:29:19.089461+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0114_IMG.JPG", "file_name": "101-0114_IMG.JPG", "file_stem": "101-0114_IMG", "file_ext": ".jpg", "file_size": 958316.0, "mtime": "2002-09-21T23:10:52+00:00", "mtime_ts": 1032649852.0, "ctime": "2002-09-21T23:10:52+00:00", "sha256_file": "ff914de95e59e687621dd57d042c0f76d321e4f712e7484aa567d527e0657563", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:10:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4894", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:10:53", "EXIF DateTimeDigitized": "2002:09:21 23:10:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23ca4882af0f24c12db52839439363a0d2f31b7ce3e7f0ef4cfbcf12f5a4a156", "phash": "81f49766999a7907", "dhash": "e0cc9391d4cde9fa", "phash_int": -9.082468081579952e+18, "collected_at": "2026-05-22T04:29:19.156461+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0115_IMG.JPG", "file_name": "101-0115_IMG.JPG", "file_stem": "101-0115_IMG", "file_ext": ".jpg", "file_size": 700623.0, "mtime": "2002-09-21T23:30:32+00:00", "mtime_ts": 1032651032.0, "ctime": "2002-09-21T23:30:32+00:00", "sha256_file": "8c3b048ef849c2a587b1969bae079db3d1847006241d51123a01d0a0ebd0b7e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:30:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4059", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:30:34", "EXIF DateTimeDigitized": "2002:09:21 23:30:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "73", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5bd3a881ad0c670a76a7449e259e8e6acafd9e6f3f7621bba360e5b28a41bba", "phash": "d0e453e76e47e130", "dhash": "80b09021b8d81818", "phash_int": -3.394495965677756e+18, "collected_at": "2026-05-22T04:29:19.162462+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0116_IMG.JPG", "file_name": "101-0116_IMG.JPG", "file_stem": "101-0116_IMG", "file_ext": ".jpg", "file_size": 848484.0, "mtime": "2002-09-21T23:30:50+00:00", "mtime_ts": 1032651050.0, "ctime": "2002-09-21T23:30:50+00:00", "sha256_file": "91b53fb300a15b2c01d0848c1678a3e7536c48722afb6380bb5195678a258e67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:30:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5721", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:30:51", "EXIF DateTimeDigitized": "2002:09:21 23:30:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 79, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bcc0dae7bdf335c3cfb6f69cdf5f233c8b08e078359bd0507eeaa85c6d54566a", "phash": "d0cd57e36c4ec131", "dhash": "809890a198889898", "phash_int": -3.400965509308563e+18, "collected_at": "2026-05-22T04:29:19.233929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0117_IMG.JPG", "file_name": "101-0117_IMG.JPG", "file_stem": "101-0117_IMG", "file_ext": ".jpg", "file_size": 911624.0, "mtime": "2002-09-21T23:31:06+00:00", "mtime_ts": 1032651066.0, "ctime": "2002-09-21T23:31:06+00:00", "sha256_file": "2ab282ccab56cb3c96786d1973e32a7107ccfaba95da2c8e8dc6e9d8f89719ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:31:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5708", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:31:07", "EXIF DateTimeDigitized": "2002:09:21 23:31:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[117, 79, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32f20b872dd946c73b033d2295520cba133455497faf8ab1b4a6c437e1651b64", "phash": "d0cd57c36c4e4b51", "dhash": "8098902198889898", "phash_int": -3.4009656467475466e+18, "collected_at": "2026-05-22T04:29:19.237929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0119_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0119_IMG.JPG", "file_name": "101-0119_IMG.JPG", "file_stem": "101-0119_IMG", "file_ext": ".jpg", "file_size": 786269.0, "mtime": "2002-09-21T23:31:38+00:00", "mtime_ts": 1032651098.0, "ctime": "2002-09-21T23:31:38+00:00", "sha256_file": "32fc4ac39fa0ee85d8509fb1dc6e5573ccd527fb3e442baf51ced7c10cd34d6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:31:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6200", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:31:39", "EXIF DateTimeDigitized": "2002:09:21 23:31:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[115, 62, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010119", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "94", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69443b8f2a4a98241eb8cc7d6204f46ad2564ae2e41dce96bf6dd684e191229a", "phash": "d6e5019b1cace761", "dhash": "f0c6c6343c68583c", "phash_int": -2.961959414213581e+18, "collected_at": "2026-05-22T04:29:19.301057+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0118_IMG.JPG", "file_name": "101-0118_IMG.JPG", "file_stem": "101-0118_IMG", "file_ext": ".jpg", "file_size": 922065.0, "mtime": "2002-09-21T23:31:26+00:00", "mtime_ts": 1032651086.0, "ctime": "2002-09-21T23:31:26+00:00", "sha256_file": "62e8b383623baeaf208c78aeb428b19eef92c3aaeee36d7b3931cba15092ed4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:31:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6236", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:31:28", "EXIF DateTimeDigitized": "2002:09:21 23:31:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 89, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "95", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "736803eda56a962330936733bc2877b0327ece8df847f054e2d0dbc1fdf3ab22", "phash": "d7e4819b1ea57360", "dhash": "f0c48c2c7c59d8bc", "phash_int": -2.890042557630942e+18, "collected_at": "2026-05-22T04:29:19.304054+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0120_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0120_IMG.JPG", "file_name": "101-0120_IMG.JPG", "file_stem": "101-0120_IMG", "file_ext": ".jpg", "file_size": 597191.0, "mtime": "2002-09-21T23:32:00+00:00", "mtime_ts": 1032651120.0, "ctime": "2002-09-21T23:32:00+00:00", "sha256_file": "f937e77f04ecc3917cb0757691ec9a4daea325389e09d57e637f1b9d4aebc903", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:32:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5712", "EXIF ExposureTime": "1/2", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:32:02", "EXIF DateTimeDigitized": "2002:09:21 23:32:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1227/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[171, 50, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2454"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e7d543a0006e6999d053bb0f199975d64f0f92dff606fa264ed8bc34cf7b636", "phash": "92ab49366b23959d", "dhash": "c939f8cb2c6cacb4", "phash_int": -7.878122625079995e+18, "collected_at": "2026-05-22T04:29:19.376170+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0122_IMG.JPG", "file_name": "101-0122_IMG.JPG", "file_stem": "101-0122_IMG", "file_ext": ".jpg", "file_size": 688539.0, "mtime": "2002-09-21T23:32:30+00:00", "mtime_ts": 1032651150.0, "ctime": "2002-09-21T23:32:30+00:00", "sha256_file": "9795e5834b7cbf8222d07995a477161e0004eb359eb7bc0b8ed85f46f1c994a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:32:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:32:32", "EXIF DateTimeDigitized": "2002:09:21 23:32:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 105, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "222", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3704"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a971e25c599af9815bdaf5f3cc9271b9d0eded13d43870136f6ff674f565a778", "phash": "9092d2156c6e676f", "dhash": "cd984d1516769018", "phash_int": -8.029124196192852e+18, "collected_at": "2026-05-22T04:29:19.380171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0123_IMG.JPG", "file_name": "101-0123_IMG.JPG", "file_stem": "101-0123_IMG", "file_ext": ".jpg", "file_size": 764479.0, "mtime": "2002-09-21T23:32:40+00:00", "mtime_ts": 1032651160.0, "ctime": "2002-09-21T23:32:40+00:00", "sha256_file": "3b9f4dae25cc2b76a33a1808ea2f2adafbd27dd5086398cd7f2c58b36e351498", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:32:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4568", "EXIF ExposureTime": "1/15", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:32:42", "EXIF DateTimeDigitized": "2002:09:21 23:32:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3704"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a74447fecfaac999f1ec7a309262a2dded3a97169f052263957d27a6c769c3bc", "phash": "9e9bd9d466626360", "dhash": "39788b6d2cec3030", "phash_int": -7.017776088052768e+18, "collected_at": "2026-05-22T04:29:19.429172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0124_IMG.JPG", "file_name": "101-0124_IMG.JPG", "file_stem": "101-0124_IMG", "file_ext": ".jpg", "file_size": 825896.0, "mtime": "2002-09-21T23:32:46+00:00", "mtime_ts": 1032651166.0, "ctime": "2002-09-21T23:32:46+00:00", "sha256_file": "87850d43addb81c1eac71687967ed3052ba51867dcc63eca58ad627d76bf6a67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:32:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4870", "EXIF ExposureTime": "1/15", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:32:48", "EXIF DateTimeDigitized": "2002:09:21 23:32:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4119/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4119"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3a78c004f7551b05c1b4467d38ec93a92b6ff0b1664046f7cfa42a1ad667746", "phash": "9e9dd9762561614c", "dhash": "9a71b2ab6de96831", "phash_int": -7.017213542916858e+18, "collected_at": "2026-05-22T04:29:19.432172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0125_IMG.JPG", "file_name": "101-0125_IMG.JPG", "file_stem": "101-0125_IMG", "file_ext": ".jpg", "file_size": 704705.0, "mtime": "2002-09-21T23:33:26+00:00", "mtime_ts": 1032651206.0, "ctime": "2002-09-21T23:33:26+00:00", "sha256_file": "595e69f476fe3d25dc759014e174ccc542d47cd3a97750cb3c5b32ab84d7a907", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:33:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3482", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:33:28", "EXIF DateTimeDigitized": "2002:09:21 23:33:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1971/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3942"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77745e25a7c8e257f9e400b553e08b61bed7bc2db1636fef0347b4c5311fd6e1", "phash": "9092834d6d6f671b", "dhash": "c5985d3516769219", "phash_int": -8.029210817076435e+18, "collected_at": "2026-05-22T04:29:19.518177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0126_IMG.JPG", "file_name": "101-0126_IMG.JPG", "file_stem": "101-0126_IMG", "file_ext": ".jpg", "file_size": 676805.0, "mtime": "2002-09-21T23:33:42+00:00", "mtime_ts": 1032651222.0, "ctime": "2002-09-21T23:33:42+00:00", "sha256_file": "74ff4b9cc6f7558c0ec4023c9255db2118d36d97dc9eb6b534e053a7aab4882f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:21 23:33:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3462", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:21 23:33:44", "EXIF DateTimeDigitized": "2002:09:21 23:33:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3679/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "2271999/280", "EXIF FocalPlaneYResolution": "1703999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 52, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "222", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3679"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4eccc9fd2fe08881e9f628bac6684a752e10dc01ab357c12c1f00549cd1f3454", "phash": "9e9a9991dc3ccc62", "dhash": "3899252464b438b4", "phash_int": -7.018128217559217e+18, "collected_at": "2026-05-22T04:29:19.523176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0134_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0134_IMG.JPG", "file_name": "101-0134_IMG.JPG", "file_stem": "101-0134_IMG", "file_ext": ".jpg", "file_size": 114045.0, "mtime": "2002-09-22T19:56:06+00:00", "mtime_ts": 1032724566.0, "ctime": "2002-09-22T19:56:06+00:00", "sha256_file": "96255120d8377032b24fe8e56339049f6d84119149dede6976ef5d91ca955e6e", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fdd8f71ebdb9cb126ed714b4a3e7fd3c0cabd18a7102e49b12ae136874386ff", "phash": "81e05fc57e856a95", "dhash": "888eaababacafaf8", "phash_int": -9.088158746197792e+18, "collected_at": "2026-05-22T04:29:19.604179+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0132_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0132_IMG.JPG", "file_name": "101-0132_IMG.JPG", "file_stem": "101-0132_IMG", "file_ext": ".jpg", "file_size": 796014.0, "mtime": "2002-09-22T00:14:20+00:00", "mtime_ts": 1032653660.0, "ctime": "2002-09-22T00:14:20+00:00", "sha256_file": "b52621de2410b50ac5c702028358196dbdb4ebc4fd6d91a1889f3612145305a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 00:14:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5284", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 00:14:21", "EXIF DateTimeDigitized": "2002:09:22 00:14:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b37653399015163bac1be25ba140fc8a97f85cb14f128032afad23efa41f6f69", "phash": "d423d88f68fc8bd0", "dhash": "b1ec4c86a470b4b0", "phash_int": -3.160444403030652e+18, "collected_at": "2026-05-22T04:29:19.610179+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0135_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0135_IMG.JPG", "file_name": "101-0135_IMG.JPG", "file_stem": "101-0135_IMG", "file_ext": ".jpg", "file_size": 207550.0, "mtime": "2002-09-22T20:01:00+00:00", "mtime_ts": 1032724860.0, "ctime": "2002-09-22T20:01:00+00:00", "sha256_file": "4a483883e1ec6a5153d1ffa176a33485abe7c784fdf29b6b1a34afd2bd761d39", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": null, "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4f77f6d875b2e89aa2b6b574f5bb825bb69007d4c7599954c5abf30c27236059", "phash": "85a07a977a166a3e", "dhash": "fececedcdcdcdcfe", "phash_int": -8.817913279384491e+18, "collected_at": "2026-05-22T04:29:19.655182+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0136_IMG.JPG", "file_name": "101-0136_IMG.JPG", "file_stem": "101-0136_IMG", "file_ext": ".jpg", "file_size": 761257.0, "mtime": "2002-09-22T08:32:34+00:00", "mtime_ts": 1032683554.0, "ctime": "2002-09-22T08:32:34+00:00", "sha256_file": "eb73a84c1d323e9059d21a29eb09efcf0fcd1a1aeaa6b4f569f16067838dfa7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 08:32:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5869", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 08:32:36", "EXIF DateTimeDigitized": "2002:09:22 08:32:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[31, 233, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "95", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c13953acce8d486db193b81822a17a55c6c47242da4e73f23f8c0200251a30a", "phash": "f612f6b41c3d0b49", "dhash": "0c0cc82ca6e646c6", "phash_int": -7.152381373701787e+17, "collected_at": "2026-05-22T04:29:19.708181+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0137_IMG.JPG", "file_name": "101-0137_IMG.JPG", "file_stem": "101-0137_IMG", "file_ext": ".jpg", "file_size": 647845.0, "mtime": "2002-09-22T08:32:44+00:00", "mtime_ts": 1032683564.0, "ctime": "2002-09-22T08:32:44+00:00", "sha256_file": "bed5b3b9805fa3f00f78bd60b51a7ecad697f1b34790c3879f515f1f4256cd70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 08:32:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4086", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 08:32:46", "EXIF DateTimeDigitized": "2002:09:22 08:32:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2217/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4434"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c594307b4066fd7b88a09c59400a50f20545315c904c2226023e4816d29ddbaf", "phash": "c669a6f9d1662934", "dhash": "4840e3c190d9ecc4", "phash_int": -4.1496019897550003e+18, "collected_at": "2026-05-22T04:29:19.744183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0138_IMG.JPG", "file_name": "101-0138_IMG.JPG", "file_stem": "101-0138_IMG", "file_ext": ".jpg", "file_size": 739276.0, "mtime": "2002-09-22T10:10:20+00:00", "mtime_ts": 1032689420.0, "ctime": "2002-09-22T10:10:20+00:00", "sha256_file": "1d4cd42a0096efdd44c6f94e324a89eb4d66333509cb74725aef75cda58fd37b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:10:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4141", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:10:22", "EXIF DateTimeDigitized": "2002:09:22 10:10:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 144, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f8bddd324f706e98135bf8419c9463ec1424240492cad1fb97420684d75bb82", "phash": "96a996b9bc329992", "dhash": "bcc6f929e25ccccc", "phash_int": -7.590369972485712e+18, "collected_at": "2026-05-22T04:29:19.778183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0139_IMG.JPG", "file_name": "101-0139_IMG.JPG", "file_stem": "101-0139_IMG", "file_ext": ".jpg", "file_size": 863245.0, "mtime": "2002-09-22T10:10:48+00:00", "mtime_ts": 1032689448.0, "ctime": "2002-09-22T10:10:48+00:00", "sha256_file": "fedeaa152ad31adfe54a022b94a203941ee6cf33fb09be29aa40dd356711d76c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:10:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5089", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:10:49", "EXIF DateTimeDigitized": "2002:09:22 10:10:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14ec0cbe80d9ffc8e0d9fc7605fa7e84194b9feaefa397c14f2483c4430d7285", "phash": "c08312d4a7323fbf", "dhash": "ccf37bc762a4ad2b", "phash_int": -4.574792091930837e+18, "collected_at": "2026-05-22T04:29:19.819185+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0140_IMG.JPG", "file_name": "101-0140_IMG.JPG", "file_stem": "101-0140_IMG", "file_ext": ".jpg", "file_size": 717706.0, "mtime": "2002-09-22T10:11:22+00:00", "mtime_ts": 1032689482.0, "ctime": "2002-09-22T10:11:22+00:00", "sha256_file": "02d584f076b7c4ad8d75f73651314d3506f2b526c07c10b4932656a1bb94f71f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:11:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3817", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:11:23", "EXIF DateTimeDigitized": "2002:09:22 10:11:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d3edae222860b124e311ca05534618bac9e5e87b1b016fe0e01fe0ffa7790d20", "phash": "a6bba7cc19889a5a", "dhash": "6c4d4db2a4ececcc", "phash_int": -6.432363147725071e+18, "collected_at": "2026-05-22T04:29:19.825186+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0141_IMG.JPG", "file_name": "101-0141_IMG.JPG", "file_stem": "101-0141_IMG", "file_ext": ".jpg", "file_size": 800634.0, "mtime": "2002-09-22T10:12:16+00:00", "mtime_ts": 1032689536.0, "ctime": "2002-09-22T10:12:16+00:00", "sha256_file": "722f47e064213bcc7cafd685fc83cbbe0d8c0cd747f2950f016fb41da6da9060", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:12:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4118", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:12:18", "EXIF DateTimeDigitized": "2002:09:22 10:12:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe5bf6cd535760052cec63c54ce17e0670ad1748e0a3f4cf4ee1721cf7ea9dbe", "phash": "bcf5d242c3ca433c", "dhash": "c826262b332b33b2", "phash_int": -4.830723841090502e+18, "collected_at": "2026-05-22T04:29:19.926190+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0142_IMG.JPG", "file_name": "101-0142_IMG.JPG", "file_stem": "101-0142_IMG", "file_ext": ".jpg", "file_size": 727012.0, "mtime": "2002-09-22T10:12:32+00:00", "mtime_ts": 1032689552.0, "ctime": "2002-09-22T10:12:32+00:00", "sha256_file": "eeee790b10cf4bd285229979250b751973038672ab4284c2bf8bea02135576b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:12:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3688", "EXIF ExposureTime": "1/4", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:12:33", "EXIF DateTimeDigitized": "2002:09:22 10:12:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11697/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11697"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e35caee40b5bb6c50ff8568c70b0048d125b4fa6b6aa1a399c9062044c7890f", "phash": "b31ccc339f0f4970", "dhash": "3434541e1c9b0dcd", "phash_int": -5.540328919488575e+18, "collected_at": "2026-05-22T04:29:19.933192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0143_IMG.JPG", "file_name": "101-0143_IMG.JPG", "file_stem": "101-0143_IMG", "file_ext": ".jpg", "file_size": 588864.0, "mtime": "2002-09-22T10:13:44+00:00", "mtime_ts": 1032689624.0, "ctime": "2002-09-22T10:13:44+00:00", "sha256_file": "2e44aeb4e041c611f211d1e775bc45dab1471e17922ba8f8d3fda0da55a1cfb6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:13:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2336", "EXIF ExposureTime": "1/5", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:13:45", "EXIF DateTimeDigitized": "2002:09:22 10:13:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2189/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4378"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3fd1a3800e380e27a0f336851827b44554ed02654de94128ecfe5bf97218b63", "phash": "cbf4598671a6198e", "dhash": "c0d0c8cac9717170", "phash_int": -3.75027415572558e+18, "collected_at": "2026-05-22T04:29:19.987246+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0144_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0144_IMG.JPG", "file_name": "101-0144_IMG.JPG", "file_stem": "101-0144_IMG", "file_ext": ".jpg", "file_size": 643108.0, "mtime": "2002-09-22T10:14:18+00:00", "mtime_ts": 1032689658.0, "ctime": "2002-09-22T10:14:18+00:00", "sha256_file": "6363c30b6ab029a6710e3d3c0a77280b8cc871fed26bb3c632cfdd9f71a87a1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:14:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3304", "EXIF ExposureTime": "1/4", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:14:19", "EXIF DateTimeDigitized": "2002:09:22 10:14:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2899/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010144", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5798"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65e0f05b342308d017244e9957430d73a48f329e3134ef7b1183a6eae1330b44", "phash": "91e65f1ba04c7996", "dhash": "ec4e8e96fcf978b8", "phash_int": -7.933549121308428e+18, "collected_at": "2026-05-22T04:29:20.037247+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0145_IMG.JPG", "file_name": "101-0145_IMG.JPG", "file_stem": "101-0145_IMG", "file_ext": ".jpg", "file_size": 670604.0, "mtime": "2002-09-22T10:15:26+00:00", "mtime_ts": 1032689726.0, "ctime": "2002-09-22T10:15:26+00:00", "sha256_file": "29523e84a14dd5e6c8b73e89fcff45dde763b5313a599091a36e7997569c84fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:15:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3739", "EXIF ExposureTime": "1/4", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:15:27", "EXIF DateTimeDigitized": "2002:09:22 10:15:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1364/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10912"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49826edf4ab43ba21af778e0ba1a2cc4b813f7a396974858f56c5dd92cef3818", "phash": "d7e7b40998d9914c", "dhash": "6a6c482951d07838", "phash_int": -2.889142682622783e+18, "collected_at": "2026-05-22T04:29:20.039248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0146_IMG.JPG", "file_name": "101-0146_IMG.JPG", "file_stem": "101-0146_IMG", "file_ext": ".jpg", "file_size": 665705.0, "mtime": "2002-09-22T10:15:38+00:00", "mtime_ts": 1032689738.0, "ctime": "2002-09-22T10:15:38+00:00", "sha256_file": "9135fe42c575ea8c2a16e1163913f72730895aa480cd7366022bc43e15bd56b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:15:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3587", "EXIF ExposureTime": "1/5", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:15:39", "EXIF DateTimeDigitized": "2002:09:22 10:15:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5699"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5a483f7e125791bfc377731888cad44d072e90019ea954120aecfaab560fd24", "phash": "e18a953e4fb39492", "dhash": "f8d1c9434b1ededa", "phash_int": -2.1947777735320154e+18, "collected_at": "2026-05-22T04:29:20.136003+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0147_IMG.JPG", "file_name": "101-0147_IMG.JPG", "file_stem": "101-0147_IMG", "file_ext": ".jpg", "file_size": 636437.0, "mtime": "2002-09-22T10:16:40+00:00", "mtime_ts": 1032689800.0, "ctime": "2002-09-22T10:16:40+00:00", "sha256_file": "7adc01261663055f240b5d6432cf1dbc9479d6bc0dd467756427a2a04e0d20ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:16:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2744", "EXIF ExposureTime": "1/8", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:16:41", "EXIF DateTimeDigitized": "2002:09:22 10:16:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "498b08646dce1414b9865314d3feca0aeb5f2e2b08836e56652954d06158c0d5", "phash": "d0e30fde2759b026", "dhash": "c098949484b0b0b6", "phash_int": -3.3948522472898765e+18, "collected_at": "2026-05-22T04:29:20.151094+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0148_IMG.JPG", "file_name": "101-0148_IMG.JPG", "file_stem": "101-0148_IMG", "file_ext": ".jpg", "file_size": 686293.0, "mtime": "2002-09-22T10:17:00+00:00", "mtime_ts": 1032689820.0, "ctime": "2002-09-22T10:17:00+00:00", "sha256_file": "22150f2e43c21f8597378ecb07aa197c702aaeddfbdcbefcac4105e1143b6dac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:17:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3210", "EXIF ExposureTime": "1/6", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:17:02", "EXIF DateTimeDigitized": "2002:09:22 10:17:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "49799/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010148", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "49799"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7d05e34a774d249c62d73a77b41c2bb893fc0dd72f32a1db739e1b51da4cafb", "phash": "b8c3063c11e94ff9", "dhash": "c2c9db9b3b37b7b4", "phash_int": -5.133252295203926e+18, "collected_at": "2026-05-22T04:29:20.226257+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0149_IMG.JPG", "file_name": "101-0149_IMG.JPG", "file_stem": "101-0149_IMG", "file_ext": ".jpg", "file_size": 647876.0, "mtime": "2002-09-22T10:18:06+00:00", "mtime_ts": 1032689886.0, "ctime": "2002-09-22T10:18:06+00:00", "sha256_file": "a16c8d94093d79f4041a3d8f61f6c6cf2fb8df634a3e36910f180c375b9a0f86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:18:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2765", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:18:07", "EXIF DateTimeDigitized": "2002:09:22 10:18:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7544f10eb813148f7e22183da51391a354d8915aad5ba007cfae5c5df4e61d1c", "phash": "e295aadd0be6d184", "dhash": "cd95840e2a120705", "phash_int": -2.1196001832437796e+18, "collected_at": "2026-05-22T04:29:20.238255+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0150_IMG.JPG", "file_name": "101-0150_IMG.JPG", "file_stem": "101-0150_IMG", "file_ext": ".jpg", "file_size": 767794.0, "mtime": "2002-09-22T10:20:28+00:00", "mtime_ts": 1032690028.0, "ctime": "2002-09-22T10:20:28+00:00", "sha256_file": "23203182d1a2266716004d19393c2de9ca758a6955d50b1bd553f525aeda726d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:20:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4054", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:20:30", "EXIF DateTimeDigitized": "2002:09:22 10:20:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b02e9d04a589feae1986d65c66ee026d2583ea5c0236826b874c6b326c77907b", "phash": "b18dc49b34522f97", "dhash": "9492561e9e1b889c", "phash_int": -5.652645786403328e+18, "collected_at": "2026-05-22T04:29:20.302352+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0151_IMG.JPG", "file_name": "101-0151_IMG.JPG", "file_stem": "101-0151_IMG", "file_ext": ".jpg", "file_size": 727027.0, "mtime": "2002-09-22T10:21:32+00:00", "mtime_ts": 1032690092.0, "ctime": "2002-09-22T10:21:32+00:00", "sha256_file": "9e13128117765fda22da8d487b2c6cf598968938f32a1fb1e5fe0ed2ba2a6aa9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:21:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3488", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:21:34", "EXIF DateTimeDigitized": "2002:09:22 10:21:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14af5d858f9c3b2453183624f4a23c119e821fe76d05d65e10435fe62d20abfe", "phash": "85dc817e262adbb4", "dhash": "fcfaf8696a7bcece", "phash_int": -8.801017192982586e+18, "collected_at": "2026-05-22T04:29:20.307352+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0152_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0152_IMG.JPG", "file_name": "101-0152_IMG.JPG", "file_stem": "101-0152_IMG", "file_ext": ".jpg", "file_size": 688028.0, "mtime": "2002-09-22T10:22:52+00:00", "mtime_ts": 1032690172.0, "ctime": "2002-09-22T10:22:52+00:00", "sha256_file": "99718348d684d22874de8bcd1b75ea0720553c10184874f562e74a447a192b04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:22:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3174", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:22:54", "EXIF DateTimeDigitized": "2002:09:22 10:22:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010152", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ffa9be803fb0e471f867ab4b1e246ce8dbf3b1b7585c9902ac0bf8cdf3ea5471", "phash": "b4dbc4ce101bc73c", "dhash": "fc3b2f1f1f0f0f9e", "phash_int": -5.414517737670326e+18, "collected_at": "2026-05-22T04:29:20.387646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0153_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0153_IMG.JPG", "file_name": "101-0153_IMG.JPG", "file_stem": "101-0153_IMG", "file_ext": ".jpg", "file_size": 737990.0, "mtime": "2002-09-22T10:23:54+00:00", "mtime_ts": 1032690234.0, "ctime": "2002-09-22T10:23:54+00:00", "sha256_file": "242aac274358d1fd6f31d6dabc38a9ba6289ed306fd6f63e103313a20dcc6cd3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:23:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4083", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:23:55", "EXIF DateTimeDigitized": "2002:09:22 10:23:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010153", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb8062e0cf5eec506d6730f501331330017c0361f89c2070231650a4d9ad8576", "phash": "e1eb5ec9c8cfc003", "dhash": "030fced6d696b6b4", "phash_int": -2.167534574898266e+18, "collected_at": "2026-05-22T04:29:20.391643+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0154_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0154_IMG.JPG", "file_name": "101-0154_IMG.JPG", "file_stem": "101-0154_IMG", "file_ext": ".jpg", "file_size": 855460.0, "mtime": "2002-09-22T10:25:34+00:00", "mtime_ts": 1032690334.0, "ctime": "2002-09-22T10:25:34+00:00", "sha256_file": "494fa35c2c704836681e44ae507b6f125598a32c3d76324b4dd304808426fad7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:25:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4278", "EXIF ExposureTime": "1/15", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:25:36", "EXIF DateTimeDigitized": "2002:09:22 10:25:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010154", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "312c6f6580885265d96df4cfd09ca83d25f4d30ff689769ae8bb0bcb588cdb4e", "phash": "fc81c60f92bfc170", "dhash": "e8d894383c163aa8", "phash_int": -2.517023339671876e+17, "collected_at": "2026-05-22T04:29:20.454647+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0155_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0155_IMG.JPG", "file_name": "101-0155_IMG.JPG", "file_stem": "101-0155_IMG", "file_ext": ".jpg", "file_size": 861128.0, "mtime": "2002-09-22T10:25:44+00:00", "mtime_ts": 1032690344.0, "ctime": "2002-09-22T10:25:44+00:00", "sha256_file": "559df7210f9e38de64319d68fcda7ed7b8a90b3f51d9dd455ef0d7463c353252", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:25:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4970", "EXIF ExposureTime": "1/15", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:25:46", "EXIF DateTimeDigitized": "2002:09:22 10:25:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010155", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa902f326956f9e56e8fcee3ab6d9127935d416ffe4ba30905cdb0566b502032", "phash": "ead58866cb053b66", "dhash": "c1810ce20535a3b1", "phash_int": -1.5251629237208855e+18, "collected_at": "2026-05-22T04:29:20.465729+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0157_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0157_IMG.JPG", "file_name": "101-0157_IMG.JPG", "file_stem": "101-0157_IMG", "file_ext": ".jpg", "file_size": 892724.0, "mtime": "2002-09-22T10:29:16+00:00", "mtime_ts": 1032690556.0, "ctime": "2002-09-22T10:29:16+00:00", "sha256_file": "07ad768c79c74d5ea96920a1bba4aef523b43fe63e90fc99c5ba21d69eb5bf9e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:29:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4946", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:29:18", "EXIF DateTimeDigitized": "2002:09:22 10:29:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010157", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "253a209a14e505b98fa49e6672a11a78334b41492c5a26419c8a91f98337e584", "phash": "97e817a46b68c38e", "dhash": "247c709370f46c48", "phash_int": -7.500719184441458e+18, "collected_at": "2026-05-22T04:29:20.567870+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0156_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0156_IMG.JPG", "file_name": "101-0156_IMG.JPG", "file_stem": "101-0156_IMG", "file_ext": ".jpg", "file_size": 1294254.0, "mtime": "2002-09-22T10:26:14+00:00", "mtime_ts": 1032690374.0, "ctime": "2002-09-22T10:26:14+00:00", "sha256_file": "e8d7cb676feca53ac21948337b279ae1ec46ba56710d8ebefeffad29804fc725", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:26:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3914", "EXIF ExposureTime": "1/15", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:26:15", "EXIF DateTimeDigitized": "2002:09:22 10:26:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010156", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "154", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d8330b1698ca3bc285c0318a4dee9de8299d2a9575cf773c8d84b19637e695e", "phash": "932f0ec6c3ad8ca5", "dhash": "635b53d9c0a43cd0", "phash_int": -7.8410321793795e+18, "collected_at": "2026-05-22T04:29:20.569864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0158_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0158_IMG.JPG", "file_name": "101-0158_IMG.JPG", "file_stem": "101-0158_IMG", "file_ext": ".jpg", "file_size": 943566.0, "mtime": "2002-09-22T10:29:26+00:00", "mtime_ts": 1032690566.0, "ctime": "2002-09-22T10:29:26+00:00", "sha256_file": "45be64f2de9bb807c6377ffcdc5ebc97d4dabbe7ba34a6dfe5f30f05c6063872", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:29:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4586", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:29:28", "EXIF DateTimeDigitized": "2002:09:22 10:29:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010158", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67f125a49db0014c131de6ba48b804bc002593e6f1aff71202eed72bb4333cd4", "phash": "959d703b501dcb17", "dhash": "bcf6f2f6e4726684", "phash_int": -7.665847590665205e+18, "collected_at": "2026-05-22T04:29:20.649189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0159_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0159_IMG.JPG", "file_name": "101-0159_IMG.JPG", "file_stem": "101-0159_IMG", "file_ext": ".jpg", "file_size": 766739.0, "mtime": "2002-09-22T10:30:34+00:00", "mtime_ts": 1032690634.0, "ctime": "2002-09-22T10:30:34+00:00", "sha256_file": "6e67421b47a6a0ef8eed0846692d985b6d5e8d490cf5a0c4cf567cfe28f26b18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:30:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3672", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:30:36", "EXIF DateTimeDigitized": "2002:09:22 10:30:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010159", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eada4d04bab60212b40ed4c69cf9ef745aef4312b5e79dd49158ffae4403e784", "phash": "8785bc5a05fc5a47", "dhash": "6666c6d6d5d90516", "phash_int": -8.68132561185326e+18, "collected_at": "2026-05-22T04:29:20.651188+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0161_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0161_IMG.JPG", "file_name": "101-0161_IMG.JPG", "file_stem": "101-0161_IMG", "file_ext": ".jpg", "file_size": 1007552.0, "mtime": "2002-09-22T10:31:46+00:00", "mtime_ts": 1032690706.0, "ctime": "2002-09-22T10:31:46+00:00", "sha256_file": "1c96acc31b07943a343d21c9e35131bdb2698b47daacc22649d6c0f8a874c1ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:31:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5875", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:31:48", "EXIF DateTimeDigitized": "2002:09:22 10:31:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010161", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81166cbba82c573ce4ec2542590d5b81788bc0f5f8478b1143d1105dc4ba873b", "phash": "dde0869a9d6616e8", "dhash": "f092067270696170", "phash_int": -2.458817397920492e+18, "collected_at": "2026-05-22T04:29:20.711826+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0160_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0160_IMG.JPG", "file_name": "101-0160_IMG.JPG", "file_stem": "101-0160_IMG", "file_ext": ".jpg", "file_size": 1217002.0, "mtime": "2002-09-22T10:31:18+00:00", "mtime_ts": 1032690678.0, "ctime": "2002-09-22T10:31:18+00:00", "sha256_file": "6578b0054ee21c080a7da2b8099feeb874ab9b3fe840a5e9c6c6c89b3165b79c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:31:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6243", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:31:20", "EXIF DateTimeDigitized": "2002:09:22 10:31:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010160", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69146366ad4897a9068122a97d6cd0fc6362342230e348baaa237fd2f735259e", "phash": "bdf5827387438f20", "dhash": "7232322a23225b62", "phash_int": -4.758753998544859e+18, "collected_at": "2026-05-22T04:29:20.717828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0162_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0162_IMG.JPG", "file_name": "101-0162_IMG.JPG", "file_stem": "101-0162_IMG", "file_ext": ".jpg", "file_size": 561236.0, "mtime": "2002-09-22T10:32:54+00:00", "mtime_ts": 1032690774.0, "ctime": "2002-09-22T10:32:54+00:00", "sha256_file": "411691cae5e2537a4dbd94d856e9f3dee88db3e9a684dd55dc736625907e5e47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:32:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2270", "EXIF ExposureTime": "1/30", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:32:55", "EXIF DateTimeDigitized": "2002:09:22 10:32:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "51/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010162", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "146", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "408"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1402d02b9909a3bfa451042454c31a7cbe40f96afe09fc30b33d98f6d45c6e1f", "phash": "b3f3cb309cc98c8c", "dhash": "4c4c4c8c8c8ccc68", "phash_int": -5.479812911930439e+18, "collected_at": "2026-05-22T04:29:20.753828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0163_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0163_IMG.JPG", "file_name": "101-0163_IMG.JPG", "file_stem": "101-0163_IMG", "file_ext": ".jpg", "file_size": 902827.0, "mtime": "2002-09-22T10:41:24+00:00", "mtime_ts": 1032691284.0, "ctime": "2002-09-22T10:41:24+00:00", "sha256_file": "926b5596e3a379fbf3c65be69ea51e0d31db4e19da5eaf9c76139109eef98ed6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:41:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5721", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:41:26", "EXIF DateTimeDigitized": "2002:09:22 10:41:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010163", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edd615e55273a179fb1b483f2acc13999bebf6c21a169ab239bbd92293066179", "phash": "a7a3a77494a16723", "dhash": "cec44f522464d2e2", "phash_int": -6.367061329020099e+18, "collected_at": "2026-05-22T04:29:20.761892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0164_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0164_IMG.JPG", "file_name": "101-0164_IMG.JPG", "file_stem": "101-0164_IMG", "file_ext": ".jpg", "file_size": 799106.0, "mtime": "2002-09-22T10:41:30+00:00", "mtime_ts": 1032691290.0, "ctime": "2002-09-22T10:41:30+00:00", "sha256_file": "8a2756d9a64df8e8d9c300402ba07249be7f950ce5c6ae03a12e05842aadfdac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 10:41:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5933", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 10:41:31", "EXIF DateTimeDigitized": "2002:09:22 10:41:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010164", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c71bbdaba76b0d8df6495b4e551dc7881ac224660044de0c6ac1cf838e667f03", "phash": "fab5346e510ab661", "dhash": "14545559192129b9", "phash_int": -3.813409450322354e+17, "collected_at": "2026-05-22T04:29:20.807046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0165_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0165_IMG.JPG", "file_name": "101-0165_IMG.JPG", "file_stem": "101-0165_IMG", "file_ext": ".jpg", "file_size": 453092.0, "mtime": "2002-09-22T12:13:54+00:00", "mtime_ts": 1032696834.0, "ctime": "2002-09-22T12:13:54+00:00", "sha256_file": "25b548391d6fe27f6454083665c703b7b7e38cf0881675254b309e4d6844551c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:13:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7004", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:13:55", "EXIF DateTimeDigitized": "2002:09:22 12:13:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[169, 96, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010165", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f56a2b233c7ea312a1d68049d6d52da67b3e71e1790eaf4119e12c65b2f41f6", "phash": "efe3e19714442971", "dhash": "464143647c69240b", "phash_int": -1.1608362399351334e+18, "collected_at": "2026-05-22T04:29:20.814116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0167_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0167_IMG.JPG", "file_name": "101-0167_IMG.JPG", "file_stem": "101-0167_IMG", "file_ext": ".jpg", "file_size": 490310.0, "mtime": "2002-09-22T12:20:42+00:00", "mtime_ts": 1032697242.0, "ctime": "2002-09-22T12:20:42+00:00", "sha256_file": "4e1c23e999f0f12dc358a8094e6f326810164f1a81e43583e62159e6b1c8b7ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:20:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4795", "EXIF ExposureTime": "1/15", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:20:44", "EXIF DateTimeDigitized": "2002:09:22 12:20:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[114, 151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010167", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "95", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "07676d5790c5a7e8b4d7ce449d894e60e28a268e3beedc8a1d01e1c7cb14b20e", "phash": "8b3567ae296bc922", "dhash": "ce7ed6b3bb696969", "phash_int": -8.415706330955004e+18, "collected_at": "2026-05-22T04:29:20.876222+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0166_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0166_IMG.JPG", "file_name": "101-0166_IMG.JPG", "file_stem": "101-0166_IMG", "file_ext": ".jpg", "file_size": 491365.0, "mtime": "2002-09-22T12:14:06+00:00", "mtime_ts": 1032696846.0, "ctime": "2002-09-22T12:14:06+00:00", "sha256_file": "51165a330cddb103dba46b3e834dcdb143c6e118b2ccdc8ee9b6e793de0c77fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:14:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6679", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:14:07", "EXIF DateTimeDigitized": "2002:09:22 12:14:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[101, 167, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010166", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7edf02ad9f77c4a1e786647ba94bda3e0e2afdd342d024cba0b53acdcc8057c9", "phash": "95b913c47cb64a71", "dhash": "12da5a3626e54c50", "phash_int": -7.658067956739978e+18, "collected_at": "2026-05-22T04:29:20.880223+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0168_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0168_IMG.JPG", "file_name": "101-0168_IMG.JPG", "file_stem": "101-0168_IMG", "file_ext": ".jpg", "file_size": 420696.0, "mtime": "2002-09-22T12:20:48+00:00", "mtime_ts": 1032697248.0, "ctime": "2002-09-22T12:20:48+00:00", "sha256_file": "afd82816111b63fd7a52cf447fb4dcf8c0d583b3523af8a4df40b3dd16ec5d90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:20:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4585", "EXIF ExposureTime": "1/15", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:20:50", "EXIF DateTimeDigitized": "2002:09:22 12:20:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010168", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba796ae99d643e18b672227b60099b2c1c174cc496e0895cb0d70e0db8066b6b", "phash": "986574a6b969d98a", "dhash": "ce6edb9bbb793539", "phash_int": -7.465432547872614e+18, "collected_at": "2026-05-22T04:29:20.959307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0169_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0169_IMG.JPG", "file_name": "101-0169_IMG.JPG", "file_stem": "101-0169_IMG", "file_ext": ".jpg", "file_size": 356577.0, "mtime": "2002-09-22T12:20:54+00:00", "mtime_ts": 1032697254.0, "ctime": "2002-09-22T12:20:54+00:00", "sha256_file": "c77e470a97caeaaab9198d091a920ed79697fc4ade8add139cde5faa1344d383", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:20:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4961", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:20:55", "EXIF DateTimeDigitized": "2002:09:22 12:20:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010169", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02a5d8254f9c53988eb0698900b108aa695f45a3a36ffcfd161ae86d157a9a53", "phash": "816c56d559d5863d", "dhash": "36cfcfb373dcdcec", "phash_int": -9.120819670996908e+18, "collected_at": "2026-05-22T04:29:20.975307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0170_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0170_IMG.JPG", "file_name": "101-0170_IMG.JPG", "file_stem": "101-0170_IMG", "file_ext": ".jpg", "file_size": 437429.0, "mtime": "2002-09-22T12:21:00+00:00", "mtime_ts": 1032697260.0, "ctime": "2002-09-22T12:21:00+00:00", "sha256_file": "f5f4ae28cde9adaa732c8354486cbc9a8a465122b2e98b114edb478a98bc2219", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:21:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5178", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:21:02", "EXIF DateTimeDigitized": "2002:09:22 12:21:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[174, 101, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010170", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b7932eed9934417d3d190055d56c4260fbeee2a368df91ba1495f02ca118981", "phash": "8b2866d65add5187", "dhash": "d7cfb333f9dcdcf9", "phash_int": -8.419366432535654e+18, "collected_at": "2026-05-22T04:29:21.058577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0171_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0171_IMG.JPG", "file_name": "101-0171_IMG.JPG", "file_stem": "101-0171_IMG", "file_ext": ".jpg", "file_size": 552674.0, "mtime": "2002-09-22T12:21:36+00:00", "mtime_ts": 1032697296.0, "ctime": "2002-09-22T12:21:36+00:00", "sha256_file": "a91b45ee62f1256b1f2e6e5a7d8a3695e985a8945a3a5eebab860704e1d66461", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:21:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5938", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:21:37", "EXIF DateTimeDigitized": "2002:09:22 12:21:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[114, 31, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010171", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "561ad091dbd231af5edd7720c2925908b5169d11dd94fce570709dc82da779be", "phash": "e8be8e4b38b28947", "dhash": "f7f7709f83d18993", "phash_int": -1.6757455576103299e+18, "collected_at": "2026-05-22T04:29:21.063579+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0172_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0172_IMG.JPG", "file_name": "101-0172_IMG.JPG", "file_stem": "101-0172_IMG", "file_ext": ".jpg", "file_size": 600197.0, "mtime": "2002-09-22T12:21:44+00:00", "mtime_ts": 1032697304.0, "ctime": "2002-09-22T12:21:44+00:00", "sha256_file": "732bc70b141d3aee6d80fa888a5c2ffdf02ed730c5a6bda336fa43ed46369a71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 12:21:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5075", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 12:21:46", "EXIF DateTimeDigitized": "2002:09:22 12:21:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010172", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c596c29af6b2da132534f97adc5932c1da7b7b0673fd81c67655460375c1600", "phash": "9bc9d97e6d0380c9", "dhash": "fbd9f97a323878f8", "phash_int": -7.221001390493827e+18, "collected_at": "2026-05-22T04:29:21.133822+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0173_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0173_IMG.JPG", "file_name": "101-0173_IMG.JPG", "file_stem": "101-0173_IMG", "file_ext": ".jpg", "file_size": 459736.0, "mtime": "2002-09-22T13:44:44+00:00", "mtime_ts": 1032702284.0, "ctime": "2002-09-22T13:44:44+00:00", "sha256_file": "8d6cd7baed840df5f8277fbd0dded55e0dfee61c24af3d60ec6e120ab4492ade", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 13:44:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6076", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 13:44:45", "EXIF DateTimeDigitized": "2002:09:22 13:44:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "686/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[83, 184, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010173", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5488"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "621e048a082ac49e3b3451dc5246c0d7581d83fa6c757af92b58c6d4ac76a799", "phash": "e49cd3dba8785e04", "dhash": "b4f4b48686450e06", "phash_int": -1.9734695963173606e+18, "collected_at": "2026-05-22T04:29:21.134828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0002.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0002.JPG", "file_name": "IMG_0002.JPG", "file_stem": "IMG_0002", "file_ext": ".jpg", "file_size": 937174.0, "mtime": "2002-09-23T06:29:46+00:00", "mtime_ts": 1032762586.0, "ctime": "2002-09-23T06:29:46+00:00", "sha256_file": "f66232085c035bd095d803f71d3e1006ad630f43e61bebff5cf2bc2c3437538c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:29:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5136", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:29:47", "EXIF DateTimeDigitized": "2002:09:23 07:29:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9395fe283c4101779d626b44116d192edabb5e3bf31bdaf9990461308803ad6b", "phash": "d7468e233aca7863", "dhash": "eaea88885c486830", "phash_int": -2.9345018252239524e+18, "collected_at": "2026-05-22T04:29:21.196144+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-22\\101-0174_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-22\\101-0174_IMG.JPG", "file_name": "101-0174_IMG.JPG", "file_stem": "101-0174_IMG", "file_ext": ".jpg", "file_size": 474296.0, "mtime": "2002-09-22T14:11:34+00:00", "mtime_ts": 1032703894.0, "ctime": "2002-09-22T14:11:34+00:00", "sha256_file": "51b222b36f7576d3a0b41ab0393a8ff8a8c73d7908e8d88248dd9b1d30945f34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:22 14:11:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5394", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:22 14:11:36", "EXIF DateTimeDigitized": "2002:09:22 14:11:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[99, 166, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010174", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b359ad6875291656c5137f82a542e4ca63c5badc8459ea6e796e21e5c8ee77f1", "phash": "d162d0de36944ced", "dhash": "9499930c05309090", "phash_int": -3.358892719247963e+18, "collected_at": "2026-05-22T04:29:21.200142+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0006.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0006.JPG", "file_name": "IMG_0006.JPG", "file_stem": "IMG_0006", "file_ext": ".jpg", "file_size": 894162.0, "mtime": "2002-09-23T06:33:26+00:00", "mtime_ts": 1032762806.0, "ctime": "2002-09-23T06:33:26+00:00", "sha256_file": "926c06043d87470465374ff0d039d92b1dc6b3397aad2b2347449fff5b63b692", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:33:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5001", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:33:27", "EXIF DateTimeDigitized": "2002:09:23 07:33:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65494", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f52118348e7836a22d4290995448270cc1d13d78188bed32a3ecaf923898862", "phash": "aad19fc6e0393334", "dhash": "f1f99b9b876d6b6b", "phash_int": -6.137949140615089e+18, "collected_at": "2026-05-22T04:29:21.262145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0003.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0003.JPG", "file_name": "IMG_0003.JPG", "file_stem": "IMG_0003", "file_ext": ".jpg", "file_size": 1030849.0, "mtime": "2002-09-23T06:29:54+00:00", "mtime_ts": 1032762594.0, "ctime": "2002-09-23T06:29:54+00:00", "sha256_file": "7090f86d151d7ff8c8244d1fcca645d267e89b50a8d5ac6d9bfb1790935b2283", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:29:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5461", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:29:55", "EXIF DateTimeDigitized": "2002:09:23 07:29:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3a2820fa2e561a9fc7d930c282986e64f6e62f0de5063111a449ab72eb25c01", "phash": "ccce595d1d30a29e", "dhash": "f161e5e73070f0e0", "phash_int": -3.6889127883133005e+18, "collected_at": "2026-05-22T04:29:21.264145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0010.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0010.JPG", "file_name": "IMG_0010.JPG", "file_stem": "IMG_0010", "file_ext": ".jpg", "file_size": 1197132.0, "mtime": "2002-09-23T06:39:20+00:00", "mtime_ts": 1032763160.0, "ctime": "2002-09-23T06:39:20+00:00", "sha256_file": "880299693d382915ea6e7194bd29c8e339d78536cbdfdeefeb3f1278b0aeae62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:39:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7478", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:39:21", "EXIF DateTimeDigitized": "2002:09:23 07:39:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[95, 169, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "983c219d2a47bd16d9ed361f6bde532c0181a76357b42e5a232f6e1c903142fc", "phash": "dd9b97a58d424a23", "dhash": "f23099a2b2978662", "phash_int": -2.4782204326419963e+18, "collected_at": "2026-05-22T04:29:21.392267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0008.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0008.JPG", "file_name": "IMG_0008.JPG", "file_stem": "IMG_0008", "file_ext": ".jpg", "file_size": 1116618.0, "mtime": "2002-09-23T06:35:48+00:00", "mtime_ts": 1032762948.0, "ctime": "2002-09-23T06:35:48+00:00", "sha256_file": "6a042de382e1bc946d0e124b15e06b53d0b093299d67a98499d657d3ba7a126b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:35:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6683", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:35:50", "EXIF DateTimeDigitized": "2002:09:23 07:35:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b17071913704a31e845d80bd9e11d6661589f47d8ac1988ba94801c61d371ffd", "phash": "b49acbddde9282c0", "dhash": "7922ad2d36169e06", "phash_int": -5.432805846686727e+18, "collected_at": "2026-05-22T04:29:21.395268+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0014.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0014.JPG", "file_name": "IMG_0014.JPG", "file_stem": "IMG_0014", "file_ext": ".jpg", "file_size": 1044542.0, "mtime": "2002-09-23T06:39:48+00:00", "mtime_ts": 1032763188.0, "ctime": "2002-09-23T06:39:48+00:00", "sha256_file": "5ce86c7c3063f5e86f2cdacef97bf307ed330fd5658752e9d7b14d33ae8fd9be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:39:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5431", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:39:50", "EXIF DateTimeDigitized": "2002:09:23 07:39:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "153", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24c9ea5cc9292d16795c86c67e90aeb0729b358c3627cd4d4c5a17d89ab9d492", "phash": "97f0ad35288e95b2", "dhash": "e698e4d1d87a6c68", "phash_int": -7.498302935746571e+18, "collected_at": "2026-05-22T04:29:21.470816+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0013.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0013.JPG", "file_name": "IMG_0013.JPG", "file_stem": "IMG_0013", "file_ext": ".jpg", "file_size": 840783.0, "mtime": "2002-09-23T06:39:44+00:00", "mtime_ts": 1032763184.0, "ctime": "2002-09-23T06:39:44+00:00", "sha256_file": "f00d374785aaf855d223b8157fd9ca4c8926acf75bcf2a7f0cb5394f9160aabf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:39:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5871", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:39:45", "EXIF DateTimeDigitized": "2002:09:23 07:39:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[86, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7cd2c7d50c3d4c82002315a73469dca234909094141718a1d56b3808d9d8d691", "phash": "91b9500f5cc792bb", "dhash": "909595d42b484c8c", "phash_int": -7.946232040607215e+18, "collected_at": "2026-05-22T04:29:21.473815+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0017.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0017.JPG", "file_name": "IMG_0017.JPG", "file_stem": "IMG_0017", "file_ext": ".jpg", "file_size": 1813831.0, "mtime": "2002-09-23T06:40:32+00:00", "mtime_ts": 1032763232.0, "ctime": "2002-09-23T06:40:32+00:00", "sha256_file": "b0e37e63154c3fdd8c7d07bcbb18f7c3be139dd2469d1d5ae00932a2018051cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:40:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:40:34", "EXIF DateTimeDigitized": "2002:09:23 07:40:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b97dd446ec2f61127ea6a69825dff1c5ba9953e7b7623cfd301421bf200a43d", "phash": "ca779398908f3396", "dhash": "b92fe5b5b5b1e1c8", "phash_int": -3.8574522723499244e+18, "collected_at": "2026-05-22T04:29:21.583030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0018.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0018.JPG", "file_name": "IMG_0018.JPG", "file_stem": "IMG_0018", "file_ext": ".jpg", "file_size": 1614513.0, "mtime": "2002-09-23T06:40:42+00:00", "mtime_ts": 1032763242.0, "ctime": "2002-09-23T06:40:42+00:00", "sha256_file": "62b71427bccec6c13f9520d1b92279f05cadc12cde079981ca7a700f884ca2bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:40:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5861", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:40:43", "EXIF DateTimeDigitized": "2002:09:23 07:40:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[84, 149, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "140", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d79e32975f3c54c335d03eae32eb59f7eb411856574b4095c8af32716626cccb", "phash": "d3dbc69698cc6464", "dhash": "e8c8c85818cce4ca", "phash_int": -3.1807303616961976e+18, "collected_at": "2026-05-22T04:29:21.593116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0019.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0019.JPG", "file_name": "IMG_0019.JPG", "file_stem": "IMG_0019", "file_ext": ".jpg", "file_size": 1544134.0, "mtime": "2002-09-23T06:40:58+00:00", "mtime_ts": 1032763258.0, "ctime": "2002-09-23T06:40:58+00:00", "sha256_file": "d1d4acc0339082c7875e8ce604af5da59590c2209f1e2289cadb49aac502c986", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:40:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6359", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:40:59", "EXIF DateTimeDigitized": "2002:09:23 07:40:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "627aaf2f895abc437eaeae93151896d3f7fa2dd35b0d7588ec6fab1642a92e0c", "phash": "cb390cfa9391456d", "dhash": "1b935a58584842c2", "phash_int": -3.8029941399805445e+18, "collected_at": "2026-05-22T04:29:21.695850+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0020.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0020.JPG", "file_name": "IMG_0020.JPG", "file_stem": "IMG_0020", "file_ext": ".jpg", "file_size": 1838201.0, "mtime": "2002-09-23T06:41:08+00:00", "mtime_ts": 1032763268.0, "ctime": "2002-09-23T06:41:08+00:00", "sha256_file": "b34f7f0683699be66e7ae9eeb1cdcacb8595544652a7ab7d6aca6d2802cc200a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:41:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6987", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:41:09", "EXIF DateTimeDigitized": "2002:09:23 07:41:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26d42a2de66f4e1df1e1bbeb6aadc9a0bfdd1a4fb71e27892601992f2d069d50", "phash": "8c61d38cf550f1ad", "dhash": "d2e1c1f537b5e5e0", "phash_int": -8.331145233294103e+18, "collected_at": "2026-05-22T04:29:21.702044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0021.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0021.JPG", "file_name": "IMG_0021.JPG", "file_stem": "IMG_0021", "file_ext": ".jpg", "file_size": 1526328.0, "mtime": "2002-09-23T06:41:42+00:00", "mtime_ts": 1032763302.0, "ctime": "2002-09-23T06:41:42+00:00", "sha256_file": "654f1c8c626ccd10c41191e6fb12d2d06c9fc94444d3c07ab399e01dbbebbecb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:41:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6028", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:41:44", "EXIF DateTimeDigitized": "2002:09:23 07:41:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[74, 194, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71c32cd17eb3fc5bd1e84cc2fcebcbb78e3eeab7235a4aca2b1e2d581c6cd44c", "phash": "b3e39269944a4ff0", "dhash": "494d4d099773acac", "phash_int": -5.484378939050013e+18, "collected_at": "2026-05-22T04:29:21.832966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0022.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0022.JPG", "file_name": "IMG_0022.JPG", "file_stem": "IMG_0022", "file_ext": ".jpg", "file_size": 1385596.0, "mtime": "2002-09-23T06:41:52+00:00", "mtime_ts": 1032763312.0, "ctime": "2002-09-23T06:41:52+00:00", "sha256_file": "180c3d2be7ec2d2a96566653dfa1b6dd8cf7b959ee862534ca47bb985baff29d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:41:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5147", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:41:53", "EXIF DateTimeDigitized": "2002:09:23 07:41:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[94, 172, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "147", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "210", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9e7c568acb57d52df3097ebf4fa85252f238b2a1edd96f72ae9b7477f7c7ca5", "phash": "9cfcf50c1c33c31c", "dhash": "24244ce4b4e1cee0", "phash_int": -7.134558277300141e+18, "collected_at": "2026-05-22T04:29:21.857694+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0024.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0024.JPG", "file_name": "IMG_0024.JPG", "file_stem": "IMG_0024", "file_ext": ".jpg", "file_size": 1133895.0, "mtime": "2002-09-23T06:42:18+00:00", "mtime_ts": 1032763338.0, "ctime": "2002-09-23T06:42:18+00:00", "sha256_file": "d197e189f40019d806d50f06ecd096a5dc77f8b207bdc36d1f5d6a585e1ccdff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:42:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7886", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:42:19", "EXIF DateTimeDigitized": "2002:09:23 07:42:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4841/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "122", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4841"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3b66c24a23441ce6cffd9fdca9c2a7e049af3bb3e79d51765b7c9ea5e81a1d8", "phash": "a07b80af3b2f0e39", "dhash": "5988a82a2aa6a6ae", "phash_int": -6.882766115405099e+18, "collected_at": "2026-05-22T04:29:21.957833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0023.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0023.JPG", "file_name": "IMG_0023.JPG", "file_stem": "IMG_0023", "file_ext": ".jpg", "file_size": 2028680.0, "mtime": "2002-09-23T06:42:02+00:00", "mtime_ts": 1032763322.0, "ctime": "2002-09-23T06:42:02+00:00", "sha256_file": "1a455f5d785dddd45c9c9eef242b91c9d3fb5434e41b58eecc064c3422a96cbc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:42:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7133", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:42:04", "EXIF DateTimeDigitized": "2002:09:23 07:42:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3137fd7e26079fdd523ffb072c780d9bd99c2d25bfbb4982899382599084f52e", "phash": "b42b7690b924ded2", "dhash": "ae4f47ca98d494a4", "phash_int": -5.464143358930395e+18, "collected_at": "2026-05-22T04:29:21.966915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0032.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0032.JPG", "file_name": "IMG_0032.JPG", "file_stem": "IMG_0032", "file_ext": ".jpg", "file_size": 882690.0, "mtime": "2002-09-23T06:46:24+00:00", "mtime_ts": 1032763584.0, "ctime": "2002-09-23T06:46:24+00:00", "sha256_file": "2f0a2fc08fa96964ec4abfb2b71ff6debe3f202d44ee3c37d51b264aed53fb89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:46:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7303", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:46:25", "EXIF DateTimeDigitized": "2002:09:23 07:46:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2973/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "59460"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a503adf1c1566f648441f130cbae706a80f2135ca8c2d816c973ff3e5fd7a37", "phash": "f6d4d4692b926a83", "dhash": "c0348c2c0b2f4e2e", "phash_int": -6.606696971489499e+17, "collected_at": "2026-05-22T04:29:22.089039+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0028.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0028.JPG", "file_name": "IMG_0028.JPG", "file_stem": "IMG_0028", "file_ext": ".jpg", "file_size": 1898888.0, "mtime": "2002-09-23T06:44:02+00:00", "mtime_ts": 1032763442.0, "ctime": "2002-09-23T06:44:02+00:00", "sha256_file": "402b4e3ace5bdc3a6d29ac80ec8347034dc6d44ba362dd43b11d0d118bb81c44", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:44:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4043", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:44:04", "EXIF DateTimeDigitized": "2002:09:23 07:44:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b50889e6624ae49967484b6bbf20be884c1128cd2d028c01207987a8fb2b9cc", "phash": "d72e01b9403f2fe4", "dhash": "c02060408048b0c0", "phash_int": -2.941411611467895e+18, "collected_at": "2026-05-22T04:29:22.104191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0033.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0033.JPG", "file_name": "IMG_0033.JPG", "file_stem": "IMG_0033", "file_ext": ".jpg", "file_size": 1138357.0, "mtime": "2002-09-23T06:46:30+00:00", "mtime_ts": 1032763590.0, "ctime": "2002-09-23T06:46:30+00:00", "sha256_file": "271451763579c743c9fb27a6edb220113d0db5e57bf97f6bd5c33b879c9ea4b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:46:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7273", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:46:32", "EXIF DateTimeDigitized": "2002:09:23 07:46:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "767/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 209, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3068"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4b1e4749bea8cba15c193c815b713395b2f36d69f9a597ce95d4a4366eac145", "phash": "c258d26acda9356d", "dhash": "21290955674dcdcc", "phash_int": -4.4425696762422093e+18, "collected_at": "2026-05-22T04:29:22.288919+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0036.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0036.JPG", "file_name": "IMG_0036.JPG", "file_stem": "IMG_0036", "file_ext": ".jpg", "file_size": 1270102.0, "mtime": "2002-09-23T06:47:16+00:00", "mtime_ts": 1032763636.0, "ctime": "2002-09-23T06:47:16+00:00", "sha256_file": "ba48781548ee0b1b0d6cf6bf8bee571827aaf1f6b3b1caf7f779db6f38948d67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:47:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7200", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:47:17", "EXIF DateTimeDigitized": "2002:09:23 07:47:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "619/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 227, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2476"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "25b1b977cb8ceb101540f33d7028b40c80c5c28d36b8f066b540f41070b427e3", "phash": "ada4569909e62cdd", "dhash": "a626a6ce12b32468", "phash_int": -5.934523193671407e+18, "collected_at": "2026-05-22T04:29:22.296201+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0037.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0037.JPG", "file_name": "IMG_0037.JPG", "file_stem": "IMG_0037", "file_ext": ".jpg", "file_size": 1106554.0, "mtime": "2002-09-23T06:47:22+00:00", "mtime_ts": 1032763642.0, "ctime": "2002-09-23T06:47:22+00:00", "sha256_file": "b1ff7b40b9d5702f5d9c01c533a69d5198a0da311f00228c5af05745357211e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:47:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6477", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:47:24", "EXIF DateTimeDigitized": "2002:09:23 07:47:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "547/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 217, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "98", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2188"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce32a50a383e087a5262f905b375c15b1ab3be847581ee0267e3a983466a807d", "phash": "ad33b51bc39a0d29", "dhash": "0e0ef645d33337c6", "phash_int": -5.966225950485378e+18, "collected_at": "2026-05-22T04:29:22.345416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0040.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0040.JPG", "file_name": "IMG_0040.JPG", "file_stem": "IMG_0040", "file_ext": ".jpg", "file_size": 1205286.0, "mtime": "2002-09-23T06:48:10+00:00", "mtime_ts": 1032763690.0, "ctime": "2002-09-23T06:48:10+00:00", "sha256_file": "0888844d0cbd1110ac9413093677e0b7e6c43aca9d555de192cb376efb77f1e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:48:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7819", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:48:12", "EXIF DateTimeDigitized": "2002:09:23 07:48:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fceb9ae2daafc757c5d2f77b131a5c16a52dcd4c9d40a2b5816fb672fd4b9fce", "phash": "a78ad1ce33e01e63", "dhash": "ac5657544e67c61e", "phash_int": -6.374051639025721e+18, "collected_at": "2026-05-22T04:29:22.414844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0041.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0041.JPG", "file_name": "IMG_0041.JPG", "file_stem": "IMG_0041", "file_ext": ".jpg", "file_size": 1235116.0, "mtime": "2002-09-23T06:48:16+00:00", "mtime_ts": 1032763696.0, "ctime": "2002-09-23T06:48:16+00:00", "sha256_file": "3120b7333c37e7477d4c2b21370ea8f99da449b63dc011d3419969d809688c5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:48:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7937", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:48:17", "EXIF DateTimeDigitized": "2002:09:23 07:48:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "615b553211a4e1308399846d934681af42bbfe0422533a3c7a193bfa1822e2c7", "phash": "a7a6d0dab1c01ee5", "dhash": "ad4e46df5b71c11a", "phash_int": -6.366171385538011e+18, "collected_at": "2026-05-22T04:29:22.453902+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0044.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0044.JPG", "file_name": "IMG_0044.JPG", "file_stem": "IMG_0044", "file_ext": ".jpg", "file_size": 1194758.0, "mtime": "2002-09-23T06:48:42+00:00", "mtime_ts": 1032763722.0, "ctime": "2002-09-23T06:48:42+00:00", "sha256_file": "f85c9cc0593a48ab82d8af6cbe2003ce1eee84b3d04d5133a82b8cd292cef888", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:48:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6807", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:48:44", "EXIF DateTimeDigitized": "2002:09:23 07:48:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "557/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[58, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2785"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87b990fea57b43151348866877bd341e1180722e0817f81d5e568185b240e123", "phash": "ac89e319751d8b74", "dhash": "62a276761632266e", "phash_int": -6.014026128898029e+18, "collected_at": "2026-05-22T04:29:22.519998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0045.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0045.JPG", "file_name": "IMG_0045.JPG", "file_stem": "IMG_0045", "file_ext": ".jpg", "file_size": 1251217.0, "mtime": "2002-09-23T06:48:54+00:00", "mtime_ts": 1032763734.0, "ctime": "2002-09-23T06:48:54+00:00", "sha256_file": "1f22d36e04c643676659103e8173cd9c82552f14534369da9add43306cb06f72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:48:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7035", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:48:55", "EXIF DateTimeDigitized": "2002:09:23 07:48:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "94", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5403085ed48013bd72c1500ac820e0dbb6af3c006879f31c82513763af3d248f", "phash": "91e1e72e4d1b3187", "dhash": "da9c9ab2b4bd5ce8", "phash_int": -7.934806882401964e+18, "collected_at": "2026-05-22T04:29:22.538000+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0047.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0047.JPG", "file_name": "IMG_0047.JPG", "file_stem": "IMG_0047", "file_ext": ".jpg", "file_size": 1249019.0, "mtime": "2002-09-23T06:49:18+00:00", "mtime_ts": 1032763758.0, "ctime": "2002-09-23T06:49:18+00:00", "sha256_file": "77d9351bde3aea978cf14bb88d7baedcd84be0d3b90f07e7ef25afd3c4257367", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:49:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7271", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:49:20", "EXIF DateTimeDigitized": "2002:09:23 07:49:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "99/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[93, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3960"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "303204fbec2aa21a2e29dd7e2f948df5ce08e1afb55af9808ee0d2110dc77fc6", "phash": "8bb7cc3f8a178132", "dhash": "6767ce6b297931a3", "phash_int": -8.379004008427717e+18, "collected_at": "2026-05-22T04:29:22.633006+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0046.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0046.JPG", "file_name": "IMG_0046.JPG", "file_stem": "IMG_0046", "file_ext": ".jpg", "file_size": 1218449.0, "mtime": "2002-09-23T06:49:10+00:00", "mtime_ts": 1032763750.0, "ctime": "2002-09-23T06:49:10+00:00", "sha256_file": "513811c531a73e306894a44737c51773033c3f962c509d8e1908c0ecbe873eaa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:49:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6234", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:49:11", "EXIF DateTimeDigitized": "2002:09:23 07:49:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b98b5af746050de66dc6814f0be596d1d141af97602e56f8a7da5433bfdeecb", "phash": "81bb5e214dd576c2", "dhash": "d2d5f4ead3d7ace0", "phash_int": -9.098575125039188e+18, "collected_at": "2026-05-22T04:29:22.645003+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0048.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0048.JPG", "file_name": "IMG_0048.JPG", "file_stem": "IMG_0048", "file_ext": ".jpg", "file_size": 1138902.0, "mtime": "2002-09-23T06:49:30+00:00", "mtime_ts": 1032763770.0, "ctime": "2002-09-23T06:49:30+00:00", "sha256_file": "fc0f578c1fd1d9462d204003cdd493876b3349c40ada029742dab5bc2eccc772", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:49:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:49:31", "EXIF DateTimeDigitized": "2002:09:23 07:49:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1089/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 209, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "97", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2178"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f6ab6cdb2e502b7a0932ba7ebd146ba0133eb8b09c27572b0616536eea4c6b8", "phash": "d54eb96926e258c6", "dhash": "527070c5c692961c", "phash_int": -3.0763176341723976e+18, "collected_at": "2026-05-22T04:29:22.734137+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0049.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0049.JPG", "file_name": "IMG_0049.JPG", "file_stem": "IMG_0049", "file_ext": ".jpg", "file_size": 1248331.0, "mtime": "2002-09-23T06:50:40+00:00", "mtime_ts": 1032763840.0, "ctime": "2002-09-23T06:50:40+00:00", "sha256_file": "a0b38bcee8134a2d79aafac328f28d51f846df2c81054b7941c71ea19257f6ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:50:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7771", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:50:41", "EXIF DateTimeDigitized": "2002:09:23 07:50:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "897a448f184461e97998b055604939123bb881f688ae7a90e6c6c5887bbcce91", "phash": "a19cc6c1f40f9967", "dhash": "aab5793e07f3cb8c", "phash_int": -6.801342800910641e+18, "collected_at": "2026-05-22T04:29:22.748191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0050.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0050.JPG", "file_name": "IMG_0050.JPG", "file_stem": "IMG_0050", "file_ext": ".jpg", "file_size": 1182440.0, "mtime": "2002-09-23T06:51:12+00:00", "mtime_ts": 1032763872.0, "ctime": "2002-09-23T06:51:12+00:00", "sha256_file": "aeea9b5a0281424d6eb26435b09c9590e19506fc87d0b0122338e0a62452b9c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:51:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7422", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:51:14", "EXIF DateTimeDigitized": "2002:09:23 07:51:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2993/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2993"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "218e6cd2c8acd741bb3701ca05622031523872e5cb7106fbf38b5120ecc198b9", "phash": "97b9e84ab163906d", "dhash": "1b715c5c746d49cd", "phash_int": -7.513719095789646e+18, "collected_at": "2026-05-22T04:29:22.879353+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0051.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0051.JPG", "file_name": "IMG_0051.JPG", "file_stem": "IMG_0051", "file_ext": ".jpg", "file_size": 1216862.0, "mtime": "2002-09-23T06:51:32+00:00", "mtime_ts": 1032763892.0, "ctime": "2002-09-23T06:51:32+00:00", "sha256_file": "ffbd7cb4ad34c18d34514a6cfddad7f4ea15050603f99a8615b5a8827b13ffad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:51:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6738", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:51:34", "EXIF DateTimeDigitized": "2002:09:23 07:51:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "397/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 214, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "103", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3970"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01b9a1bb7aee6cad468cce8d87e85632a139d2e1e9bc74763a22c2650294376f", "phash": "a79ccb1a321f8c72", "dhash": "22e2667444764b4b", "phash_int": -6.368992459638207e+18, "collected_at": "2026-05-22T04:29:22.911943+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0052.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0052.JPG", "file_name": "IMG_0052.JPG", "file_stem": "IMG_0052", "file_ext": ".jpg", "file_size": 1097770.0, "mtime": "2002-09-23T06:51:48+00:00", "mtime_ts": 1032763908.0, "ctime": "2002-09-23T06:51:48+00:00", "sha256_file": "8fe5ca3fde7d99bb3d275556f05a4aa8ed6309f8c786bbf2e77b017ddeb32345", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:51:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6479", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:51:50", "EXIF DateTimeDigitized": "2002:09:23 07:51:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1317/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2634"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06c0f2bd4b780713f7f1e81295e2ab3fa5efb809d6a3d6a3ff6f5557c73b07ed", "phash": "a1371cb56a8eb09b", "dhash": "4c5edbc3cb9ed0b1", "phash_int": -6.829958744381673e+18, "collected_at": "2026-05-22T04:29:22.958947+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0053.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0053.JPG", "file_name": "IMG_0053.JPG", "file_stem": "IMG_0053", "file_ext": ".jpg", "file_size": 1013808.0, "mtime": "2002-09-23T06:52:58+00:00", "mtime_ts": 1032763978.0, "ctime": "2002-09-23T06:52:58+00:00", "sha256_file": "296223f651a74ecde296a1b97dad6eff41246a2bab2971bd7bf52daf638a89b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:53:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:53:00", "EXIF DateTimeDigitized": "2002:09:23 07:53:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "903/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3612"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0d512d510fac938f39223bcbd678ef736caea6441729058e68fb76997c1ad77", "phash": "c1e59aba67ad9441", "dhash": "0ac8dad7db99d9d9", "phash_int": -4.4750005293286963e+18, "collected_at": "2026-05-22T04:29:22.983946+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0055.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0055.JPG", "file_name": "IMG_0055.JPG", "file_stem": "IMG_0055", "file_ext": ".jpg", "file_size": 1138593.0, "mtime": "2002-09-23T06:53:32+00:00", "mtime_ts": 1032764012.0, "ctime": "2002-09-23T06:53:32+00:00", "sha256_file": "12a025a375198809b902fbe345973611da33e81ca90ce581effa66b807c8dd63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:53:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6834", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:53:33", "EXIF DateTimeDigitized": "2002:09:23 07:53:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2231/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2231"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95880f4d744419f33fb3040cf1092d7f373da4c07bff164077d12f43fb086efe", "phash": "f819f2740d6e20be", "dhash": "1699f7f336860cb0", "phash_int": -5.691572976302078e+17, "collected_at": "2026-05-22T04:29:23.088953+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0056.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0056.JPG", "file_name": "IMG_0056.JPG", "file_stem": "IMG_0056", "file_ext": ".jpg", "file_size": 1143958.0, "mtime": "2002-09-23T06:53:42+00:00", "mtime_ts": 1032764022.0, "ctime": "2002-09-23T06:53:42+00:00", "sha256_file": "3ec39e9bc0cbada49548cc9ea52da531afc9bfc9151bd555ec3ab1ca3fd99733", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:53:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6929", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:53:43", "EXIF DateTimeDigitized": "2002:09:23 07:53:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1987/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1987"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4babb5bbe88400677a94b412d431f16ce3fe33187ecf9b823dac61d713fd6721", "phash": "f519f27a0d652a1a", "dhash": "1398dcf232948420", "phash_int": -7.853300539747753e+17, "collected_at": "2026-05-22T04:29:23.091952+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0058.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0058.JPG", "file_name": "IMG_0058.JPG", "file_stem": "IMG_0058", "file_ext": ".jpg", "file_size": 1175013.0, "mtime": "2002-09-23T06:54:06+00:00", "mtime_ts": 1032764046.0, "ctime": "2002-09-23T06:54:06+00:00", "sha256_file": "6eba8711ca4b15bce2b0eca9884ef5ba784366c3c55e715cb7d6385638450a84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:54:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6299", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:54:07", "EXIF DateTimeDigitized": "2002:09:23 07:54:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1263/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12630"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c1efe35fe2bb645f88aab298c499a5b2817a28ab3e767a428e9b179e177d4d3", "phash": "858eea1313faa4d6", "dhash": "f9f77752d47214ae", "phash_int": -8.822857252311752e+18, "collected_at": "2026-05-22T04:29:23.192084+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0057.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0057.JPG", "file_name": "IMG_0057.JPG", "file_stem": "IMG_0057", "file_ext": ".jpg", "file_size": 1111373.0, "mtime": "2002-09-23T06:53:56+00:00", "mtime_ts": 1032764036.0, "ctime": "2002-09-23T06:53:56+00:00", "sha256_file": "1f07fc5b8bcc9273e47671817d7a85798a98104bef9572834b341ba962c8715a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:53:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6535", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:53:58", "EXIF DateTimeDigitized": "2002:09:23 07:53:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "622/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "81", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4976"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33a009e28a5f1495d662d2cd2d0980c49f182cc27696a1cf516510c50e8b1880", "phash": "9acdd6296e11e0d5", "dhash": "c0c0183173bb5c2d", "phash_int": -7.291936748214297e+18, "collected_at": "2026-05-22T04:29:23.208085+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0059.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0059.JPG", "file_name": "IMG_0059.JPG", "file_stem": "IMG_0059", "file_ext": ".jpg", "file_size": 1145417.0, "mtime": "2002-09-23T06:54:12+00:00", "mtime_ts": 1032764052.0, "ctime": "2002-09-23T06:54:12+00:00", "sha256_file": "29c0280048a15ef1fc8683598a78b76164d429fbad3705ed003d7d3f30ca16b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:54:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6547", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:54:13", "EXIF DateTimeDigitized": "2002:09:23 07:54:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "deb3f5d2f542a61b4125f1ad823416dc2b0cec3772198db3d4c627caf514075a", "phash": "dbd4e0370837d2c5", "dhash": "c2e0883332484eb3", "phash_int": -2.6062117573749755e+18, "collected_at": "2026-05-22T04:29:23.251233+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0060.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0060.JPG", "file_name": "IMG_0060.JPG", "file_stem": "IMG_0060", "file_ext": ".jpg", "file_size": 1226003.0, "mtime": "2002-09-23T06:54:36+00:00", "mtime_ts": 1032764076.0, "ctime": "2002-09-23T06:54:36+00:00", "sha256_file": "1b8642c0720a0513faa2b208ca89961a9c7af09681b23f7ea36528f4d2dbe6f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:54:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7818", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:54:37", "EXIF DateTimeDigitized": "2002:09:23 07:54:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4907/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[89, 178, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4907"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a5d0b09b06c4fcda420718ffab5f8c191d94b42a7c47dcda550e9a8f6da77e6", "phash": "f073745f1b2d9430", "dhash": "5d04a6d329362694", "phash_int": -1.1204239304584346e+18, "collected_at": "2026-05-22T04:29:23.301272+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0061.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0061.JPG", "file_name": "IMG_0061.JPG", "file_stem": "IMG_0061", "file_ext": ".jpg", "file_size": 1252183.0, "mtime": "2002-09-23T06:55:14+00:00", "mtime_ts": 1032764114.0, "ctime": "2002-09-23T06:55:14+00:00", "sha256_file": "3008bfd5fb7906cae0effa9e653df585ca3e59f17903cfc02f10dcd0868fb1f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:55:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8460", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:55:16", "EXIF DateTimeDigitized": "2002:09:23 07:55:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4907/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[68, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "81", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4907"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db25b5d89ae2b2f569d78c1e9fae8964adcac967ca5bc526f66fe04939c39212", "phash": "ff593689a9869541", "dhash": "783a4c22d3746c2e", "phash_int": -4.694635622809056e+16, "collected_at": "2026-05-22T04:29:23.351274+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0064.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0064.JPG", "file_name": "IMG_0064.JPG", "file_stem": "IMG_0064", "file_ext": ".jpg", "file_size": 1100894.0, "mtime": "2002-09-23T06:58:04+00:00", "mtime_ts": 1032764284.0, "ctime": "2002-09-23T06:58:04+00:00", "sha256_file": "7bbbec873651a9846e14d864a7c92808e6f8ce117a675aa161f01cf5f7dfbbcc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:58:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7245", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:58:06", "EXIF DateTimeDigitized": "2002:09:23 07:58:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[105, 161, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e8baa7d070f4ff3e06aca61c763ab9e556c63a0fd41e4c8252de0e0635c774f", "phash": "def588c13e3e20c9", "dhash": "e6c2342419d17161", "phash_int": -2.3808464644411146e+18, "collected_at": "2026-05-22T04:29:23.415091+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0063.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0063.JPG", "file_name": "IMG_0063.JPG", "file_stem": "IMG_0063", "file_ext": ".jpg", "file_size": 1552367.0, "mtime": "2002-09-23T06:56:32+00:00", "mtime_ts": 1032764192.0, "ctime": "2002-09-23T06:56:32+00:00", "sha256_file": "7804f6bd244f2022cdf696dea3b7fed5bc8e00b5b906f421fbd4598424d2c9bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:56:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:56:34", "EXIF DateTimeDigitized": "2002:09:23 07:56:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92e4ade120d03703e13cf8a87c6c9f51e29ecb327896010b59a3336f185be5ec", "phash": "d3d887047a7db1c2", "dhash": "e0c01923a9d65369", "phash_int": -3.1816446834325786e+18, "collected_at": "2026-05-22T04:29:23.418088+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0066.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0066.JPG", "file_name": "IMG_0066.JPG", "file_stem": "IMG_0066", "file_ext": ".jpg", "file_size": 1254112.0, "mtime": "2002-09-23T07:06:00+00:00", "mtime_ts": 1032764760.0, "ctime": "2002-09-23T07:06:00+00:00", "sha256_file": "a2588017f73e31df7420017800323c4619a72a96213e07c9a46497cecfd1e82b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:06:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6966", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:06:02", "EXIF DateTimeDigitized": "2002:09:23 08:06:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "378a5ee721ea3626b63e15e5274be6ffe5fc181b766719fba7fbaba91ef6de88", "phash": "f4c3fb93407c1d22", "dhash": "83c322a6cd1825a7", "phash_int": -8.095268981359173e+17, "collected_at": "2026-05-22T04:29:23.514444+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0065.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0065.JPG", "file_name": "IMG_0065.JPG", "file_stem": "IMG_0065", "file_ext": ".jpg", "file_size": 1185299.0, "mtime": "2002-09-23T07:02:10+00:00", "mtime_ts": 1032764530.0, "ctime": "2002-09-23T07:02:10+00:00", "sha256_file": "eaf4477676d77a0d406ed821dd03f468a524138e49db934c4df2dbf5e53861ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:02:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6252", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:02:11", "EXIF DateTimeDigitized": "2002:09:23 08:02:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2b29752c06d1c21a1c2e7de104ac6a78284bbca8c6a528d38afea72128f162d", "phash": "ff9e800d6b304997", "dhash": "4060645942130c5b", "phash_int": -2.744375259638743e+16, "collected_at": "2026-05-22T04:29:23.517447+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0068.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0068.JPG", "file_name": "IMG_0068.JPG", "file_stem": "IMG_0068", "file_ext": ".jpg", "file_size": 1232373.0, "mtime": "2002-09-23T07:07:26+00:00", "mtime_ts": 1032764846.0, "ctime": "2002-09-23T07:07:26+00:00", "sha256_file": "9efd9846b9a432aa8abae983cfe6b7762480cfbabdfb7092819e18dfa004cdb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:07:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6763", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:07:28", "EXIF DateTimeDigitized": "2002:09:23 08:07:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b432269c1e1c892e2f7dfc494e2a8a05499fe6bb44be70f57cb40eb70412931", "phash": "92e5a959230ef0eb", "dhash": "9f8e266d5db8e195", "phash_int": -7.861691374199968e+18, "collected_at": "2026-05-22T04:29:23.811538+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0070.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0070.JPG", "file_name": "IMG_0070.JPG", "file_stem": "IMG_0070", "file_ext": ".jpg", "file_size": 1254534.0, "mtime": "2002-09-23T07:10:42+00:00", "mtime_ts": 1032765042.0, "ctime": "2002-09-23T07:10:42+00:00", "sha256_file": "f0a5aa6773ded6e1eb37ab4a3b81773c8919ae965d24a45db9acea86d15d8bd5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:10:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7121", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:10:43", "EXIF DateTimeDigitized": "2002:09:23 08:10:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8927ed8220b6406cb64e91d63616917704a8eda51c3b0af2596fb69e53a16e06", "phash": "bea4c6384f322ad9", "dhash": "8e86652533293d61", "phash_int": -4.70942136517354e+18, "collected_at": "2026-05-22T04:29:24.317642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0067.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0067.JPG", "file_name": "IMG_0067.JPG", "file_stem": "IMG_0067", "file_ext": ".jpg", "file_size": 1133801.0, "mtime": "2002-09-23T07:07:02+00:00", "mtime_ts": 1032764822.0, "ctime": "2002-09-23T07:07:02+00:00", "sha256_file": "5e45f4f5bd01d0d59566f821dc2839c58a4becf20d45bf5c059a89243b1e5e47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:07:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6578", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:07:03", "EXIF DateTimeDigitized": "2002:09:23 08:07:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 223, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a2e70a503ceee72c8e8660b786837cfca0500f4588f6ccafff849739925f126", "phash": "c439cbf695c88d70", "dhash": "93ddd1d48ce4a463", "phash_int": -4.3071873086678267e+18, "collected_at": "2026-05-22T04:29:24.324642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0071.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0071.JPG", "file_name": "IMG_0071.JPG", "file_stem": "IMG_0071", "file_ext": ".jpg", "file_size": 1241827.0, "mtime": "2002-09-23T07:11:34+00:00", "mtime_ts": 1032765094.0, "ctime": "2002-09-23T07:11:34+00:00", "sha256_file": "d9738f94c18b5e055e6bb40928542dafdf7dc748225f5b608af91880a43be44c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:11:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7243", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:11:36", "EXIF DateTimeDigitized": "2002:09:23 08:11:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2647fdaffc6b667d9812f02288122ae715b068acdb754f3ba2186f2d814f53ba", "phash": "b0aad52b2206fdec", "dhash": "8e8e27cd9532a496", "phash_int": -5.71652239576223e+18, "collected_at": "2026-05-22T04:29:24.458648+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0072.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0072.JPG", "file_name": "IMG_0072.JPG", "file_stem": "IMG_0072", "file_ext": ".jpg", "file_size": 1268260.0, "mtime": "2002-09-23T07:13:06+00:00", "mtime_ts": 1032765186.0, "ctime": "2002-09-23T07:13:06+00:00", "sha256_file": "88690aacc545bc4f98b58fe533a56c7bf9eb9f1b860367dfbc7ccc8aa9c76b55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:13:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7584", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:13:07", "EXIF DateTimeDigitized": "2002:09:23 08:13:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1847/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[45, 219, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3694"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12d31373645c9231b5337f2a6eb3fd5efd893ce32890748e635bf18f5ca01b5f", "phash": "a830bec367cd856a", "dhash": "8ebfb7d68be3b375", "phash_int": -6.327347729986125e+18, "collected_at": "2026-05-22T04:29:24.469649+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0004.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0004.JPG", "file_name": "Re-exposure of IMG_0004.JPG", "file_stem": "Re-exposure of IMG_0004", "file_ext": ".jpg", "file_size": 207274.0, "mtime": "2002-09-23T06:32:04+00:00", "mtime_ts": 1032762724.0, "ctime": "2002-09-23T06:32:04+00:00", "sha256_file": "415df4a822b2c6274a8813fb02411a25329c178aae3910d729adb8d0b4915b21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:32:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:32:06", "EXIF DateTimeDigitized": "2002:09:23 07:32:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13723/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "44", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "97ddaec85d4137e9c13cbd833c247165fb121afbbc8143734e4d2a471fb4c521", "phash": "b2d03ff0ce6e100f", "dhash": "0c1dadadad9dcd6d", "phash_int": -5.561875236314542e+18, "collected_at": "2026-05-22T04:29:24.575214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\IMG_0073.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\IMG_0073.JPG", "file_name": "IMG_0073.JPG", "file_stem": "IMG_0073", "file_ext": ".jpg", "file_size": 1191379.0, "mtime": "2002-09-23T07:13:20+00:00", "mtime_ts": 1032765200.0, "ctime": "2002-09-23T07:13:20+00:00", "sha256_file": "785a3c5d0eefc1b5c5283a4050f99618d7a986260503d3bf5121e7378c14021e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:13:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7501", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:13:22", "EXIF DateTimeDigitized": "2002:09:23 08:13:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c47452dd772fe4400bd4658ca348ebfa85ce58d9d88c9d83fb82f81363952f9e", "phash": "ad52f1a9cb92886b", "dhash": "d8e4746cf3b707c7", "phash_int": -5.9574336454906e+18, "collected_at": "2026-05-22T04:29:24.598216+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0005.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0005.JPG", "file_name": "Re-exposure of IMG_0005.JPG", "file_stem": "Re-exposure of IMG_0005", "file_ext": ".jpg", "file_size": 195767.0, "mtime": "2002-09-23T06:32:10+00:00", "mtime_ts": 1032762730.0, "ctime": "2002-09-23T06:32:10+00:00", "sha256_file": "15d74cb321beeab306bdde16f015b84db204f36b5a26760ab3ee7760170f0129", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:32:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:32:11", "EXIF DateTimeDigitized": "2002:09:23 07:32:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3013/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "49", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "341f5f3c3782ab15a3b06bcf363d5f0afc75ae86a6e68aca0c36c94496e634e7", "phash": "b2da3ff0ce22102f", "dhash": "1d19adadad8dcd6d", "phash_int": -5.559060486552416e+18, "collected_at": "2026-05-22T04:29:24.640305+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0007.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0007.JPG", "file_name": "Re-exposure of IMG_0007.JPG", "file_stem": "Re-exposure of IMG_0007", "file_ext": ".jpg", "file_size": 253641.0, "mtime": "2002-09-23T06:33:54+00:00", "mtime_ts": 1032762834.0, "ctime": "2002-09-23T06:33:54+00:00", "sha256_file": "8d2b53bb5d0b3b9d392f47f56927f87cae7003d6660fd08c35db188d02574d77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:33:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:33:56", "EXIF DateTimeDigitized": "2002:09:23 07:33:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3199/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "28", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "38fd2ae5c85fb52eea573bfb226462e47992349016bf059be4f46205ec74e1d6", "phash": "85f4653fbf011685", "dhash": "a686a6a22d78d2d2", "phash_int": -8.794292847885871e+18, "collected_at": "2026-05-22T04:29:24.691309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0011.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0011.JPG", "file_name": "Re-exposure of IMG_0011.JPG", "file_stem": "Re-exposure of IMG_0011", "file_ext": ".jpg", "file_size": 269830.0, "mtime": "2002-09-23T06:39:34+00:00", "mtime_ts": 1032763174.0, "ctime": "2002-09-23T06:39:34+00:00", "sha256_file": "732fad9fbe256f8de3896d029b13c77b257a1e841d7d9b2885d29c9331087cef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:39:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:39:35", "EXIF DateTimeDigitized": "2002:09:23 07:39:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "58", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d43b05651d5b5cd0007282aaa796ac17d32ebba75a14b1144ce18fb80417dc6d", "phash": "f6a08e5a3385c95e", "dhash": "e5a505441c586078", "phash_int": -6.753834260429677e+17, "collected_at": "2026-05-22T04:29:24.713308+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0012.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0012.JPG", "file_name": "Re-exposure of IMG_0012.JPG", "file_stem": "Re-exposure of IMG_0012", "file_ext": ".jpg", "file_size": 272203.0, "mtime": "2002-09-23T06:39:38+00:00", "mtime_ts": 1032763178.0, "ctime": "2002-09-23T06:39:38+00:00", "sha256_file": "8d3d7772bca82dff6a5143fe9bc77313e23daf9d430f5e695b73e2dd798ca93e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:39:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:39:40", "EXIF DateTimeDigitized": "2002:09:23 07:39:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "47", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54c151d77f46bb7cd2177776bf78e6aa3b1aa944481fa96fc3ce2ee7ecfe2003", "phash": "d5d12a6fa64ab621", "dhash": "d0929292d2707129", "phash_int": -3.0396016144787236e+18, "collected_at": "2026-05-22T04:29:24.729310+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0015.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0015.JPG", "file_name": "Re-exposure of IMG_0015.JPG", "file_stem": "Re-exposure of IMG_0015", "file_ext": ".jpg", "file_size": 627068.0, "mtime": "2002-09-23T06:39:58+00:00", "mtime_ts": 1032763198.0, "ctime": "2002-09-23T06:39:58+00:00", "sha256_file": "dd1ee16c9e661ace745fc1d19e00dba94313bbbd08403701948dcb10c4f3991b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:40:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:40:00", "EXIF DateTimeDigitized": "2002:09:23 07:40:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "40", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "283a203dbe5e2ba3bcb0d1e5cb443160ff41b1d6150169a6abe41e7da3e2ee62", "phash": "91ba07159e597a66", "dhash": "9ede95b8b292d2e2", "phash_int": -7.946030803109447e+18, "collected_at": "2026-05-22T04:29:24.780771+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0016.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0016.JPG", "file_name": "Re-exposure of IMG_0016.JPG", "file_stem": "Re-exposure of IMG_0016", "file_ext": ".jpg", "file_size": 419388.0, "mtime": "2002-09-23T06:40:12+00:00", "mtime_ts": 1032763212.0, "ctime": "2002-09-23T06:40:12+00:00", "sha256_file": "deda2fe56424b5b25bd83115c79266ded24ee98a0865dbf93a80dbf245b57aff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:40:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:40:13", "EXIF DateTimeDigitized": "2002:09:23 07:40:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "39/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "18", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fbed661798ed6c7a0631cf6c240eefb5f58db5998c3ece0051164fb991b5a394", "phash": "976cf987c6c01593", "dhash": "25337b6d6c6cdc5c", "phash_int": -7.535373714947304e+18, "collected_at": "2026-05-22T04:29:24.822846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0027.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0027.JPG", "file_name": "Re-exposure of IMG_0027.JPG", "file_stem": "Re-exposure of IMG_0027", "file_ext": ".jpg", "file_size": 415250.0, "mtime": "2002-09-23T06:43:56+00:00", "mtime_ts": 1032763436.0, "ctime": "2002-09-23T06:43:56+00:00", "sha256_file": "0ef9baa982fd4337ec62b8cfdc0b0430d400da9ff455561207821fc0eb22f7c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:43:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:43:58", "EXIF DateTimeDigitized": "2002:09:23 07:43:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "61", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce669199b7987054f7785b406f96bc9f75eafad893b1adb456d3b76e0a0b9606", "phash": "84e31b453c9b65b6", "dhash": "fcfdffffa6f6fcfe", "phash_int": -8.871216856806235e+18, "collected_at": "2026-05-22T04:29:24.827846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0030.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0030.JPG", "file_name": "Re-exposure of IMG_0030.JPG", "file_stem": "Re-exposure of IMG_0030", "file_ext": ".jpg", "file_size": 437303.0, "mtime": "2002-09-23T06:45:52+00:00", "mtime_ts": 1032763552.0, "ctime": "2002-09-23T06:45:52+00:00", "sha256_file": "fe85642ebd7183ff664b043d8e15af4c53a05561900d156be646c4d7e4c822bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:45:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:45:53", "EXIF DateTimeDigitized": "2002:09:23 07:45:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "62", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91bd9ddaebdb86091b86ba97bddfd7f0a9a238dcadf750ce95bf820e2a874f5d", "phash": "84a1da78130f73fc", "dhash": "eeeee6eed67774f4", "phash_int": -8.889583980201938e+18, "collected_at": "2026-05-22T04:29:24.898849+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0031.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0031.JPG", "file_name": "Re-exposure of IMG_0031.JPG", "file_stem": "Re-exposure of IMG_0031", "file_ext": ".jpg", "file_size": 444543.0, "mtime": "2002-09-23T06:46:04+00:00", "mtime_ts": 1032763564.0, "ctime": "2002-09-23T06:46:04+00:00", "sha256_file": "8ba8dfe48b101b395ff15e3c5c1602b0a5b8de5fb1c0ac98bada163afd2af257", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:46:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:46:05", "EXIF DateTimeDigitized": "2002:09:23 07:46:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "59", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7453a8e989009ebba855d58cd8d54604f7597869f6c57477d8bdd09c2ba2307f", "phash": "c1b29431676ebb91", "dhash": "98b88b871a1af0f2", "phash_int": -4.4893629386253445e+18, "collected_at": "2026-05-22T04:29:24.919853+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0035.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0035.JPG", "file_name": "Re-exposure of IMG_0035.JPG", "file_stem": "Re-exposure of IMG_0035", "file_ext": ".jpg", "file_size": 628534.0, "mtime": "2002-09-23T06:47:04+00:00", "mtime_ts": 1032763624.0, "ctime": "2002-09-23T06:47:04+00:00", "sha256_file": "e464b71679ef944d8e89f98017f0e7719edb041eee9b5354182878eed85f79ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:47:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:47:05", "EXIF DateTimeDigitized": "2002:09:23 07:47:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "561/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "51", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dbb0cf65dfce9ed3ba093c2b335062c0b8919edb4b4654a0b7a143549851b596", "phash": "e484e91e729f8b32", "dhash": "66e6e6d50d331d8b", "phash_int": -1.9802016191548265e+18, "collected_at": "2026-05-22T04:29:24.970855+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0034.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0034.JPG", "file_name": "Re-exposure of IMG_0034.JPG", "file_stem": "Re-exposure of IMG_0034", "file_ext": ".jpg", "file_size": 564033.0, "mtime": "2002-09-23T06:46:44+00:00", "mtime_ts": 1032763604.0, "ctime": "2002-09-23T06:46:44+00:00", "sha256_file": "23b6d065c84fe749975d7bdc15c912e80564167bc0f517d6f5088897c4f0453c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:46:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:46:45", "EXIF DateTimeDigitized": "2002:09:23 07:46:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2969/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "61", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a46ead18eb8f9d54be44a3bfcb741b9a1c2ba598c5abcf9187503ca9ca6a88a0", "phash": "b3c4e6c94d1c2a1f", "dhash": "e0c8bbbababb5848", "phash_int": -5.493011893228656e+18, "collected_at": "2026-05-22T04:29:24.973854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0038.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0038.JPG", "file_name": "Re-exposure of IMG_0038.JPG", "file_stem": "Re-exposure of IMG_0038", "file_ext": ".jpg", "file_size": 637590.0, "mtime": "2002-09-23T06:47:32+00:00", "mtime_ts": 1032763652.0, "ctime": "2002-09-23T06:47:32+00:00", "sha256_file": "fd3908b74848abd543a9cf1b8502c230e65cd21a30eee115c83a612dfe4af4f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:47:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:47:34", "EXIF DateTimeDigitized": "2002:09:23 07:47:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "18", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e357935dfc08e9766f57ed9a4040b470fe7ecc7d8fbde2ae744bf85b18d3f258", "phash": "81e49f604d1d76d9", "dhash": "d2d5e4ead38dfa78", "phash_int": -9.086962912167365e+18, "collected_at": "2026-05-22T04:29:25.080944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0039.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0039.JPG", "file_name": "Re-exposure of IMG_0039.JPG", "file_stem": "Re-exposure of IMG_0039", "file_ext": ".jpg", "file_size": 597862.0, "mtime": "2002-09-23T06:47:44+00:00", "mtime_ts": 1032763664.0, "ctime": "2002-09-23T06:47:44+00:00", "sha256_file": "b655ccf2f62a63da8d154c232640206ce7e5d6b5471e77546397be534ef93f6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:47:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:47:45", "EXIF DateTimeDigitized": "2002:09:23 07:47:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "26", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b9111a467085ca91d50d095c2b03e702d52a26c72c39e4a8b739e9742d8f69d", "phash": "8ff5f2c130cce04b", "dhash": "d46a73f65feb636f", "phash_int": -8.073279845430403e+18, "collected_at": "2026-05-22T04:29:25.087369+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0063.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0063.JPG", "file_name": "Re-exposure of IMG_0063.JPG", "file_stem": "Re-exposure of IMG_0063", "file_ext": ".jpg", "file_size": 469625.0, "mtime": "2002-09-23T06:56:32+00:00", "mtime_ts": 1032764192.0, "ctime": "2002-09-23T06:56:32+00:00", "sha256_file": "330fa5be01d681ba20cdf9915cb2420a1ed110d1bf7229198ef13ae79380d892", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:56:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:56:34", "EXIF DateTimeDigitized": "2002:09:23 07:56:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "50", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b624282c4cbb3a37ae333754a377d7343705bedb575ef7daa43bcd823405de4f", "phash": "d3c887047a7db5c2", "dhash": "c0c01933a9965369", "phash_int": -3.186148283059948e+18, "collected_at": "2026-05-22T04:29:25.246423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0062.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0062.JPG", "file_name": "Re-exposure of IMG_0062.JPG", "file_stem": "Re-exposure of IMG_0062", "file_ext": ".jpg", "file_size": 2035278.0, "mtime": "2002-09-23T11:05:40+00:00", "mtime_ts": 1032779140.0, "ctime": "2002-09-23T11:05:40+00:00", "sha256_file": "7ad83cf34cc377c8d7778efa2669aa699158ff2747108016a498b9f90bbc16d0", "exif": {"Image Tag 0x000B": "ACD Systems Digital Imaging", "Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "224", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:55:26", "EXIF DateTimeDigitized": "2002:09:23 07:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "607/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "0", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Unknown", "MakerNote Saturation": "Unknown", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Unknown", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Unknown", "MakerNote LensType": "Canon EF-S 55-250mm f/4-5.6 IS", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "371df0e94427de33989d675c3434e1c94b3e57b324adbdb449d148e7edc2b3af", "phash": "9bf4ee4f0a023574", "dhash": "c028dcd9595bd959", "phash_int": -7.208875080275578e+18, "collected_at": "2026-05-22T04:29:25.273423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0067.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of IMG_0067.JPG", "file_name": "Re-exposure of IMG_0067.JPG", "file_stem": "Re-exposure of IMG_0067", "file_ext": ".jpg", "file_size": 522208.0, "mtime": "2002-09-23T07:07:02+00:00", "mtime_ts": 1032764822.0, "ctime": "2002-09-23T07:07:02+00:00", "sha256_file": "da8a829eace6b3f72eaa24cb36d9481c15003d8367d1f606a2763d2f13b30afa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:07:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:07:03", "EXIF DateTimeDigitized": "2002:09:23 08:07:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "40", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a288ee573ecaecdcf2a841c6e5bc545c1213941f9260a8b5b355e724f90d976", "phash": "8439cbf695c88df0", "dhash": "93ddd1d48ce4a463", "phash_int": -8.918873327095215e+18, "collected_at": "2026-05-22T04:29:25.363435+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of Rotation of IMG_0029.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of Rotation of IMG_0029.JPG", "file_name": "Re-exposure of Rotation of IMG_0029.JPG", "file_stem": "Re-exposure of Rotation of IMG_0029", "file_ext": ".jpg", "file_size": 505879.0, "mtime": "2002-09-23T06:44:30+00:00", "mtime_ts": 1032763470.0, "ctime": "2002-09-23T06:44:30+00:00", "sha256_file": "a37ad6b4338c4b6d84905ad1400e7a184527e4a51adb32f5006f204bb93c0e99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:44:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:44:31", "EXIF DateTimeDigitized": "2002:09:23 07:44:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "44", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0ce4726a1f8a1d75c663a5d125ef5cf7bae627c92c7e1b403fc26982af94f65f", "phash": "edf0120d8adf7509", "dhash": "3217162333123273", "phash_int": -1.3015204429362982e+18, "collected_at": "2026-05-22T04:29:25.372426+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of Rotation of IMG_0042.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Re-exposure of Rotation of IMG_0042.JPG", "file_name": "Re-exposure of Rotation of IMG_0042.JPG", "file_stem": "Re-exposure of Rotation of IMG_0042", "file_ext": ".jpg", "file_size": 606549.0, "mtime": "2002-09-23T06:48:22+00:00", "mtime_ts": 1032763702.0, "ctime": "2002-09-23T06:48:22+00:00", "sha256_file": "88990ecb310161a684be02c2e9cf3e36e042a5235d5769ec58a1b9ec777b3fe0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:48:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:48:24", "EXIF DateTimeDigitized": "2002:09:23 07:48:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2443/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "35", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [0.0, 0.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a457c9bf4db7b1fa73befd5416cda0a025077ab4b8b1df6eea7201648ebfabe1", "phash": "ca48fc25c33789bc", "dhash": "b131b155736b2f38", "phash_int": -3.870566640605755e+18, "collected_at": "2026-05-22T04:29:25.435431+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0025.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0025.JPG", "file_name": "Rotation of IMG_0025.JPG", "file_stem": "Rotation of IMG_0025", "file_ext": ".jpg", "file_size": 1672682.0, "mtime": "2002-09-23T06:43:34+00:00", "mtime_ts": 1032763414.0, "ctime": "2002-09-23T06:43:34+00:00", "sha256_file": "2b5831f10363431b62cea2c182c9f4154f21b95eab7ee61213918a220aba6f24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:43:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4876", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:43:35", "EXIF DateTimeDigitized": "2002:09:23 07:43:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de65556da8016ecc2c2f0a3b15e7db257a4ecc8c81e6a695e712884455bd4af0", "phash": "fd32cb4698538639", "dhash": "20362e0e0e266363", "phash_int": -2.0187552921449107e+17, "collected_at": "2026-05-22T04:29:25.452429+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0026.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0026.JPG", "file_name": "Rotation of IMG_0026.JPG", "file_stem": "Rotation of IMG_0026", "file_ext": ".jpg", "file_size": 1428844.0, "mtime": "2002-09-23T06:43:46+00:00", "mtime_ts": 1032763426.0, "ctime": "2002-09-23T06:43:46+00:00", "sha256_file": "4ae038310586909fc967c09dff2652919a1721d76dbc8fcd6146a88c70f49263", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:43:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4116", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:43:48", "EXIF DateTimeDigitized": "2002:09:23 07:43:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "19", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7dad20b44c1fa17346f1493beeee50bb81792f288619fcb772d015862e8e9713", "phash": "ada01a65c656f98b", "dhash": "13330f0e0e0a4655", "phash_int": -5.935715284452706e+18, "collected_at": "2026-05-22T04:29:25.582986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0054.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0054.JPG", "file_name": "Rotation of IMG_0054.JPG", "file_stem": "Rotation of IMG_0054", "file_ext": ".jpg", "file_size": 969124.0, "mtime": "2002-09-23T06:53:08+00:00", "mtime_ts": 1032763988.0, "ctime": "2002-09-23T06:53:08+00:00", "sha256_file": "d4e2b4df736a4d5e1a2847cf68df9092e798af9967c658454edc2c7cc33d7dad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 07:53:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5452", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 07:53:09", "EXIF DateTimeDigitized": "2002:09:23 07:53:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "593/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2372"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2d394462ce557fd8ba27e72d269644582fc3b21f49ed46a766fa0c3182b2042", "phash": "e086c74c3d64fb4a", "dhash": "a6c79596b3968484", "phash_int": -2.267906232072996e+18, "collected_at": "2026-05-22T04:29:25.588119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0069.JPG", "file_path_relative": "HD02#FOTKY\\2002\\09\\09-23\\Rotation of IMG_0069.JPG", "file_name": "Rotation of IMG_0069.JPG", "file_stem": "Rotation of IMG_0069", "file_ext": ".jpg", "file_size": 1104686.0, "mtime": "2002-09-23T07:08:36+00:00", "mtime_ts": 1032764916.0, "ctime": "2002-09-23T07:08:36+00:00", "sha256_file": "dd8ca01f90baa8b8540d17db041c165b0d47109e7e36274dd7bfe160c85f327b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:23 08:08:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6168", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:23 08:08:38", "EXIF DateTimeDigitized": "2002:09:23 08:08:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2863/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 214, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5726"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91de16a3190d2b241379cb98fb664da09697b7bae5eb5cb45dcc7a50576f89cd", "phash": "e6d6898f54746718", "dhash": "60440484654b27d5", "phash_int": -1.8131105512798026e+18, "collected_at": "2026-05-22T04:29:25.745026+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 1515708.0, "mtime": "2002-10-02T12:54:00+00:00", "mtime_ts": 1033563240.0, "ctime": "2002-10-02T12:54:00+00:00", "sha256_file": "993b1ad653e5bff0491c46feef89095d47d72230e016bd9f082cb7060747e2d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 12:54:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5202", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 12:54:01", "EXIF DateTimeDigitized": "2002:10:02 12:54:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18a462a4100bcdc6d49177a1a7c592350077f50f347b6bc086817d79dded83a0", "phash": "dc3ac61c69933ac9", "dhash": "302489c1b334c0e0", "phash_int": -2.5775300113835474e+18, "collected_at": "2026-05-22T04:29:25.759024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 1850827.0, "mtime": "2002-10-02T12:54:08+00:00", "mtime_ts": 1033563248.0, "ctime": "2002-10-02T12:54:08+00:00", "sha256_file": "2dc4bedb33a1312d5fdee60e39e10587b4b64a7e57048cf5cad3b4efcd1b4e51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 12:54:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5423", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 12:54:10", "EXIF DateTimeDigitized": "2002:10:02 12:54:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "681/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1362"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dfa791c99d43e3d2228df2ae745728295ecc7ebb6589abf245910c6fd318249e", "phash": "84be7ad11fe17b00", "dhash": "2f67efc6c6c6c5e5", "phash_int": -8.881526376526415e+18, "collected_at": "2026-05-22T04:29:25.891302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 1754061.0, "mtime": "2002-10-02T12:54:20+00:00", "mtime_ts": 1033563260.0, "ctime": "2002-10-02T12:54:20+00:00", "sha256_file": "6064ba50303b3b65a5e0fc692c70444169ba1edd16cfe1b2b5ad6ff6840a71a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 12:54:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5176", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 12:54:22", "EXIF DateTimeDigitized": "2002:10:02 12:54:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "639/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1278"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a03dae7fd22184919c30bd57c63768e43ac2bb766b00d17bba7ff7a019d5a6c", "phash": "8627354d1925f5d5", "dhash": "2e6d64e5f0646030", "phash_int": -8.779990343284821e+18, "collected_at": "2026-05-22T04:29:25.897301+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 1798699.0, "mtime": "2002-10-02T12:54:34+00:00", "mtime_ts": 1033563274.0, "ctime": "2002-10-02T12:54:34+00:00", "sha256_file": "65e58cf1ab4a6f6e96412de6ee3cc14218bc67431f4c1be907ffcac3897e7b76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 12:54:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4964", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 12:54:36", "EXIF DateTimeDigitized": "2002:10:02 12:54:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "521/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2605"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae85bdf3b9fd1b56efa47f6bb210a3d4d716da80242050cc82424229b4d2e192", "phash": "c587f058a75fac42", "dhash": "42c26662e3b091a6", "phash_int": -4.2131346628259564e+18, "collected_at": "2026-05-22T04:29:26.001735+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 1556850.0, "mtime": "2002-10-02T12:54:54+00:00", "mtime_ts": 1033563294.0, "ctime": "2002-10-02T12:54:54+00:00", "sha256_file": "c9cc98f74ae056435c517238870ee6ca71f698bfd9cfd85b5de5d50b663511ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 12:54:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5546", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 12:54:55", "EXIF DateTimeDigitized": "2002:10:02 12:54:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69e6becd8685a54db3f11ec769cd300d161c1a86a77cbf24daa0b79e42d1a201", "phash": "d12d922c55b332d7", "dhash": "3a928894a2a398d8", "phash_int": -3.37387982671661e+18, "collected_at": "2026-05-22T04:29:26.007878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 1351035.0, "mtime": "2002-10-02T13:00:54+00:00", "mtime_ts": 1033563654.0, "ctime": "2002-10-02T13:00:54+00:00", "sha256_file": "34386168e0afef54b58ebe05eb7cc98d55a1bd53acc50e0147b81874f82fb6d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 13:00:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5164", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 13:00:55", "EXIF DateTimeDigitized": "2002:10:02 13:00:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d0563276dc7fc9961b18e70ede655dc3ea286383ae16ce9a72d5aba983ea166", "phash": "d4cb226b953ba394", "dhash": "83b03470b4901c36", "phash_int": -3.113356871936007e+18, "collected_at": "2026-05-22T04:29:26.155266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 1380332.0, "mtime": "2002-10-02T13:00:58+00:00", "mtime_ts": 1033563658.0, "ctime": "2002-10-02T13:00:58+00:00", "sha256_file": "d1196d34215658ba4742825c1bd2e564c334ebb60e59f5a1e9c28b565cac8020", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 13:01:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5145", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 13:01:00", "EXIF DateTimeDigitized": "2002:10:02 13:01:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77c2a6d25c9bbf4f15e7760125a2d5594c9b203390af7c709c6fc1a3d7545568", "phash": "d58b6a6b95178718", "dhash": "9b93747890d01a36", "phash_int": -3.059234511572728e+18, "collected_at": "2026-05-22T04:29:26.161269+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 1504570.0, "mtime": "2002-10-02T13:01:06+00:00", "mtime_ts": 1033563666.0, "ctime": "2002-10-02T13:01:06+00:00", "sha256_file": "497a1a05b207c857ecc5465710ce2e6375ed3b4b2812b6074dbb616c9e232ecf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 13:01:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5475", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 13:01:07", "EXIF DateTimeDigitized": "2002:10:02 13:01:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "740379dda86a8ddb409af35b3d324191ef6c5889b4d6fd8cd7e9a70b591d611b", "phash": "8c5372954bce11ed", "dhash": "4861716162763637", "phash_int": -8.335192499785167e+18, "collected_at": "2026-05-22T04:29:26.278327+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-02\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-02\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 1596869.0, "mtime": "2002-10-02T13:01:12+00:00", "mtime_ts": 1033563672.0, "ctime": "2002-10-02T13:01:12+00:00", "sha256_file": "53c7b1bf8e38c85b20ebdad515891e7f7b0dec2508390051057f79e7013ae868", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:02 13:01:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:02 13:01:13", "EXIF DateTimeDigitized": "2002:10:02 13:01:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d850fee58ed287c47a070e74d0119e07f2e54c35c826587b2245526007035ac6", "phash": "99c53ac6437d651c", "dhash": "f0f032f2e8593119", "phash_int": -7.366416992284351e+18, "collected_at": "2026-05-22T04:29:26.301326+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-07\\IMG_0665.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-07\\IMG_0665.JPG", "file_name": "IMG_0665.JPG", "file_stem": "IMG_0665", "file_ext": ".jpg", "file_size": 396751.0, "mtime": "2002-10-07T16:03:30+00:00", "mtime_ts": 1034006610.0, "ctime": "2002-10-07T16:03:30+00:00", "sha256_file": "866ecc04654e5e920043cdff0a796ebe24f4545024c4899bf47cd40e4f74fd70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:07 17:03:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3659", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:07 17:03:31", "EXIF DateTimeDigitized": "2002:10:07 17:03:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 3641, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060665", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "36", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "491"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8ea27a066ebeb9fc26bfc7432a53bcc4242cdceb91dfef73e637ba4f34741c5", "phash": "cf1f722c21fc1923", "dhash": "e3e1e2e3e367a787", "phash_int": -3.521970849706141e+18, "collected_at": "2026-05-22T04:29:26.334327+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-08\\IMG_0669.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-08\\IMG_0669.JPG", "file_name": "IMG_0669.JPG", "file_stem": "IMG_0669", "file_ext": ".jpg", "file_size": 473341.0, "mtime": "2002-10-08T14:37:10+00:00", "mtime_ts": 1034087830.0, "ctime": "2002-10-08T14:37:10+00:00", "sha256_file": "db569959be826b42b46d8ab9b38e91e1ec04ef1af9d06478e73fd0509cd413ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:08 15:37:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:08 15:37:11", "EXIF DateTimeDigitized": "2002:10:08 15:37:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 606, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060669", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "996"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79bf9decbf08734b88ee7589bfac381bcae6db6af0f04c1100796c87eb10b9fb", "phash": "c8e5270ff3848ccb", "dhash": "4512b0312173b399", "phash_int": -3.9707245469936814e+18, "collected_at": "2026-05-22T04:29:26.343327+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0674.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0674.JPG", "file_name": "IMG_0674.JPG", "file_stem": "IMG_0674", "file_ext": ".jpg", "file_size": 497725.0, "mtime": "2002-10-11T14:10:14+00:00", "mtime_ts": 1034345414.0, "ctime": "2002-10-11T14:10:14+00:00", "sha256_file": "ed886ec478305f9b58bc00a9d549bedc828d64f7aa8e7793a62dbc5e5c2c2554", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:10:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5103", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:10:15", "EXIF DateTimeDigitized": "2002:10:11 15:10:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 923, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060674", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "134", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "858"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abe42ffe7e0d6250e91971eebbfa630496b95a0e91b654c80ba50e1f97e2a8b2", "phash": "8a44e07dfa2c6c7a", "dhash": "a7e9e1f37970f3e9", "phash_int": -8.483408966386423e+18, "collected_at": "2026-05-22T04:29:26.434807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0673.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0673.JPG", "file_name": "IMG_0673.JPG", "file_stem": "IMG_0673", "file_ext": ".jpg", "file_size": 459593.0, "mtime": "2002-10-11T14:09:38+00:00", "mtime_ts": 1034345378.0, "ctime": "2002-10-11T14:09:38+00:00", "sha256_file": "6eca27813dbfed8eb487fe343b4401fbbc8bed287f731ba43c337c526382b92f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:09:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3401", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:09:39", "EXIF DateTimeDigitized": "2002:10:11 15:09:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1413, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060673", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "72", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1351"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7e6021f8ba51d488ef13dfc2f16326f9bf50a0216cbbb8ef5f1e90d1fe38d2b", "phash": "843ff3e30c5c7903", "dhash": "9cccd274f4d0f0f0", "phash_int": -8.91714058067978e+18, "collected_at": "2026-05-22T04:29:26.438871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0675.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0675.JPG", "file_name": "IMG_0675.JPG", "file_stem": "IMG_0675", "file_ext": ".jpg", "file_size": 522167.0, "mtime": "2002-10-11T14:10:32+00:00", "mtime_ts": 1034345432.0, "ctime": "2002-10-11T14:10:32+00:00", "sha256_file": "c007a6b6b89bba207561d1144a305dd27428653e2e8de526da550183e4908a89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:10:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4920", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:10:34", "EXIF DateTimeDigitized": "2002:10:11 15:10:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2788, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060675", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59a68be8d8b0cd3250d645fc09ac7f2ab303ae06c660ba47851c494c1a3691ac", "phash": "9d9a422db532dd52", "dhash": "74f0b8ba3a32fdfc", "phash_int": -7.090281899260454e+18, "collected_at": "2026-05-22T04:29:26.493875+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0676.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0676.JPG", "file_name": "IMG_0676.JPG", "file_stem": "IMG_0676", "file_ext": ".jpg", "file_size": 533902.0, "mtime": "2002-10-11T14:10:42+00:00", "mtime_ts": 1034345442.0, "ctime": "2002-10-11T14:10:42+00:00", "sha256_file": "a3886ea42e03b00ca90643d9474ca1e3d131949f33660a0b41acda58eaabbc90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:10:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4735", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:10:43", "EXIF DateTimeDigitized": "2002:10:11 15:10:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 3960, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060676", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "126", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "117e718f02d905df260938ccf14cb785a90bd1c89a51e85bb05a2731670a4d4d", "phash": "9b12e659cd34974a", "dhash": "f8f8f87a3371f173", "phash_int": -7.272497174880676e+18, "collected_at": "2026-05-22T04:29:26.524876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0677.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0677.JPG", "file_name": "IMG_0677.JPG", "file_stem": "IMG_0677", "file_ext": ".jpg", "file_size": 524229.0, "mtime": "2002-10-11T14:11:10+00:00", "mtime_ts": 1034345470.0, "ctime": "2002-10-11T14:11:10+00:00", "sha256_file": "2733c9a47baa69823d7568fe39bb847b38700430f68362c0891dc7d7944541bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:11:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3928", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:11:12", "EXIF DateTimeDigitized": "2002:10:11 15:11:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 3250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060677", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "83", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "711"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "34db2cebf5bd2a3b657dd8649091ab252d58c5cf870fb7a9c817342b48bec69a", "phash": "cd5ff823239cccc0", "dhash": "68737262c8eab2d4", "phash_int": -3.64792434334179e+18, "collected_at": "2026-05-22T04:29:26.562015+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0678.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0678.JPG", "file_name": "IMG_0678.JPG", "file_stem": "IMG_0678", "file_ext": ".jpg", "file_size": 522038.0, "mtime": "2002-10-11T14:11:42+00:00", "mtime_ts": 1034345502.0, "ctime": "2002-10-11T14:11:42+00:00", "sha256_file": "d62bfb153ba360b11bd1a7b3d3c7a9d6b7bf6331bdc7c6e9dd41236b6d8cb67c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 15:11:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4351", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 15:11:44", "EXIF DateTimeDigitized": "2002:10:11 15:11:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1144, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060678", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "115", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "789adf14429706915660022f08b5c6049d1845a7705549266e1114e2d92dd48a", "phash": "8046c4157fc3bfb1", "dhash": "ece4c9d1bbf8e0f4", "phash_int": -9.203453191868137e+18, "collected_at": "2026-05-22T04:29:26.627019+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0680.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0680.JPG", "file_name": "IMG_0680.JPG", "file_stem": "IMG_0680", "file_ext": ".jpg", "file_size": 717249.0, "mtime": "2002-10-11T19:23:04+00:00", "mtime_ts": 1034364184.0, "ctime": "2002-10-11T19:23:04+00:00", "sha256_file": "5e9b0a9eb096b0fe52ed25b4e3f1148638d69dce92c5e2f741704c9af8a99576", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 20:23:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6350", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 20:23:06", "EXIF DateTimeDigitized": "2002:10:11 20:23:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 72, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060680", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "24809"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c805c51929a36b68067c2c61634a782fc51db19d5daff6343d34063129ce0d71", "phash": "9e8c94e22df3149b", "dhash": "e4e17063e38c48de", "phash_int": -7.022074019823021e+18, "collected_at": "2026-05-22T04:29:26.636020+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0681.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0681.JPG", "file_name": "IMG_0681.JPG", "file_stem": "IMG_0681", "file_ext": ".jpg", "file_size": 704947.0, "mtime": "2002-10-11T19:23:18+00:00", "mtime_ts": 1034364198.0, "ctime": "2002-10-11T19:23:18+00:00", "sha256_file": "1ed60d16d2dd3425e7bb8116271a7bf4c97099872b71293afb471659996dbd6d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 20:23:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6303", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 20:23:20", "EXIF DateTimeDigitized": "2002:10:11 20:23:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 106, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060681", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5297"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1d7615d2567181e9b037ba7457bc87caa044f38beef6bbd35926269b06c0073", "phash": "878eb5f429f60499", "dhash": "e6606861f3ac0e5e", "phash_int": -8.678799371615731e+18, "collected_at": "2026-05-22T04:29:26.747877+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-11\\IMG_0682.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-11\\IMG_0682.JPG", "file_name": "IMG_0682.JPG", "file_stem": "IMG_0682", "file_ext": ".jpg", "file_size": 607987.0, "mtime": "2002-10-11T19:24:00+00:00", "mtime_ts": 1034364240.0, "ctime": "2002-10-11T19:24:00+00:00", "sha256_file": "71ac22708cb201966001448c111958bc89de3795bf063d9e61048f909793af4a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:11 20:24:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5897", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:11 20:24:02", "EXIF DateTimeDigitized": "2002:10:11 20:24:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 108, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060682", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2978"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8221c8b8753b33c1ea0265f768bba1bb68d675d4acf480ba17caee8dc07ef044", "phash": "c9c3a08c975e9676", "dhash": "92d3c958d2b2939e", "phash_int": -3.9081035259320346e+18, "collected_at": "2026-05-22T04:29:26.756954+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 243256.0, "mtime": "2002-10-12T23:02:26+00:00", "mtime_ts": 1034463746.0, "ctime": "2002-10-12T23:02:26+00:00", "sha256_file": "043340844458be5e9f7cf8c3c46f17494aab3df83f45e3f211def3aa8693e0d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:02:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5850", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:02:28", "EXIF DateTimeDigitized": "2002:10:12 23:02:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d0c3b1be9098a60a73a50e490081c42464192120220e4ab9a641aec560b7918", "phash": "950146b29907bff5", "dhash": "d6d6d6d29a4ccc68", "phash_int": -7.709803354196034e+18, "collected_at": "2026-05-22T04:29:26.816959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 242803.0, "mtime": "2002-10-12T23:02:38+00:00", "mtime_ts": 1034463758.0, "ctime": "2002-10-12T23:02:38+00:00", "sha256_file": "d113ee79817ec8695f96880e46b10ef5e6dfeccccbbb93d98bc3a21fa66a42c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:02:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5717", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:02:40", "EXIF DateTimeDigitized": "2002:10:12 23:02:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5d4c6b0c622f6d8d7124fa745ebf26d076cdbefbf1f57b7c69c7d5384a1ebf9", "phash": "d0446bbd4523b9cb", "dhash": "b4b4b4a4b43cc9c8", "phash_int": -3.439505754751256e+18, "collected_at": "2026-05-22T04:29:26.866966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0001_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0001_IMG_2.JPG", "file_name": "100-0001_IMG_2.JPG", "file_stem": "100-0001_IMG_2", "file_ext": ".jpg", "file_size": 1869870.0, "mtime": "2002-10-12T09:45:46+00:00", "mtime_ts": 1034415946.0, "ctime": "2002-10-12T09:45:46+00:00", "sha256_file": "271c775ce1eb8683694bc7183efc106254375de3a61f5df3f57a1eb587dd7137", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:45:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7631", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 09:45:47", "EXIF DateTimeDigitized": "2002:10:12 09:45:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2b6a35e4872981eac94eadb14749ce249537104614efdec0a542b4c4cd208bc", "phash": "d30ff36758c55812", "dhash": "4b6b38b02cc4cc98", "phash_int": -3.238101981859588e+18, "collected_at": "2026-05-22T04:29:26.888776+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 238324.0, "mtime": "2002-10-12T23:03:34+00:00", "mtime_ts": 1034463814.0, "ctime": "2002-10-12T23:03:34+00:00", "sha256_file": "254ac65b59e90ba1975013d3bed83c90b70e2568ec6fc9612cd1a82ce7e63077", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:03:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5843", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:03:36", "EXIF DateTimeDigitized": "2002:10:12 23:03:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c53c53c92e827f2947c17248a0dd5aa7a96e8765b7cb132622a03f9aeffef95f", "phash": "cf63f491c8cc6760", "dhash": "525b4b635b5a74b6", "phash_int": -3.5026871781878395e+18, "collected_at": "2026-05-22T04:29:26.945051+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0002_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0002_IMG_2.JPG", "file_name": "100-0002_IMG_2.JPG", "file_stem": "100-0002_IMG_2", "file_ext": ".jpg", "file_size": 2003240.0, "mtime": "2002-10-12T09:45:58+00:00", "mtime_ts": 1034415958.0, "ctime": "2002-10-12T09:45:58+00:00", "sha256_file": "a98752f4c3b53f53454fc2fc627a2513dbb04f9720f76534212c4fd4ab7220ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:46:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7080", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 09:46:00", "EXIF DateTimeDigitized": "2002:10:12 09:46:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1044789dcc72ab423c64a494baf39534605b3ce430b12df15dfddf04e18f350c", "phash": "906dd6a957586556", "dhash": "ae9fa6d5ce9bb8e8", "phash_int": -8.03953373698324e+18, "collected_at": "2026-05-22T04:29:26.998273+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 251429.0, "mtime": "2002-10-15T17:38:08+00:00", "mtime_ts": 1034703488.0, "ctime": "2002-10-15T17:38:08+00:00", "sha256_file": "2c436360f9a17f833dc179fda30c644ce3c38404360f4ce3b70866e3de7094dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:04:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9377", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 23:04:31", "EXIF DateTimeDigitized": "2002:10:12 23:04:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "768", "EXIF ExifImageLength": "1024", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 768.0, "height": 1024.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d765d6001c3a91abd1bff710b159c478b2c3fa0923398831380c8e041a20f500", "phash": "d7cc0433f11f0bc3", "dhash": "e0e46018184c4e8a", "phash_int": -2.8969358391708846e+18, "collected_at": "2026-05-22T04:29:27.049282+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0003_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0003_IMG_2.JPG", "file_name": "100-0003_IMG_2.JPG", "file_stem": "100-0003_IMG_2", "file_ext": ".jpg", "file_size": 2110235.0, "mtime": "2002-10-12T10:25:22+00:00", "mtime_ts": 1034418322.0, "ctime": "2002-10-12T10:25:22+00:00", "sha256_file": "a5d96ccd4aa40a94d8d0ca64eb2c1a9dab6810f1073883dc0c31ea9a21d8e961", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:25:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4656", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 10:25:23", "EXIF DateTimeDigitized": "2002:10:12 10:25:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1019/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1019"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a09bd5869307482c4f9ab328874dd0c4d17be5b9e45ff59909f4bb3271c24c2e", "phash": "c16363f8fc321969", "dhash": "8ac8c8a8b2d0d9f0", "phash_int": -4.511652480660924e+18, "collected_at": "2026-05-22T04:29:27.063276+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 272277.0, "mtime": "2002-10-12T23:06:24+00:00", "mtime_ts": 1034463984.0, "ctime": "2002-10-12T23:06:24+00:00", "sha256_file": "d6c28b873aeec74329faa71461ab471000b96a08ffa0c7586fb27804c60c8a7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:06:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5657", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:06:26", "EXIF DateTimeDigitized": "2002:10:12 23:06:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30c0265081a486cef786b58bcdb46c9e09b9578f5aa896bd096dbc5c9877d8fc", "phash": "b4a042bd91e5d9cd", "dhash": "9eadb30c3e3a26d4", "phash_int": -5.431267768644807e+18, "collected_at": "2026-05-22T04:29:27.137358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0004_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0004_IMG_2.JPG", "file_name": "100-0004_IMG_2.JPG", "file_stem": "100-0004_IMG_2", "file_ext": ".jpg", "file_size": 2418977.0, "mtime": "2002-10-12T10:25:32+00:00", "mtime_ts": 1034418332.0, "ctime": "2002-10-12T10:25:32+00:00", "sha256_file": "faa020bab0f1b717c43781edba2f2bff82b2e14888dd92e592422297ae4d2817", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:25:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5238", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 10:25:33", "EXIF DateTimeDigitized": "2002:10:12 10:25:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "581/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "581"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb098e14a7e31608f1d80eeb5d16fbece8f2bb9cd2158fd73b0565d931784d03", "phash": "d14646a26598d9fe", "dhash": "ecccb0929cd8f8ee", "phash_int": -3.3669260081097047e+18, "collected_at": "2026-05-22T04:29:27.194447+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0005_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0005_IMG_2.JPG", "file_name": "100-0005_IMG_2.JPG", "file_stem": "100-0005_IMG_2", "file_ext": ".jpg", "file_size": 2000906.0, "mtime": "2002-10-12T10:25:38+00:00", "mtime_ts": 1034418338.0, "ctime": "2002-10-12T10:25:38+00:00", "sha256_file": "0c1ba486bbcf32b53a8cd11931086cd113f3d54d74c1870173ba00cf650d5aab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:25:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4826", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 10:25:40", "EXIF DateTimeDigitized": "2002:10:12 10:25:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "76/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "608"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "470c3ec0d93789ce90fa4780b94092ce6a09ca8da6e75a07abcf304768e47160", "phash": "d36179f69519c8d0", "dhash": "9280d0706461b8b0", "phash_int": -3.215154558995413e+18, "collected_at": "2026-05-22T04:29:27.253512+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 255117.0, "mtime": "2002-10-12T23:09:12+00:00", "mtime_ts": 1034464152.0, "ctime": "2002-10-12T23:09:12+00:00", "sha256_file": "858ffc489c7727fe468f6dc7d9ad3dad55171ed2098fad050f54c50e2578bbee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:09:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6175", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:09:13", "EXIF DateTimeDigitized": "2002:10:12 23:09:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6a00408ca1b2137bd06b9a7b20073d161534f62b6100edfc855ba8c59dcc630", "phash": "de624e0dcc9c3387", "dhash": "242d0c3c686a6028", "phash_int": -2.422287828397575e+18, "collected_at": "2026-05-22T04:29:27.255513+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 254232.0, "mtime": "2002-10-12T23:09:50+00:00", "mtime_ts": 1034464190.0, "ctime": "2002-10-12T23:09:50+00:00", "sha256_file": "727941d8cbcccd71cb7188ba374668c5c21a65552b29758d0f115decba00e2a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:09:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6180", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:09:51", "EXIF DateTimeDigitized": "2002:10:12 23:09:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0acd1bd22b83f4ff8c3d54f554200e00a45d051e974fc489b846052e82fb53e4", "phash": "d6764ec9849363cc", "dhash": "682d4c6c285a7064", "phash_int": -2.993118274921471e+18, "collected_at": "2026-05-22T04:29:27.334516+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 272822.0, "mtime": "2002-10-15T17:38:12+00:00", "mtime_ts": 1034703492.0, "ctime": "2002-10-15T17:38:12+00:00", "sha256_file": "80342bfe7f5360458bd5bd839973cd98f3f7c09e56ba582c5c9ac894a4489921", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:12:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9512", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 23:12:32", "EXIF DateTimeDigitized": "2002:10:12 23:12:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "768", "EXIF ExifImageLength": "1024", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 768.0, "height": 1024.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8425cfa1b7fc77abbfe4b1b9c0ca64dc005b4128c05b0d9279d49bd30871d30", "phash": "f5658c529e6c928d", "dhash": "86060606288ca666", "phash_int": -7.640502752963086e+17, "collected_at": "2026-05-22T04:29:27.355666+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0007_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0007_IMG_2.JPG", "file_name": "100-0007_IMG_2.JPG", "file_stem": "100-0007_IMG_2", "file_ext": ".jpg", "file_size": 1671118.0, "mtime": "2002-10-12T10:25:54+00:00", "mtime_ts": 1034418354.0, "ctime": "2002-10-12T10:25:54+00:00", "sha256_file": "000502821b402447c079f1d290f09a9bf595fea5824b126d60a2b2ad04901c3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:25:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4525", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 10:25:56", "EXIF DateTimeDigitized": "2002:10:12 10:25:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "87/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "696"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b54b3ba0e2afc4555fef44f25065590193a939580ec55f6308392c87c19b5174", "phash": "c7176439de4389a6", "dhash": "ee6fe668689bc8e0", "phash_int": -4.1006987359926656e+18, "collected_at": "2026-05-22T04:29:27.388789+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 278696.0, "mtime": "2002-10-12T23:13:10+00:00", "mtime_ts": 1034464390.0, "ctime": "2002-10-12T23:13:10+00:00", "sha256_file": "2eb391097cbb7604eb7f84dc0b043748cdf2c5c56a8469dc44ec08225ee5c676", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:13:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6294", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:13:11", "EXIF DateTimeDigitized": "2002:10:12 23:13:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5134d0006c4047bf1b6317bf2ebcbca554654e72c90dd859666a36a64f50c98", "phash": "d947302ad11bb56b", "dhash": "d0c04050c2233998", "phash_int": -2.790208483677719e+18, "collected_at": "2026-05-22T04:29:27.401900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 265243.0, "mtime": "2002-10-12T23:51:34+00:00", "mtime_ts": 1034466694.0, "ctime": "2002-10-12T23:51:34+00:00", "sha256_file": "4fa87887926b0b853db278a339079558219908c4f4c05d40cd1688fddfda2cb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6139", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:51:36", "EXIF DateTimeDigitized": "2002:10:12 23:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c26d7cbfb1bf8dae77969ac04eabe89bdeaa16ce1e26f9e49975e4a8b636fc56", "phash": "c6973327193e6742", "dhash": "48e8e5a0f4c4a498", "phash_int": -4.13678148969625e+18, "collected_at": "2026-05-22T04:29:27.424896+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0009_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0009_IMG_2.JPG", "file_name": "100-0009_IMG_2.JPG", "file_stem": "100-0009_IMG_2", "file_ext": ".jpg", "file_size": 1689217.0, "mtime": "2002-10-12T10:26:14+00:00", "mtime_ts": 1034418374.0, "ctime": "2002-10-12T10:26:14+00:00", "sha256_file": "779c95eed81345319c9726ff097dcc3dff7e797515b40cf95aea67e7f369c688", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:26:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4784", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 10:26:16", "EXIF DateTimeDigitized": "2002:10:12 10:26:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "384446e58f7566c950d1f9e52a9e421a251c614b3591fb70f5a200a745c43fac", "phash": "8bcf66379b061319", "dhash": "6d67f1f9f9dbe7fb", "phash_int": -8.372360793248361e+18, "collected_at": "2026-05-22T04:29:27.466901+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0010_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0010_IMG_2.JPG", "file_name": "100-0010_IMG_2.JPG", "file_stem": "100-0010_IMG_2", "file_ext": ".jpg", "file_size": 2726689.0, "mtime": "2002-10-15T17:38:36+00:00", "mtime_ts": 1034703516.0, "ctime": "2002-10-15T17:38:36+00:00", "sha256_file": "2181826f462b9fe6d3e86ed2ae692e8c20b2de891f1ed2f5e06468207114c593", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:28:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7654", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 10:28:25", "EXIF DateTimeDigitized": "2002:10:12 10:28:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d75dba7ff94fe74b91de571b8fdb8942ba3ad4bb0e15d4e2aadd5bc64cfc549", "phash": "ca2d35e2c68c3cf1", "dhash": "676d3be1f131f150", "phash_int": -3.878384455986169e+18, "collected_at": "2026-05-22T04:29:27.524047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 274121.0, "mtime": "2002-10-12T23:51:42+00:00", "mtime_ts": 1034466702.0, "ctime": "2002-10-12T23:51:42+00:00", "sha256_file": "ab5071dca4d53655158f91751f94cb953aa4b148f4600577e124658fa4e0f57a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:51:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6169", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:51:44", "EXIF DateTimeDigitized": "2002:10:12 23:51:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f19b98c930418900719fde12fcbcc7bd269c0055c10b5bcbbc60352f92f47087", "phash": "d57a6c78388532cd", "dhash": "36246c6c1a98f2a6", "phash_int": -3.0640173328720727e+18, "collected_at": "2026-05-22T04:29:27.527046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 258862.0, "mtime": "2002-10-12T23:51:48+00:00", "mtime_ts": 1034466708.0, "ctime": "2002-10-12T23:51:48+00:00", "sha256_file": "6c17f71e8c8d30e2d3c6132683657439b1b04e89410473ab017f47bf0e6e666b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:51:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6244", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:51:49", "EXIF DateTimeDigitized": "2002:10:12 23:51:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4dad49b71bcb90f191e21b55e2d5caa8920c3372f5f8f91dd65d1e2288f93314", "phash": "d53e6c68388533cd", "dhash": "36646e7c1a90f6a6", "phash_int": -3.0809059001941883e+18, "collected_at": "2026-05-22T04:29:27.598558+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0011_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0011_IMG_2.JPG", "file_name": "100-0011_IMG_2.JPG", "file_stem": "100-0011_IMG_2", "file_ext": ".jpg", "file_size": 2989864.0, "mtime": "2002-10-15T17:36:26+00:00", "mtime_ts": 1034703386.0, "ctime": "2002-10-15T17:36:26+00:00", "sha256_file": "07f0c4ab3f0045a5c5c87a214673774aed7cb9d0d8da5a58b85781b95d356f77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 10:30:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7407", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 10:30:42", "EXIF DateTimeDigitized": "2002:10:12 10:30:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "938eefcb8b2911350aa0c94e19f8c37cb31ea28f880e499492435f4879038b02", "phash": "88c734cacb3477a9", "dhash": "e6d6c6e1f3a9b4ba", "phash_int": -8.59083971858868e+18, "collected_at": "2026-05-22T04:29:27.651559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 231878.0, "mtime": "2002-10-12T23:52:02+00:00", "mtime_ts": 1034466722.0, "ctime": "2002-10-12T23:52:02+00:00", "sha256_file": "ac2d03e94e9b3f7394d2f7a3925d9f400293a6bdf3d7b643bbd4ba986860d678", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:52:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:52:04", "EXIF DateTimeDigitized": "2002:10:12 23:52:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3aec804fc68f517e33e76db9f1d4ac99c95e5c4dfe3d575511976bf72c7051d0", "phash": "bca56253356a558d", "dhash": "2f3737373e2c2d2d", "phash_int": -4.853364913903873e+18, "collected_at": "2026-05-22T04:29:27.719686+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0012_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0012_IMG_2.JPG", "file_name": "100-0012_IMG_2.JPG", "file_stem": "100-0012_IMG_2", "file_ext": ".jpg", "file_size": 3085411.0, "mtime": "2002-10-15T17:36:18+00:00", "mtime_ts": 1034703378.0, "ctime": "2002-10-15T17:36:18+00:00", "sha256_file": "d07585ad9bad0e7b6d3c99f3d0753a4903cc2efc06444a1fdfe587eb16f11ba4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 13:13:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10143", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 13:13:23", "EXIF DateTimeDigitized": "2002:10:12 13:13:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e93ba36dd90373ac9c917c326342680faec6a9e0850f9f37a867d62fc70beb83", "phash": "e6d9a4ca5f3e00e2", "dhash": "d00b05620ba58746", "phash_int": -1.812236185951666e+18, "collected_at": "2026-05-22T04:29:27.781688+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0013_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0013_IMG_2.JPG", "file_name": "100-0013_IMG_2.JPG", "file_stem": "100-0013_IMG_2", "file_ext": ".jpg", "file_size": 1840936.0, "mtime": "2002-10-12T13:14:02+00:00", "mtime_ts": 1034428442.0, "ctime": "2002-10-12T13:14:02+00:00", "sha256_file": "ad1a40ac3dc97daeebe08a75affd647030cf12b60980ac0b1a1088d1190fea1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 13:14:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7226", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 13:14:04", "EXIF DateTimeDigitized": "2002:10:12 13:14:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[111, 125, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2bd71b6fd9bfee8de51c24868a1e8b550b2e7aa997b10723531965928578c86", "phash": "f099f91c479962e2", "dhash": "b19d9de685a49c95", "phash_int": -1.1095819333144814e+18, "collected_at": "2026-05-22T04:29:27.816691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 258184.0, "mtime": "2002-10-15T17:38:18+00:00", "mtime_ts": 1034703498.0, "ctime": "2002-10-15T17:38:18+00:00", "sha256_file": "1ab94ebb48be15dd6a0719791aaf0c9d1f497d95689bb53129d5a9142d6c514a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:52:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8687", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 23:52:10", "EXIF DateTimeDigitized": "2002:10:12 23:52:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "768", "EXIF ExifImageLength": "1024", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 768.0, "height": 1024.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f32dcbe834fd68fb7fca9b09755349bce992261f1783f88b85a76f226320c1ae", "phash": "f573122711735aca", "dhash": "9c96901422262674", "phash_int": -7.602439530896847e+17, "collected_at": "2026-05-22T04:29:27.828691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 257246.0, "mtime": "2002-10-12T23:52:14+00:00", "mtime_ts": 1034466734.0, "ctime": "2002-10-12T23:52:14+00:00", "sha256_file": "3334f6e2226bb44066e28de4e6f5aaaa5e6debf2c3109f07cb9ed7debe3923e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 23:52:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 23:52:15", "EXIF DateTimeDigitized": "2002:10:12 23:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3954e02fa8688b52295a186c9e20189f6b0bc854aa12baf370a44a1b19a1c03c", "phash": "d0b91a05bf7c6949", "dhash": "b2f192b2f2c2a8ac", "phash_int": -3.406663031139309e+18, "collected_at": "2026-05-22T04:29:27.880759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0016_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0016_IMG_2.JPG", "file_name": "100-0016_IMG_2.JPG", "file_stem": "100-0016_IMG_2", "file_ext": ".jpg", "file_size": 2615124.0, "mtime": "2002-10-12T13:16:08+00:00", "mtime_ts": 1034428568.0, "ctime": "2002-10-12T13:16:08+00:00", "sha256_file": "76f993dc33005d32f83ef558ecba9bf37ffdbb50ac2bf961c882fccbc3b302a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 13:16:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7896", "EXIF ExposureTime": "1/250", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 13:16:10", "EXIF DateTimeDigitized": "2002:10:12 13:16:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "2/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "151", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "20", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3943ab9b89cd5ba2d7339f2b43ee0fcf8de498b68722589f27e22ac8c21b7ad1", "phash": "b1ce98f1486fa638", "dhash": "73f26646949c9e9e", "phash_int": -5.634397921724094e+18, "collected_at": "2026-05-22T04:29:27.998292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 2234934.0, "mtime": "2002-10-12T16:12:50+00:00", "mtime_ts": 1034439170.0, "ctime": "2002-10-12T16:12:50+00:00", "sha256_file": "0ddf288b76276e8972da5449e3eb76214dfcccefaa1dfd994e9094cb70ecb825", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:12:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7575", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 16:12:52", "EXIF DateTimeDigitized": "2002:10:12 16:12:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fe5f14e0d3029d7fbf58d744ac597c984e26e9f9afdfc66b11808d8173c8882", "phash": "a1f83dd4e03946e5", "dhash": "363acabbeaecdada", "phash_int": -6.7755976548747e+18, "collected_at": "2026-05-22T04:29:28.003353+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 1709807.0, "mtime": "2002-10-12T16:26:22+00:00", "mtime_ts": 1034439982.0, "ctime": "2002-10-12T16:26:22+00:00", "sha256_file": "a8e10de7ec96042470374736cd234ed3ca983da9970163ce3a33b12f562108c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:26:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4757", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 16:26:23", "EXIF DateTimeDigitized": "2002:10:12 16:26:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5291e89dae37ba522c80f314e03f61411b8150cc47b5c90038335bbd2bbf4f34", "phash": "e4d51ad3127e0979", "dhash": "8c868686844606a5", "phash_int": -1.957628969171941e+18, "collected_at": "2026-05-22T04:29:28.172066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 2105583.0, "mtime": "2002-10-12T16:13:00+00:00", "mtime_ts": 1034439180.0, "ctime": "2002-10-12T16:13:00+00:00", "sha256_file": "4f9c1d204742fbba94efcce84dd24f9815bb7db236abf3bd0c1e6a15d60e6a4c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:13:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8046", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 16:13:01", "EXIF DateTimeDigitized": "2002:10:12 16:13:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4acf02182617cf235d519cafc5a548ee9a6e9b573f6136b56982f2ecb365f0cd", "phash": "ff8a23a50764c0cf", "dhash": "cb292920701c3619", "phash_int": -3.3174855551237936e+16, "collected_at": "2026-05-22T04:29:28.187205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1548636.0, "mtime": "2002-10-12T16:27:28+00:00", "mtime_ts": 1034440048.0, "ctime": "2002-10-12T16:27:28+00:00", "sha256_file": "1a1efe535d29805689c7b1b1abdecb853653d3182f4d534b580764bea6385fa1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:27:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4575", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 16:27:30", "EXIF DateTimeDigitized": "2002:10:12 16:27:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "155", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1752dfc12dee17326a2c53881af77546cc229d43b8780050b27f5a813b99e51", "phash": "eeb525cb998d2431", "dhash": "524c044109212332", "phash_int": -1.2460481655133215e+18, "collected_at": "2026-05-22T04:29:28.332933+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 3020614.0, "mtime": "2002-10-15T17:36:34+00:00", "mtime_ts": 1034703394.0, "ctime": "2002-10-15T17:36:34+00:00", "sha256_file": "6928b25f0ad04854e8aef98cade46c8ecad01068ee6a2ceb965171e028668225", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:26:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8484", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 16:26:56", "EXIF DateTimeDigitized": "2002:10:12 16:26:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "42b0e968d5129daa849698029914204f4833326d15b9902dad5148897572e94d", "phash": "b5b41a2ecd68e345", "dhash": "bc1c9e9646ce2fe8", "phash_int": -5.353625268719656e+18, "collected_at": "2026-05-22T04:29:28.340935+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 1363764.0, "mtime": "2002-10-12T16:28:44+00:00", "mtime_ts": 1034440124.0, "ctime": "2002-10-12T16:28:44+00:00", "sha256_file": "ccdd37d7e202bcf1f491fa66906cf89eeaedf1b1d182f336881837a10a508f2a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 16:28:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4641", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 16:28:46", "EXIF DateTimeDigitized": "2002:10:12 16:28:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "143", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6909f82a19a5d13b6e2768f802e041d2e3083d9fb4dd4133448ddc56c7171400", "phash": "ccb3630f938c998d", "dhash": "ca8cb2b2323332f0", "phash_int": -3.696501950589921e+18, "collected_at": "2026-05-22T04:29:28.476292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 1964439.0, "mtime": "2002-10-12T18:18:28+00:00", "mtime_ts": 1034446708.0, "ctime": "2002-10-12T18:18:28+00:00", "sha256_file": "38d8d2eb2aeb3ce27e54364d941cf9f7f8f26a996283bd0a92aef172c449ee20", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:18:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6603", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:18:30", "EXIF DateTimeDigitized": "2002:10:12 18:18:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "251c295227a9281b95ba4cf30fb41d8e9f1af726568fc94780f30abe3ca71109", "phash": "a9f61c0959dcc4e6", "dhash": "93cbcfd3db8b9b93", "phash_int": -6.199737010540985e+18, "collected_at": "2026-05-22T04:29:28.488292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 2091951.0, "mtime": "2002-10-12T18:18:38+00:00", "mtime_ts": 1034446718.0, "ctime": "2002-10-12T18:18:38+00:00", "sha256_file": "4b1ad4bc705bf22d581829e49a6ac208c0e22b46d1b6657e4c66603d7477f38a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:18:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6458", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:18:39", "EXIF DateTimeDigitized": "2002:10:12 18:18:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65488", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3118dd1d9cae2d336453d9ca14cba584ec3d46cea8182b58724eee58ad1dc74", "phash": "95996e5ac5431d39", "dhash": "f0b0ded2f858cde4", "phash_int": -7.666975554485937e+18, "collected_at": "2026-05-22T04:29:28.590555+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 2018658.0, "mtime": "2002-10-12T18:19:52+00:00", "mtime_ts": 1034446792.0, "ctime": "2002-10-12T18:19:52+00:00", "sha256_file": "5c58a441e9339237b2c3aa1c0c494adc519a6f5a8fdb881c7c1b76fd1d6de7b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:19:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6408", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:19:53", "EXIF DateTimeDigitized": "2002:10:12 18:19:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b638ee2c8553079e3985200a2a6cd0a38c03fb6a529f7d89a3b9909fad3ead6a", "phash": "9d26526fa20a2adf", "dhash": "62767676727272f0", "phash_int": -7.122915121226438e+18, "collected_at": "2026-05-22T04:29:28.592553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 2119520.0, "mtime": "2002-10-12T18:20:02+00:00", "mtime_ts": 1034446802.0, "ctime": "2002-10-12T18:20:02+00:00", "sha256_file": "5aba82652c6662361e88e320069dcd1116393532d8d6b96475148439382f717f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:20:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5058", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:20:04", "EXIF DateTimeDigitized": "2002:10:12 18:20:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a33d63876c29a9c0ebeda7fe78817321e9429bc2a434c844c9f9b6a4767fa5b", "phash": "923bf1831dc467cc", "dhash": "5959617169cca4e0", "phash_int": -7.909462775103724e+18, "collected_at": "2026-05-22T04:29:28.726831+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 2103987.0, "mtime": "2002-10-12T18:20:16+00:00", "mtime_ts": 1034446816.0, "ctime": "2002-10-12T18:20:16+00:00", "sha256_file": "ffced93b5ba13c27c17afaa107f48d0a5c3b84cdcd1b2802d17e7374a6a30fe5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:20:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5333", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:20:17", "EXIF DateTimeDigitized": "2002:10:12 18:20:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f075a4f07475053ceabde03a5aec204ec16d365cc18b7eef1c6572957289c4cb", "phash": "d23ab19323c00fdf", "dhash": "c94d71d16dccb4f0", "phash_int": -3.2981285315773686e+18, "collected_at": "2026-05-22T04:29:28.739033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 2336539.0, "mtime": "2002-10-12T18:33:12+00:00", "mtime_ts": 1034447592.0, "ctime": "2002-10-12T18:33:12+00:00", "sha256_file": "c972893f4cab26c39080173a97c531530f56d087eadebd5be1e1b85ffd023cab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:33:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8177", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:33:13", "EXIF DateTimeDigitized": "2002:10:12 18:33:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e690e0af8d7c2f2193384716432763a740cf15a105966f805fbb6a77f1fd6588", "phash": "907fd9d26299b846", "dhash": "382c2ed7c49cb898", "phash_int": -8.034463712585075e+18, "collected_at": "2026-05-22T04:29:28.838370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 2166159.0, "mtime": "2002-10-12T18:33:20+00:00", "mtime_ts": 1034447600.0, "ctime": "2002-10-12T18:33:20+00:00", "sha256_file": "20b70be070135781734a3710ef70ae6a8f674f7825cc63fb9448792d0505e88f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:33:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8324", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:33:21", "EXIF DateTimeDigitized": "2002:10:12 18:33:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a305698a87723be72c4a9354e0ed508dda38be93d5db176671616dd4eba0388", "phash": "86cd33ca86756c93", "dhash": "e4e0e064e5a5dcec", "phash_int": -8.733267157469271e+18, "collected_at": "2026-05-22T04:29:28.869378+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1147999.0, "mtime": "2002-10-12T18:33:56+00:00", "mtime_ts": 1034447636.0, "ctime": "2002-10-12T18:33:56+00:00", "sha256_file": "70c307219908e6a6d9eb90ed711b5adf54a44f408bb0d945fa70b65e767cd6ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:33:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6526", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:33:58", "EXIF DateTimeDigitized": "2002:10:12 18:33:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "daf3f142a2dc1d664f0790cfae866b714e6e2156e4be81cef0d289ddaf3ee401", "phash": "9125ce798f2f5252", "dhash": "dadedc7e999998f8", "phash_int": -7.987751342583098e+18, "collected_at": "2026-05-22T04:29:28.904373+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1059215.0, "mtime": "2002-10-12T18:34:36+00:00", "mtime_ts": 1034447676.0, "ctime": "2002-10-12T18:34:36+00:00", "sha256_file": "c9ca0fe2e03dd238ca943c970dacf5fd827079ff8cbbb1804dc012639db6dd55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:34:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5950", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:34:38", "EXIF DateTimeDigitized": "2002:10:12 18:34:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be1789573c5e4c27c892bfb7ed89333ad6e9f73734bdaa1548805f618112319f", "phash": "8c3d730c8fe0d91b", "dhash": "3e9e9a3673b287cb", "phash_int": -8.341384437029612e+18, "collected_at": "2026-05-22T04:29:28.953377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1117269.0, "mtime": "2002-10-12T18:34:42+00:00", "mtime_ts": 1034447682.0, "ctime": "2002-10-12T18:34:42+00:00", "sha256_file": "8aa12983b64966f78d59208fd246d68b53aad86e04c415a61a942097dbf1dd3b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:34:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6184", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:34:43", "EXIF DateTimeDigitized": "2002:10:12 18:34:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2777952988debacad6905bcd4aa84ce7a2829a4a576b13a8d9cf0a220362965", "phash": "dc2e4d359320fccc", "dhash": "2727a78d1c34d0f1", "phash_int": -2.5810406439396977e+18, "collected_at": "2026-05-22T04:29:28.959377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1082689.0, "mtime": "2002-10-12T18:34:46+00:00", "mtime_ts": 1034447686.0, "ctime": "2002-10-12T18:34:46+00:00", "sha256_file": "fbc3fba2b55e1080698de1f891f54a538144e0c0ff054348b8a995076f5f8b06", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:34:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5974", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:34:48", "EXIF DateTimeDigitized": "2002:10:12 18:34:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20870b445ad6450353d02aed7d571b2ff41011751a7db409c939abe8c7259b94", "phash": "e8760d3d9641366b", "dhash": "a7a7858d9d13d3e3", "phash_int": -1.6961536514933908e+18, "collected_at": "2026-05-22T04:29:29.005466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1089429.0, "mtime": "2002-10-12T18:34:52+00:00", "mtime_ts": 1034447692.0, "ctime": "2002-10-12T18:34:52+00:00", "sha256_file": "38b90bfbc4a521943f653394fe92210122161363e4e77e9392e5d540355f7daa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:34:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6564", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:34:54", "EXIF DateTimeDigitized": "2002:10:12 18:34:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fc5f47f609c27a92cbf4867b92c3d3026672f2e086888207b10b2814521f3c5", "phash": "da3f863848b56935", "dhash": "1c4c1a1839b8ecf0", "phash_int": -2.720308073612351e+18, "collected_at": "2026-05-22T04:29:29.008466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 1022409.0, "mtime": "2002-10-12T18:34:58+00:00", "mtime_ts": 1034447698.0, "ctime": "2002-10-12T18:34:58+00:00", "sha256_file": "5102da487fe3e3bc7e0a5803f47c17246630fd04c58cb0528a9c64fe4f0e2ad8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:34:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6283", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:34:59", "EXIF DateTimeDigitized": "2002:10:12 18:34:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb029a3229e41ca79f40bcb96b9704a16dea660b506d7c885b90725bba7c2881", "phash": "d935c23cc8a72d93", "dhash": "b4985a12303278f8", "phash_int": -2.795114427393299e+18, "collected_at": "2026-05-22T04:29:29.086470+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 1095886.0, "mtime": "2002-10-12T18:35:14+00:00", "mtime_ts": 1034447714.0, "ctime": "2002-10-12T18:35:14+00:00", "sha256_file": "010cbc186e4fd9e510890f5beb8545b4fb04b9b6537594c538ae8c5addc99b17", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:35:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6484", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:35:16", "EXIF DateTimeDigitized": "2002:10:12 18:35:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "43", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65525", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c3ae5867920a5cb85f2fb42123875c0e5eb896badd57398296dca95d789ebc8", "phash": "e17ab5c596e69902", "dhash": "241b1b21e3d2c6d4", "phash_int": -2.1992456077721864e+18, "collected_at": "2026-05-22T04:29:29.095471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 1055175.0, "mtime": "2002-10-12T18:35:24+00:00", "mtime_ts": 1034447724.0, "ctime": "2002-10-12T18:35:24+00:00", "sha256_file": "3b4ad55f290657f5ca796712e4f38f57e67ac99cd77546ce3a9457244e0e467f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:35:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:35:26", "EXIF DateTimeDigitized": "2002:10:12 18:35:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "297/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6d9dfe4ae61df30d1362c7fc49570193a1859332bfad1390b5496873259b51c", "phash": "9d21c0bf9a6d914d", "dhash": "5ade9a1c383872f0", "phash_int": -7.124201206361256e+18, "collected_at": "2026-05-22T04:29:29.232416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 1032890.0, "mtime": "2002-10-12T18:37:08+00:00", "mtime_ts": 1034447828.0, "ctime": "2002-10-12T18:37:08+00:00", "sha256_file": "05f2fa32d24b448cd75438aa225e253325d01eae9f9f2a41731f924b7ab4b611", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:37:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5322", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:37:09", "EXIF DateTimeDigitized": "2002:10:12 18:37:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "241/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[8, 15, 66, 1]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1928"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f3de5f188e2e8e1930ede720888948547ffabf70491ea18926dca39fdb47f49", "phash": "8e3678069f0fb98c", "dhash": "75f5f968f0e8e1b1", "phash_int": -8.199234101747665e+18, "collected_at": "2026-05-22T04:29:29.241414+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 926106.0, "mtime": "2002-10-12T18:38:38+00:00", "mtime_ts": 1034447918.0, "ctime": "2002-10-12T18:38:38+00:00", "sha256_file": "7977c834f21f3c17589e13b02bacac59b8c04e0953ad71ad755546169321b464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 18:38:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5346", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 18:38:39", "EXIF DateTimeDigitized": "2002:10:12 18:38:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "421/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "842"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a608efe002b68dd8d047f45b3461ae8071f2be6ad18d47c4d92078f66d418705", "phash": "aa6b62a44db072b7", "dhash": "c50d09f977bdaccc", "phash_int": -6.166726806936194e+18, "collected_at": "2026-05-22T04:29:29.321737+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 1088799.0, "mtime": "2002-10-12T19:57:00+00:00", "mtime_ts": 1034452620.0, "ctime": "2002-10-12T19:57:00+00:00", "sha256_file": "2fc0712389a8e86f24745feed4c7dd8f24315dde6adaec05fe67484b5a38736d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 19:57:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6140", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 19:57:01", "EXIF DateTimeDigitized": "2002:10:12 19:57:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a47da3171138b75e1817e18ed10f3d1bc6d16b91328b9d088b4711dddfac9841", "phash": "c7b0177f18c4e6c8", "dhash": "4848e4a03144c450", "phash_int": -4.0577174296169743e+18, "collected_at": "2026-05-22T04:29:29.342749+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 1017713.0, "mtime": "2002-10-12T19:57:12+00:00", "mtime_ts": 1034452632.0, "ctime": "2002-10-12T19:57:12+00:00", "sha256_file": "cf2f34f28809d10d6f213d21f240b5b5e8cf0589452c32f5cdf5f01d98be8ba8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 19:57:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5055", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 19:57:13", "EXIF DateTimeDigitized": "2002:10:12 19:57:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56ab67864492a1679bc6cd140a344a8025785bdab19736b4cd8d9a0f86f8948c", "phash": "c2e62eb8556c6707", "dhash": "e4e9c1c09899b1ba", "phash_int": -4.402780216466053e+18, "collected_at": "2026-05-22T04:29:29.413647+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 1058467.0, "mtime": "2002-10-12T19:57:04+00:00", "mtime_ts": 1034452624.0, "ctime": "2002-10-12T19:57:04+00:00", "sha256_file": "7cc45b9d8ee9a23d5bba968ef73ed65db8033a188a00a498d474880880970048", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 19:57:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 19:57:06", "EXIF DateTimeDigitized": "2002:10:12 19:57:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c064d488d4b494a6e99b7f7b97adbf8fd2b99acfd7023f714f0b368499502395", "phash": "c2dd11221b6cf6f2", "dhash": "d0d0cc60e9c485d9", "phash_int": -4.405346022311791e+18, "collected_at": "2026-05-22T04:29:29.417644+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 1103268.0, "mtime": "2002-10-12T19:57:16+00:00", "mtime_ts": 1034452636.0, "ctime": "2002-10-12T19:57:16+00:00", "sha256_file": "0813d4fd3db5d006b7086b5faa5a58dba2ba2f00cecfa08fb21b12c841bd9012", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 19:57:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5165", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 19:57:18", "EXIF DateTimeDigitized": "2002:10:12 19:57:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f54d08a5be206acdec335b0ec12f71f325188ec159a5aafb212f1d05c581fe68", "phash": "82393cf4031e58ff", "dhash": "bc5fdbcbcfe46ddd", "phash_int": -9.063145756384406e+18, "collected_at": "2026-05-22T04:29:29.506916+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 2215564.0, "mtime": "2002-10-12T20:00:48+00:00", "mtime_ts": 1034452848.0, "ctime": "2002-10-12T20:00:48+00:00", "sha256_file": "74eae3b7015ca8e6ea90855e222178b42903b210f330ae094cdaed1fdb0eaf16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:00:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7557", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:00:50", "EXIF DateTimeDigitized": "2002:10:12 20:00:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "147/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2940"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7a54263fd557eb8ba3f602c03b1ff5f3077eeb9c78626310fb4ef9614b81d5f", "phash": "ccd5943e72017cec", "dhash": "b4f0b2d2a3a2e2f0", "phash_int": -3.6868777240113e+18, "collected_at": "2026-05-22T04:29:29.545242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 1901148.0, "mtime": "2002-10-12T20:04:14+00:00", "mtime_ts": 1034453054.0, "ctime": "2002-10-12T20:04:14+00:00", "sha256_file": "049a87d991761924ddab60c6776f6f32bb93bce9d2986fc377d240c39a127011", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:04:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6154", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:04:15", "EXIF DateTimeDigitized": "2002:10:12 20:04:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3956d954ea100def5be0cf98aadd5b4737d3eab2813218aca3c5c8685b664b2f", "phash": "fa6a12258f69463b", "dhash": "c989a93353769ae8", "phash_int": -4.02489264167107e+17, "collected_at": "2026-05-22T04:29:29.647459+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 2001344.0, "mtime": "2002-10-12T20:04:08+00:00", "mtime_ts": 1034453048.0, "ctime": "2002-10-12T20:04:08+00:00", "sha256_file": "c5e8b2ba51942c23b40716e6047f1f3f1b351cd66c59d13b1e40c3fbf001185b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:04:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5756", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:04:10", "EXIF DateTimeDigitized": "2002:10:12 20:04:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79726016fcc0ef1ae38429dffeaeddd4a7b5089fb0df999ece29dcdfe568ac74", "phash": "c2463c197237d3cd", "dhash": "a4e5c4c8d1d9caeb", "phash_int": -4.447801501993676e+18, "collected_at": "2026-05-22T04:29:29.650464+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 2181354.0, "mtime": "2002-10-12T20:04:34+00:00", "mtime_ts": 1034453074.0, "ctime": "2002-10-12T20:04:34+00:00", "sha256_file": "559bd4a2fc59904260c3547f9c1c83756c965f069b71c1426d4467ebe1600a66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:04:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5773", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:04:36", "EXIF DateTimeDigitized": "2002:10:12 20:04:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c84c150d54c57f6878c1efac7dc137517de167c5277338a37153baf126cbfe55", "phash": "c062252f9e4add37", "dhash": "ccc4c4d988c2cde4", "phash_int": -4.5840605842603464e+18, "collected_at": "2026-05-22T04:29:29.836449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 2149947.0, "mtime": "2002-10-12T20:04:28+00:00", "mtime_ts": 1034453068.0, "ctime": "2002-10-12T20:04:28+00:00", "sha256_file": "974cc574cfb7218581939dd85bf8206651ecbf1d96975bf3065a9229a9575359", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:04:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5651", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:04:30", "EXIF DateTimeDigitized": "2002:10:12 20:04:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb9aba094546595493608ed26f6c69304056e121542bdc7d77105f303b746568", "phash": "c4c2456e2dbd12db", "dhash": "e4e4dc9cd9ed64e6", "phash_int": -4.268773157277724e+18, "collected_at": "2026-05-22T04:29:29.844449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 2415232.0, "mtime": "2002-10-12T20:47:44+00:00", "mtime_ts": 1034455664.0, "ctime": "2002-10-12T20:47:44+00:00", "sha256_file": "eba193ea480e2872785226db34f96383b7a7af6d79cc1192928cd852bd3e2c67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:47:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7240", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:47:46", "EXIF DateTimeDigitized": "2002:10:12 20:47:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88e94b1ea69e7675e3b25adadaf68541b2907a524c5824c2abf49df2ad8cc0f2", "phash": "d27a64b79948a627", "dhash": "2d2d29b95848c0e6", "phash_int": -3.280198638872517e+18, "collected_at": "2026-05-22T04:29:29.975184+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 2281850.0, "mtime": "2002-10-12T20:47:34+00:00", "mtime_ts": 1034455654.0, "ctime": "2002-10-12T20:47:34+00:00", "sha256_file": "053692c90b583fdff88669213b4c16fa663595c2835872bb7650fa112ddb42e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:47:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6954", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 20:47:35", "EXIF DateTimeDigitized": "2002:10:12 20:47:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2c8b92d2378e4314baf209474197af91ed84f7015e0426375bb057e50a84aff", "phash": "9d9b4a7cc949e151", "dhash": "b2fcd0721616b2f0", "phash_int": -7.089991288551252e+18, "collected_at": "2026-05-22T04:29:29.989183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 3671994.0, "mtime": "2002-10-15T17:37:08+00:00", "mtime_ts": 1034703428.0, "ctime": "2002-10-15T17:37:08+00:00", "sha256_file": "18e08e3da10b1db84165d80f59e6c932b51330e34705cba6014f986dc7d7a593", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:47:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10703", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 20:47:56", "EXIF DateTimeDigitized": "2002:10:12 20:47:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91a7791ca1b764dbc9177d2d165bfc0ad6d15fa7b3b5b84d1ceec86dcc1fc536", "phash": "e548761fb9cb0d06", "dhash": "00808193365245af", "phash_int": -1.9251589620677312e+18, "collected_at": "2026-05-22T04:29:30.164113+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 3749224.0, "mtime": "2002-10-15T17:37:12+00:00", "mtime_ts": 1034703432.0, "ctime": "2002-10-15T17:37:12+00:00", "sha256_file": "f3d5002358488313363cdefbd659d0ed402fae67b4c882eaef0a4b3d22295a6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:48:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9384", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 20:48:03", "EXIF DateTimeDigitized": "2002:10:12 20:48:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f280a042720e8dfaeeac1c16b4132b7d9cfc610ea2ec7cfb5bf138005bb42d5f", "phash": "87657c2b8b56cb21", "dhash": "cae6f0e0e9495c36", "phash_int": -8.690403379478345e+18, "collected_at": "2026-05-22T04:29:30.167272+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 3417283.0, "mtime": "2002-10-15T17:37:16+00:00", "mtime_ts": 1034703436.0, "ctime": "2002-10-15T17:37:16+00:00", "sha256_file": "307879a0496979261c3ac32ec23e334123d82405fedb228246191922dad0bc3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:23:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9190", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 21:23:39", "EXIF DateTimeDigitized": "2002:10:12 21:23:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3da39f098223c729917d61dbca30898f9987c170097bcb3f7b5cca3d8af2b1b2", "phash": "932d3433cde25f0c", "dhash": "ce9df1c0f2d88c8c", "phash_int": -7.841553979080024e+18, "collected_at": "2026-05-22T04:29:30.411248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 3482808.0, "mtime": "2002-10-15T17:37:14+00:00", "mtime_ts": 1034703434.0, "ctime": "2002-10-15T17:37:14+00:00", "sha256_file": "0233c69d78248f62c925462cc6119ecd81d0075eab06587734bb377fb9d99473", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 20:48:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10013", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 20:48:09", "EXIF DateTimeDigitized": "2002:10:12 20:48:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "446c3e250133a6e055eaddc77a064b4d6dee46a63bf7b3a8f34631b0fbf085e6", "phash": "842f73339d0f8c78", "dhash": "d6d62662f4ecd8b0", "phash_int": -8.921785671282095e+18, "collected_at": "2026-05-22T04:29:30.415251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 2060051.0, "mtime": "2002-10-12T21:23:44+00:00", "mtime_ts": 1034457824.0, "ctime": "2002-10-12T21:23:44+00:00", "sha256_file": "0001078bfed318a74e9910eca0b40b79a56b820d201a55db038c06d24b28fc29", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:23:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6270", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 21:23:46", "EXIF DateTimeDigitized": "2002:10:12 21:23:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65444", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50a97c1d853f0dcf7d3518da86f0aee9962d743d3e3b3a27e2bfdab13c062bab", "phash": "9f343386e7481c79", "dhash": "5c5e30726060d8d8", "phash_int": -6.974893268391159e+18, "collected_at": "2026-05-22T04:29:30.526249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 2374171.0, "mtime": "2002-10-12T21:23:52+00:00", "mtime_ts": 1034457832.0, "ctime": "2002-10-12T21:23:52+00:00", "sha256_file": "d412dea60f70e2df96db3f26291355dd83bf1489f1088c272a43549a7b301b93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:23:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6260", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 21:23:53", "EXIF DateTimeDigitized": "2002:10:12 21:23:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3930fccd95f5a0b0f2b52324c4e7118001e572204d79400a354c71d14b348001", "phash": "e1c64fb0643e466e", "dhash": "e4eac586969e5be9", "phash_int": -2.177965750772415e+18, "collected_at": "2026-05-22T04:29:30.569261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 2137616.0, "mtime": "2002-10-12T21:30:04+00:00", "mtime_ts": 1034458204.0, "ctime": "2002-10-12T21:30:04+00:00", "sha256_file": "c23ff38864338315971ab488e97a211eab54891966e0f06e586f2023589044d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:30:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6665", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 21:30:05", "EXIF DateTimeDigitized": "2002:10:12 21:30:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43a890228c49cfb12222cbbb16d356b8f9d8e13b54e51b5e836d562248f8cd1c", "phash": "c0331e99b14b876f", "dhash": "7865c1d98ab2f2b2", "phash_int": -4.5972971491617976e+18, "collected_at": "2026-05-22T04:29:30.662359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 3540859.0, "mtime": "2002-10-15T17:37:24+00:00", "mtime_ts": 1034703444.0, "ctime": "2002-10-15T17:37:24+00:00", "sha256_file": "dd5ce9ed7b83021d93960f9cce3e8a28ff0a00df06783c6c67389ba9691769be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:24:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9552", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 21:24:01", "EXIF DateTimeDigitized": "2002:10:12 21:24:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "074bccc5f61ab97f5117d674940613ef625b0c585e52a016e3ca556e8b1d91d0", "phash": "c24f2f627a8708dd", "dhash": "656373e98d8dcc1d", "phash_int": -4.44528220718242e+18, "collected_at": "2026-05-22T04:29:30.696361+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 1858938.0, "mtime": "2002-10-12T21:30:40+00:00", "mtime_ts": 1034458240.0, "ctime": "2002-10-12T21:30:40+00:00", "sha256_file": "5efd931bb1bd247d6c9d09df2ae73d5627e400d3d1c00353df24f09ab63d54a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 21:30:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5555", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 21:30:41", "EXIF DateTimeDigitized": "2002:10:12 21:30:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "23/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65466", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1150"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12b10b238780e627e980e08ff866cd31408f1a8efae77b95187d05df5de029eb", "phash": "eae1879e94c0cb5a", "dhash": "c6c7d19331713531", "phash_int": -1.5217860839042716e+18, "collected_at": "2026-05-22T04:29:30.800731+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 2024338.0, "mtime": "2002-10-12T22:13:22+00:00", "mtime_ts": 1034460802.0, "ctime": "2002-10-12T22:13:22+00:00", "sha256_file": "1a465d9c1294a3e89b497d37838bba498fc38d1632228c76d1a8f9830d90bfcb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:13:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7223", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:13:23", "EXIF DateTimeDigitized": "2002:10:12 22:13:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8dda65cc67fab1d0b06f410b906be7e9cf289938a16a2583cc6f2b1250fae3f8", "phash": "8d6b3989c2de7431", "dhash": "63636664e4767636", "phash_int": -8.256442228011011e+18, "collected_at": "2026-05-22T04:29:30.818728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 2047890.0, "mtime": "2002-10-12T22:13:30+00:00", "mtime_ts": 1034460810.0, "ctime": "2002-10-12T22:13:30+00:00", "sha256_file": "81efc943fcbc39b9dc5868e554ea65016f644767067edbd674303c32b7308fd9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:13:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6523", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:13:31", "EXIF DateTimeDigitized": "2002:10:12 22:13:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "352/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65436", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2816"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cce29b22bc6c256299f8ed2fa6ca4f5eae3ceb6410c3a87e110c278e3e366b60", "phash": "c8201ab3e56ba67d", "dhash": "99b1b3e3864909b3", "phash_int": -4.026188706918718e+18, "collected_at": "2026-05-22T04:29:30.878359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 1780293.0, "mtime": "2002-10-12T22:13:48+00:00", "mtime_ts": 1034460828.0, "ctime": "2002-10-12T22:13:48+00:00", "sha256_file": "03306df8715acdb0d5ce83bdae69313f65267a48f2978040e9e5d1c07613baae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:13:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6017", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:13:50", "EXIF DateTimeDigitized": "2002:10:12 22:13:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "723/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65427", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3615"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2c1479d0a1c16450c52d722c33c1f5d4be618b3cdfd6857a75a7bcf03863ca8", "phash": "c81f34e2c5277a93", "dhash": "37313970e18984a4", "phash_int": -4.026441393270982e+18, "collected_at": "2026-05-22T04:29:30.941145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 1606512.0, "mtime": "2002-10-12T22:33:18+00:00", "mtime_ts": 1034461998.0, "ctime": "2002-10-12T22:33:18+00:00", "sha256_file": "508dc0c1f7ade5b2665b797d0d19b290d692f5f9d5f1f234661b9c8600bb8303", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:33:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5620", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:33:20", "EXIF DateTimeDigitized": "2002:10:12 22:33:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "127/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1016"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fbe2b4daba49a715c1a6bb5c3561cd69df58a863aec1cd59ec66bd3a00c56bf", "phash": "dd73867699842659", "dhash": "0901333112262274", "phash_int": -2.489498325065915e+18, "collected_at": "2026-05-22T04:29:30.997144+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 1824119.0, "mtime": "2002-10-12T22:33:40+00:00", "mtime_ts": 1034462020.0, "ctime": "2002-10-12T22:33:40+00:00", "sha256_file": "ac2bfad5f44f5b7cc72283789e535c38a9b50c85b5b0ddb336d9bf6f0b0e1cff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:33:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6398", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:33:41", "EXIF DateTimeDigitized": "2002:10:12 22:33:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1773/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1773"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60499192334fa749fa8a3f5df6260fc33e3a49b1c35d19a441065b45c6e8e506", "phash": "ce38a3772598c734", "dhash": "11113131666465ee", "phash_int": -3.5869373710733947e+18, "collected_at": "2026-05-22T04:29:31.071348+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 1732304.0, "mtime": "2002-10-12T22:34:10+00:00", "mtime_ts": 1034462050.0, "ctime": "2002-10-12T22:34:10+00:00", "sha256_file": "1c28bc1ed4df95aa780766ab7ebc0a1711a878bbf642a165834995fcdc3077b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:34:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5894", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:34:11", "EXIF DateTimeDigitized": "2002:10:12 22:34:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce778c844c065ac403dc56916f208b589645176d04e99e20327509d4af030f4a", "phash": "dd73863619c436c9", "dhash": "1903123113262276", "phash_int": -2.489498602087107e+18, "collected_at": "2026-05-22T04:29:31.105612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 1952682.0, "mtime": "2002-10-12T22:34:32+00:00", "mtime_ts": 1034462072.0, "ctime": "2002-10-12T22:34:32+00:00", "sha256_file": "2bc70bdf54cca0e182674a5d4389d937a38a033c13ff6d89512805d51d9d7632", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:34:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7079", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:34:33", "EXIF DateTimeDigitized": "2002:10:12 22:34:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "758867a2e6c6d42f89155f170995681a5d9bf7ab8d40be90f6a9b6e9c3982144", "phash": "ca487915fc1c27f8", "dhash": "9181c1c144461110", "phash_int": -3.8707107443939635e+18, "collected_at": "2026-05-22T04:29:31.170717+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 1834025.0, "mtime": "2002-10-12T22:34:44+00:00", "mtime_ts": 1034462084.0, "ctime": "2002-10-12T22:34:44+00:00", "sha256_file": "e3a83672e841fa7c1a5be8857ff4e1401a4a55676369e0cb428d282968513148", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:34:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5700", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:34:45", "EXIF DateTimeDigitized": "2002:10:12 22:34:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "100d103a3720371e4139474208af6e92f7da4e4a35dabc1d0f93072d165a9ed8", "phash": "84645bda4fb5903b", "dhash": "969696a6e3e87270", "phash_int": -8.906893169833701e+18, "collected_at": "2026-05-22T04:29:31.245912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 3199277.0, "mtime": "2002-10-15T17:37:34+00:00", "mtime_ts": 1034703454.0, "ctime": "2002-10-15T17:37:34+00:00", "sha256_file": "d2d9fc47afe6d637704cc22e7180cf7e3e334f67bb8393145164dda78ef3810c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:36:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9632", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:36:03", "EXIF DateTimeDigitized": "2002:10:12 22:36:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e19bc88dd497cf103b118a1cb2ebb7bfe032685beedac9b8bdbb244109c2a22", "phash": "d1d86633c0ee39c6", "dhash": "d0b030b0d818eeac", "phash_int": -3.325795952346908e+18, "collected_at": "2026-05-22T04:29:31.307408+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 3277099.0, "mtime": "2002-10-15T17:37:40+00:00", "mtime_ts": 1034703460.0, "ctime": "2002-10-15T17:37:40+00:00", "sha256_file": "51b2a4a731fa10c05226e58baeab979a6b9452d7e2a3fbb2e6a9f61079d6613c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:36:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9637", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:36:19", "EXIF DateTimeDigitized": "2002:10:12 22:36:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b771fb43dda960f43b9fd1235b57edb49523a662c5dd65f1dd1671bcce218009", "phash": "ddcd2318873e1c87", "dhash": "e0e26020e030ccc8", "phash_int": -2.4642748328466115e+18, "collected_at": "2026-05-22T04:29:31.370417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 3269190.0, "mtime": "2002-10-15T17:37:52+00:00", "mtime_ts": 1034703472.0, "ctime": "2002-10-15T17:37:52+00:00", "sha256_file": "107d869040f212a1f0735d231e38e02c087e0744659c5595134f9bbc6adfa3fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:36:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10608", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:36:38", "EXIF DateTimeDigitized": "2002:10:12 22:36:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5a70f9ccfe7ae3a853249109b0f0604f36a9bdb032d24ea73f1ddbb6ee760c0", "phash": "e565024ab9619f6b", "dhash": "8686069612e4c494", "phash_int": -1.91712354641526e+18, "collected_at": "2026-05-22T04:29:31.406414+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 3485281.0, "mtime": "2002-10-15T17:37:54+00:00", "mtime_ts": 1034703474.0, "ctime": "2002-10-15T17:37:54+00:00", "sha256_file": "523f292aa5e1d32d2889f08a7e042aa82d3b2a3304a0d5419097441d2ff5414e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:37:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "10877", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:37:41", "EXIF DateTimeDigitized": "2002:10:12 22:37:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e58abe205339124a76efbd1e2eeee68767e59ee52f140435903911ee07f41192", "phash": "f56d3242bc609c6b", "dhash": "8686061662ecd494", "phash_int": -7.618974997460673e+17, "collected_at": "2026-05-22T04:29:31.571339+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 3473810.0, "mtime": "2002-10-15T17:37:56+00:00", "mtime_ts": 1034703476.0, "ctime": "2002-10-15T17:37:56+00:00", "sha256_file": "972519aa5dab99f7cc6d945779f485b69ae97000787b23d2b4a081f39a93dc87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:37:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "11132", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:37:50", "EXIF DateTimeDigitized": "2002:10:12 22:37:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6535d49a5cfa1a94e80fe37ee4536c455059db60c3068ae37324d93da110600", "phash": "e56db2429a69942f", "dhash": "8782921261c4c494", "phash_int": -1.9146782674343967e+18, "collected_at": "2026-05-22T04:29:31.580336+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 2856939.0, "mtime": "2002-10-15T17:37:58+00:00", "mtime_ts": 1034703478.0, "ctime": "2002-10-15T17:37:58+00:00", "sha256_file": "b54ef913f31b72d2083d9b4b8f4b6bedad37c097519d3e698fbb732e18139575", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:46:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8451", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:12 22:46:35", "EXIF DateTimeDigitized": "2002:10:12 22:46:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c73cf715ada087c6e5b887c06f02ef7b6f7699b16d46a85fe25f9910e5cb28ac", "phash": "de186087934be69d", "dhash": "313331396064c306", "phash_int": -2.443096662440418e+18, "collected_at": "2026-05-22T04:29:31.714332+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 1690144.0, "mtime": "2002-10-12T22:47:14+00:00", "mtime_ts": 1034462834.0, "ctime": "2002-10-12T22:47:14+00:00", "sha256_file": "2c7a6ff3dabafee7d5d789662c813fa8087eaeb293d39f4e655f0786f7564899", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:47:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6632", "EXIF ExposureTime": "3/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:47:15", "EXIF DateTimeDigitized": "2002:10:12 22:47:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 188, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "24", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de09c896accb9d84cad5a6a5cd957c8dbf7fcb111aa33237344925f638179c25", "phash": "fa72054ba0a4ded9", "dhash": "8d0d0d0d1951919f", "phash_int": -4.0025159450670726e+17, "collected_at": "2026-05-22T04:29:31.728333+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0683.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0683.JPG", "file_name": "IMG_0683.JPG", "file_stem": "IMG_0683", "file_ext": ".jpg", "file_size": 526425.0, "mtime": "2002-10-12T08:49:10+00:00", "mtime_ts": 1034412550.0, "ctime": "2002-10-12T08:49:10+00:00", "sha256_file": "5368e0ce553387e09ce4d81ff2ba2c7092534cf3f43b9c64ca7f547cbd3d5e70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:49:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7047", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 09:49:11", "EXIF DateTimeDigitized": "2002:10:12 09:49:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 125, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060683", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1910"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edbb1b04c8998b97489a1e00702dba38a59c214a22d92258afc497de77b0d69b", "phash": "aa958a36d192cdf1", "dhash": "fff7f25b06270da3", "phash_int": -6.154861347682989e+18, "collected_at": "2026-05-22T04:29:31.808774+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\100-0077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\100-0077_IMG.JPG", "file_name": "100-0077_IMG.JPG", "file_stem": "100-0077_IMG", "file_ext": ".jpg", "file_size": 2161442.0, "mtime": "2002-10-12T22:48:42+00:00", "mtime_ts": 1034462922.0, "ctime": "2002-10-12T22:48:42+00:00", "sha256_file": "0dfdd2ea99c2906041c9c8660a2fe0db6cebbc1c1464bd1ce11b7702358bd44d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 22:48:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6853", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:12 22:48:43", "EXIF DateTimeDigitized": "2002:10:12 22:48:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8cb36c57cc428e92a6ed83984a11e64e6f0c923fa7fd61c809b0e0918b8f836", "phash": "f97932094638b55b", "dhash": "1a1a3a2a62babaa8", "phash_int": -4.702896706692902e+17, "collected_at": "2026-05-22T04:29:31.826877+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0684.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0684.JPG", "file_name": "IMG_0684.JPG", "file_stem": "IMG_0684", "file_ext": ".jpg", "file_size": 481014.0, "mtime": "2002-10-12T08:49:20+00:00", "mtime_ts": 1034412560.0, "ctime": "2002-10-12T08:49:20+00:00", "sha256_file": "ce4a883e987eb6a6a295587a4292f6937b5f7a7da97ce8f445b31f44dd22140b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:49:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6654", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 09:49:22", "EXIF DateTimeDigitized": "2002:10:12 09:49:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 125, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060684", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1252"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d55940a07cabf359b77d9f8dca3cbeb2ae85b93bf016e5186db16735e151c742", "phash": "ae91e90ed193ccf0", "dhash": "fea696db67672b23", "phash_int": -5.867652589632108e+18, "collected_at": "2026-05-22T04:29:31.847875+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0685.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0685.JPG", "file_name": "IMG_0685.JPG", "file_stem": "IMG_0685", "file_ext": ".jpg", "file_size": 536176.0, "mtime": "2002-10-12T08:49:38+00:00", "mtime_ts": 1034412578.0, "ctime": "2002-10-12T08:49:38+00:00", "sha256_file": "6aa3bd3c6f20e29e5af9dfa6aa645a8f9b30e4e5f4c93c90f28d28f839b238de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:49:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7021", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 09:49:39", "EXIF DateTimeDigitized": "2002:10:12 09:49:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 125, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060685", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2594"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e033c2854d2c3adbf185de6a9f8a7d8670607bda62ae1da0c53a79dd8f31e26e", "phash": "aa94c8b7d08bde31", "dhash": "b4ffee674f6b5bb3", "phash_int": -6.155074098905227e+18, "collected_at": "2026-05-22T04:29:31.864876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0686.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0686.JPG", "file_name": "IMG_0686.JPG", "file_stem": "IMG_0686", "file_ext": ".jpg", "file_size": 486788.0, "mtime": "2002-10-12T08:50:42+00:00", "mtime_ts": 1034412642.0, "ctime": "2002-10-12T08:50:42+00:00", "sha256_file": "a4319403e17873943f3a8716c191dc084e0c892c5af8f8be75670bd661cd4cb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 09:50:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 09:50:43", "EXIF DateTimeDigitized": "2002:10:12 09:50:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 459, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060686", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2317"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70c9849c441ae0526a48189557672d7cb69e8813328f0715d6113e628e55e7a1", "phash": "fcba81669699074e", "dhash": "2d3d1338240393ea", "phash_int": -2.3573375287027117e+17, "collected_at": "2026-05-22T04:29:31.929845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0687.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0687.JPG", "file_name": "IMG_0687.JPG", "file_stem": "IMG_0687", "file_ext": ".jpg", "file_size": 528708.0, "mtime": "2002-10-12T10:12:00+00:00", "mtime_ts": 1034417520.0, "ctime": "2002-10-12T10:12:00+00:00", "sha256_file": "c7c5b702e2620a3e38b215961c0a514616f97985d7f20b9332519a18ad5aad9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 11:12:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5904", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 11:12:01", "EXIF DateTimeDigitized": "2002:10:12 11:12:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060687", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2505"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7eddb325d7b261d6ce68ee6691b596667c2bb4d0aba0cf19a0352567ce0cdb8e", "phash": "9832863fdce95315", "dhash": "7d3d9bb3b259f3a6", "phash_int": -7.479768422261632e+18, "collected_at": "2026-05-22T04:29:31.938958+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0688.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0688.JPG", "file_name": "IMG_0688.JPG", "file_stem": "IMG_0688", "file_ext": ".jpg", "file_size": 561645.0, "mtime": "2002-10-12T10:12:10+00:00", "mtime_ts": 1034417530.0, "ctime": "2002-10-12T10:12:10+00:00", "sha256_file": "0dd6b4a815db28fc7e3a7168b15daf498eb6c7ac5de66ecda195c3867f2f79dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 11:12:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6103", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 11:12:12", "EXIF DateTimeDigitized": "2002:10:12 11:12:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 107, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060688", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2245"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24bb141c03fb152b46b9822f1c22032010ba436e2c06178f3421ab5f8e6a2ff7", "phash": "9a368536c0eb378d", "dhash": "7c3c5db9b51c53d3", "phash_int": -7.334528472914905e+18, "collected_at": "2026-05-22T04:29:32.006588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0689.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0689.JPG", "file_name": "IMG_0689.JPG", "file_stem": "IMG_0689", "file_ext": ".jpg", "file_size": 533120.0, "mtime": "2002-10-12T10:12:20+00:00", "mtime_ts": 1034417540.0, "ctime": "2002-10-12T10:12:20+00:00", "sha256_file": "c5f772eb87d3c1f3acc4b17c3f381713ec58218572873382f8c20af09245914b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 11:12:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5996", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 11:12:22", "EXIF DateTimeDigitized": "2002:10:12 11:12:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060689", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2832"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f17fb0cf6ec44b2584b0e7b5680cd3694dd7f8457dd75bc6f7724d5aea6dfdf1", "phash": "9a32a637d0cb760d", "dhash": "7d3d7db9b95d53f2", "phash_int": -7.335618084376709e+18, "collected_at": "2026-05-22T04:29:32.019812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0830_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0830_IMG.JPG", "file_name": "108-0830_IMG.JPG", "file_stem": "108-0830_IMG", "file_ext": ".jpg", "file_size": 665679.0, "mtime": "2002-10-13T15:45:06+00:00", "mtime_ts": 1034523906.0, "ctime": "2002-10-13T15:45:06+00:00", "sha256_file": "ccb6c8073442b60e4ed8585cd857aebc735bb9fd1313b9413df1137588758047", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:45:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4825", "EXIF ExposureTime": "1/100", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:45:07", "EXIF DateTimeDigitized": "2002:10:13 15:45:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[17, 7, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080830", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "173", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17f1f84018b68224faf35adefc4cbe56b05c62f65856fc1030fc2ef7ca91c75d", "phash": "9a91ca84c526af3f", "dhash": "8038382e3c2d2d31", "phash_int": -7.308838048653464e+18, "collected_at": "2026-05-22T04:29:32.080812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-12\\IMG_0690.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-12\\IMG_0690.JPG", "file_name": "IMG_0690.JPG", "file_stem": "IMG_0690", "file_ext": ".jpg", "file_size": 490879.0, "mtime": "2002-10-12T10:12:34+00:00", "mtime_ts": 1034417554.0, "ctime": "2002-10-12T10:12:34+00:00", "sha256_file": "42f9daebb1c2129eca3bcaf3ebfc05d0eb65c4d232f3d785bad07ab9ce709a58", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:12 11:12:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5732", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:12 11:12:36", "EXIF DateTimeDigitized": "2002:10:12 11:12:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 282, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1060690", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3259"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9613124479ea3fffa56bba4fc95d2120543fc2a8440808b11b3dbb2161d7b28", "phash": "9836fb279ac0fb04", "dhash": "3d1dadb93453d238", "phash_int": -7.478513983683495e+18, "collected_at": "2026-05-22T04:29:32.091814+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0831_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0831_IMG.JPG", "file_name": "108-0831_IMG.JPG", "file_stem": "108-0831_IMG", "file_ext": ".jpg", "file_size": 427462.0, "mtime": "2002-10-13T15:45:26+00:00", "mtime_ts": 1034523926.0, "ctime": "2002-10-13T15:45:26+00:00", "sha256_file": "d1e534fe33f0df291b6edcf04330b026221320199b4564fca08c460ae3b79e32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:45:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3610", "EXIF ExposureTime": "1/100", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:45:28", "EXIF DateTimeDigitized": "2002:10:13 15:45:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 11, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080831", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "120", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "13587"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e032f9424ef2815fbc7c5f2cc9cc01d23bac47c95cc8449852162eca48c7a19", "phash": "b279bd4686789946", "dhash": "bc1e1acdec889c1e", "phash_int": -5.586225752174979e+18, "collected_at": "2026-05-22T04:29:32.161155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0832_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0832_IMG.JPG", "file_name": "108-0832_IMG.JPG", "file_stem": "108-0832_IMG", "file_ext": ".jpg", "file_size": 374840.0, "mtime": "2002-10-13T15:49:14+00:00", "mtime_ts": 1034524154.0, "ctime": "2002-10-13T15:49:14+00:00", "sha256_file": "590c9cb2e118a7fe0b615207d165af2c217b5a9bcbcbe2416332b4b6048309c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:49:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3901", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:49:15", "EXIF DateTimeDigitized": "2002:10:13 15:49:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4150, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080832", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "67", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1544"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d98f65298212475cccaeb200f2c6f9fa1067d36bd0e98ea7c75b0f255ffe8a09", "phash": "8d1d7667253ca389", "dhash": "76f6f372f3ebede1", "phash_int": -8.278330354658663e+18, "collected_at": "2026-05-22T04:29:32.162150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0833_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0833_IMG.JPG", "file_name": "108-0833_IMG.JPG", "file_stem": "108-0833_IMG", "file_ext": ".jpg", "file_size": 415273.0, "mtime": "2002-10-13T15:49:56+00:00", "mtime_ts": 1034524196.0, "ctime": "2002-10-13T15:49:56+00:00", "sha256_file": "0e8952f637c5cf33a02ef1fb739712d31c4e627005007fc16261f71fbcef3b9e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:49:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4231", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:49:58", "EXIF DateTimeDigitized": "2002:10:13 15:49:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 966, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080833", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "110", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1544"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9c154aa61c99df9d4d67ecef4afb07237226cc1ff43217b62ca98cf67c3fc6b", "phash": "9a676e1b6c61c1c6", "dhash": "23285838303879f1", "phash_int": -7.320761605205934e+18, "collected_at": "2026-05-22T04:29:32.244357+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0834_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0834_IMG.JPG", "file_name": "108-0834_IMG.JPG", "file_stem": "108-0834_IMG", "file_ext": ".jpg", "file_size": 435757.0, "mtime": "2002-10-13T15:51:28+00:00", "mtime_ts": 1034524288.0, "ctime": "2002-10-13T15:51:28+00:00", "sha256_file": "4152903172b259e1030f77228a2e6f38b680d024c5e631c29b30d1bcefb8b58c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:51:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4119", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:51:29", "EXIF DateTimeDigitized": "2002:10:13 15:51:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 657, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080834", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c86b91773cacaa549bd09cf145e8bc8eb14c66c8352d025037078c760dbd978", "phash": "9f676f1c62919198", "dhash": "4269581c30303079", "phash_int": -6.960472531374338e+18, "collected_at": "2026-05-22T04:29:32.245366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0835_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0835_IMG.JPG", "file_name": "108-0835_IMG.JPG", "file_stem": "108-0835_IMG", "file_ext": ".jpg", "file_size": 451909.0, "mtime": "2002-10-13T15:51:54+00:00", "mtime_ts": 1034524314.0, "ctime": "2002-10-13T15:51:54+00:00", "sha256_file": "d9b2c3630f3345f9fcd5bd9991092782ed10f590d308b87a42b45e2263f9511f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 15:51:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4713", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 15:51:56", "EXIF DateTimeDigitized": "2002:10:13 15:51:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1012, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080835", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "120", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e5aa5585a69be4a111220ed358d1e826e67142e852a15d35715d1f40dec130c", "phash": "f06b6518712e97b4", "dhash": "101e0f1b983824c6", "phash_int": -1.1226925264463075e+18, "collected_at": "2026-05-22T04:29:32.288360+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0836_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0836_IMG.JPG", "file_name": "108-0836_IMG.JPG", "file_stem": "108-0836_IMG", "file_ext": ".jpg", "file_size": 425943.0, "mtime": "2002-10-13T16:04:12+00:00", "mtime_ts": 1034525052.0, "ctime": "2002-10-13T16:04:12+00:00", "sha256_file": "fa5f37621c2679534af76e07317797009e9f6ca474fd9e1be890c84bf35ff9c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 16:04:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4859", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 16:04:14", "EXIF DateTimeDigitized": "2002:10:13 16:04:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 586, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080836", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "126", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "446b45dcac04858716bf383a8db0e98df19ba670c8305d3cefc25fa1cabaebcf", "phash": "ddc8c84737c946b1", "dhash": "c3b3311c7e64327a", "phash_int": -2.465500587781176e+18, "collected_at": "2026-05-22T04:29:32.290360+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0837_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0837_IMG.JPG", "file_name": "108-0837_IMG.JPG", "file_stem": "108-0837_IMG", "file_ext": ".jpg", "file_size": 419420.0, "mtime": "2002-10-13T16:04:20+00:00", "mtime_ts": 1034525060.0, "ctime": "2002-10-13T16:04:20+00:00", "sha256_file": "9c736b86a5f46a6f633ac1486170ae9c4ddf80ceaa8b1ed6f3d8f7cc6797833a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 16:04:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 16:04:21", "EXIF DateTimeDigitized": "2002:10:13 16:04:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 442, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080837", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4841"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d341f541d71e4607b1cfd279e8f5417ddd20c74b39a82912a9aa25a3b3f57835", "phash": "d9cb4736d84cb146", "dhash": "80c391911c3c64b2", "phash_int": -2.7530284463242153e+18, "collected_at": "2026-05-22T04:29:32.357123+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0838_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0838_IMG.JPG", "file_name": "108-0838_IMG.JPG", "file_stem": "108-0838_IMG", "file_ext": ".jpg", "file_size": 520477.0, "mtime": "2002-10-13T19:44:48+00:00", "mtime_ts": 1034538288.0, "ctime": "2002-10-13T19:44:48+00:00", "sha256_file": "c091216279e823aab34af78dd22520f32e9048f1fe8b5c97b42e1b882711735b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 19:44:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6097", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 19:44:49", "EXIF DateTimeDigitized": "2002:10:13 19:44:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 149, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080838", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccddc326825fda8f59cde2d8ba52483e2041a868f65c9c85d74e4b7d02a1574c", "phash": "b1e88baae4c5ef40", "dhash": "959c9c0e9c1cd84c", "phash_int": -5.627094168300556e+18, "collected_at": "2026-05-22T04:29:32.359121+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-15\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-15\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 153603.0, "mtime": "2002-10-15T17:17:54+00:00", "mtime_ts": 1034702274.0, "ctime": "2002-10-15T17:17:54+00:00", "sha256_file": "7ea964617b5d959f058e66044849dd74bf93f3ce28a75ec850b3b2bb270a1afe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:15 17:17:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3734", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:15 17:17:55", "EXIF DateTimeDigitized": "2002:10:15 17:17:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f538f92952fb20adec0c08ad15fc8048c3bbff296b62a43704357f3be9150171", "phash": "87651ad26dccb632", "dhash": "c6c2d6d2c8e8f8f8", "phash_int": -8.690510414853917e+18, "collected_at": "2026-05-22T04:29:32.443124+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-13\\108-0839_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-13\\108-0839_IMG.JPG", "file_name": "108-0839_IMG.JPG", "file_stem": "108-0839_IMG", "file_ext": ".jpg", "file_size": 562334.0, "mtime": "2002-10-13T19:45:26+00:00", "mtime_ts": 1034538326.0, "ctime": "2002-10-13T19:45:26+00:00", "sha256_file": "c20dc7abe88a4c68005b29a2c75c9c01d63b18ddcdfdd6d5919adf1c9b84d88b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:13 19:45:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6238", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:13 19:45:27", "EXIF DateTimeDigitized": "2002:10:13 19:45:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 98, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080839", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "634d4fd8e8aa792dbd2b30e24a0b8d1aab178ba7d4f8fe4113a7296fa1e9f047", "phash": "b3e6c80bbe60d2a3", "dhash": "cc4ccc0c4958dbb8", "phash_int": -5.483475543512788e+18, "collected_at": "2026-05-22T04:29:32.466472+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 207459.0, "mtime": "2002-10-17T08:09:20+00:00", "mtime_ts": 1034842160.0, "ctime": "2002-10-17T08:09:20+00:00", "sha256_file": "7c3b75f4fcf2d9d134ac23356ee36aa920121bc4d618f03d09f905c7c0539070", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 08:09:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4396", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:17 08:09:22", "EXIF DateTimeDigitized": "2002:10:17 08:09:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 768.0, "height": 1024.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e1372f8059036621bf1200fcd624fbfdcf3536862a6d7aecd2684b98ac0009af", "phash": "9c3637495cce06c7", "dhash": "242c6cb0b2b2f276", "phash_int": -7.190498966821272e+18, "collected_at": "2026-05-22T04:29:32.474474+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 221373.0, "mtime": "2002-10-17T08:09:30+00:00", "mtime_ts": 1034842170.0, "ctime": "2002-10-17T08:09:30+00:00", "sha256_file": "1a0dcfb0c2dff7e7d6a6fe77c25154ec4ad7fd81abe87c7969a773322ace7da0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 08:09:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4837", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:17 08:09:32", "EXIF DateTimeDigitized": "2002:10:17 08:09:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a57d557ce28bd1825f6cf25308325d5358bc1fab3784c278f8c8c55b65e16fe", "phash": "8d6467310bf2552f", "dhash": "cac6a2aaf2f2ea6b", "phash_int": -8.258362356339158e+18, "collected_at": "2026-05-22T04:29:32.503561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 215669.0, "mtime": "2002-10-17T08:09:40+00:00", "mtime_ts": 1034842180.0, "ctime": "2002-10-17T08:09:40+00:00", "sha256_file": "096804991259d2c7ae0e5170db234310430c9a97261268a64613bd3e9a77736d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 08:09:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4724", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:17 08:09:41", "EXIF DateTimeDigitized": "2002:10:17 08:09:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8d5ec5f872d6f9ce5f01c70feb9747214fe49f89f003478b5ae82c3436ab3fd", "phash": "c966631c0bd655ab", "dhash": "cb82a2eaf3b2f2db", "phash_int": -3.9343482523527194e+18, "collected_at": "2026-05-22T04:29:32.529628+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 1830886.0, "mtime": "2002-10-17T15:33:34+00:00", "mtime_ts": 1034868814.0, "ctime": "2002-10-17T15:33:34+00:00", "sha256_file": "aba3d6f6f8f9ff82123fd87a3bc20f05636312e0fc29b830bd57f582dbbfbcc1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 15:33:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4869", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:17 15:33:35", "EXIF DateTimeDigitized": "2002:10:17 15:33:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "497/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "208", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4970"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26038eff768025ce2cefaa0490f12896f8cac29a992e8f202e9800aff7e0b2c3", "phash": "c5f5ea9e3a2b0245", "dhash": "1186c65ae474e2ea", "phash_int": -4.182178713642008e+18, "collected_at": "2026-05-22T04:29:32.696431+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 1591878.0, "mtime": "2002-10-17T15:33:44+00:00", "mtime_ts": 1034868824.0, "ctime": "2002-10-17T15:33:44+00:00", "sha256_file": "770d96c43cf62bd6e6507ca042bd51c8d9394249e57213ae4cdc0f4473e7ba2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 15:33:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4628", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:17 15:33:46", "EXIF DateTimeDigitized": "2002:10:17 15:33:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4451/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "228", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4451"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d62e3ac84119f25015a466da2d8742afeabee70c2fb04014e5ea365980236206", "phash": "8781c0c860bef6df", "dhash": "c0e07ceefb69e1e2", "phash_int": -8.682446639744485e+18, "collected_at": "2026-05-22T04:29:32.699508+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0845_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0845_IMG.JPG", "file_name": "108-0845_IMG.JPG", "file_stem": "108-0845_IMG", "file_ext": ".jpg", "file_size": 348071.0, "mtime": "2003-01-04T10:02:02+00:00", "mtime_ts": 1041674522.0, "ctime": "2003-01-04T10:02:02+00:00", "sha256_file": "9dfcb02f4175964c4c7afbfe7d1e1f59a72f3bbf1bcb5641be8fd508a6f76c10", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:03:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7378", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:03:57", "EXIF DateTimeDigitized": "2002:10:17 19:03:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080845", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5285997405737fda2355585a90a0f0ca445e30ef24b0177844f774ef8b5f07cc", "phash": "c63b6019157ef2c5", "dhash": "00e4042cf66406c4", "phash_int": -4.1626277697228017e+18, "collected_at": "2026-05-22T04:29:32.783876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0846_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0846_IMG.JPG", "file_name": "108-0846_IMG.JPG", "file_stem": "108-0846_IMG", "file_ext": ".jpg", "file_size": 395774.0, "mtime": "2003-01-04T10:02:04+00:00", "mtime_ts": 1041674524.0, "ctime": "2003-01-04T10:02:04+00:00", "sha256_file": "b2829721590139c4d8c4bd2cf1417cfcbbff5f865813c88ebc1fa38fdd378dc3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:04:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7046", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:04:12", "EXIF DateTimeDigitized": "2002:10:17 19:04:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080846", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "146", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2f87158f2b4b5fcab9ed5ae0e7f21220458abd6dbfcbf016c8463cabb9b7683", "phash": "c9eb671d5c26d206", "dhash": "c393d93930b0e662", "phash_int": -3.896907676761272e+18, "collected_at": "2026-05-22T04:29:32.788951+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0848_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0848_IMG.JPG", "file_name": "108-0848_IMG.JPG", "file_stem": "108-0848_IMG", "file_ext": ".jpg", "file_size": 454626.0, "mtime": "2003-01-04T10:02:06+00:00", "mtime_ts": 1041674526.0, "ctime": "2003-01-04T10:02:06+00:00", "sha256_file": "dc6f9ded1e386fa3becddfaec804334e3c2fdb60826efcc0eb44ed201852040d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:04:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7902", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:04:36", "EXIF DateTimeDigitized": "2002:10:17 19:04:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080848", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5caa233a8a118a99f02c1267c68c1bcb450ff445543a38a8d5c5e33ab65119bf", "phash": "eda1e526181aa2fb", "dhash": "8686933130642d22", "phash_int": -1.3235248636942984e+18, "collected_at": "2026-05-22T04:29:32.843957+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0847_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0847_IMG.JPG", "file_name": "108-0847_IMG.JPG", "file_stem": "108-0847_IMG", "file_ext": ".jpg", "file_size": 428001.0, "mtime": "2003-01-04T10:02:04+00:00", "mtime_ts": 1041674524.0, "ctime": "2003-01-04T10:02:04+00:00", "sha256_file": "011330d541f30b1b8da98b2ef8bd7a74ad9c19559b5059c4fdad0b23ee165e66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:04:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7448", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:04:26", "EXIF DateTimeDigitized": "2002:10:17 19:04:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080847", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9cc5c05e368070c82ea770ef11d258cc2ff1efd4933a1c12f95f197d0c71e2d9", "phash": "cda9e1051e223fe3", "dhash": "9692b33170648429", "phash_int": -3.6271206127735767e+18, "collected_at": "2026-05-22T04:29:32.847953+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0849_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0849_IMG.JPG", "file_name": "108-0849_IMG.JPG", "file_stem": "108-0849_IMG", "file_ext": ".jpg", "file_size": 457263.0, "mtime": "2003-01-04T10:02:06+00:00", "mtime_ts": 1041674526.0, "ctime": "2003-01-04T10:02:06+00:00", "sha256_file": "281692ca7a0cef236e16767e6261d5f511fb9822f3db5a7dc5acc739c9b2c7dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:04:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7733", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:04:46", "EXIF DateTimeDigitized": "2002:10:17 19:04:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080849", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e69fb3820544f96e274cbecd9c712cc61a1355be87daa9fb83dad515f89c1e5a", "phash": "edac27161e23334b", "dhash": "86b693317064c14c", "phash_int": -1.320637614778011e+18, "collected_at": "2026-05-22T04:29:32.898297+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0850_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0850_IMG.JPG", "file_name": "108-0850_IMG.JPG", "file_stem": "108-0850_IMG", "file_ext": ".jpg", "file_size": 431024.0, "mtime": "2003-01-04T10:02:08+00:00", "mtime_ts": 1041674528.0, "ctime": "2003-01-04T10:02:08+00:00", "sha256_file": "2bd51650faf40f51dda3b679596ecdb13b2a9b3772e6f92129099ac3aaa1561d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:09:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8368", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:09:25", "EXIF DateTimeDigitized": "2002:10:17 19:09:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080850", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54616a1ee11a1240cf2a77cfd4c3358c48396d595c0c7dd667d99c27d1281de8", "phash": "cc7b400e1fe1f8c5", "dhash": "00c7923829a2c6e4", "phash_int": -3.7123030384282194e+18, "collected_at": "2026-05-22T04:29:32.902373+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0851_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0851_IMG.JPG", "file_name": "108-0851_IMG.JPG", "file_stem": "108-0851_IMG", "file_ext": ".jpg", "file_size": 516746.0, "mtime": "2003-01-04T10:02:10+00:00", "mtime_ts": 1041674530.0, "ctime": "2003-01-04T10:02:10+00:00", "sha256_file": "81cd5e50437069039824b4d1e5e902aa6c5b108ac941ab3ba756d5b756c8e814", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:09:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8294", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:09:34", "EXIF DateTimeDigitized": "2002:10:17 19:09:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080851", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b414b9bd1469a7dc6943b106ac75b782e348c50a98df53860878acfef1b8101", "phash": "eba8e30f1c11df09", "dhash": "438391382341cb0c", "phash_int": -1.4656720246741486e+18, "collected_at": "2026-05-22T04:29:32.969477+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0852_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-17\\mamina\\108-0852_IMG.JPG", "file_name": "108-0852_IMG.JPG", "file_stem": "108-0852_IMG", "file_ext": ".jpg", "file_size": 455309.0, "mtime": "2003-01-04T10:02:12+00:00", "mtime_ts": 1041674532.0, "ctime": "2003-01-04T10:02:12+00:00", "sha256_file": "791bdcf0cdc7d1d96bd9d3fd5a3d2742f998b199a7d23a85a4c17b7ccbdcc807", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:17 19:09:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7049", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:10:17 19:09:52", "EXIF DateTimeDigitized": "2002:10:17 19:09:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1080852", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a4e9b7aa68bc218dd4b807fede69d3b3bcb5bcd5b5882525237bab333c33794", "phash": "cbca6c2933a457b1", "dhash": "cbd1d0d898d81303", "phash_int": -3.7620756144987607e+18, "collected_at": "2026-05-22T04:29:32.973521+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0002_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0002_IMG_2.JPG", "file_name": "100-0002_IMG_2.JPG", "file_stem": "100-0002_IMG_2", "file_ext": ".jpg", "file_size": 1035000.0, "mtime": "2002-10-18T20:53:30+00:00", "mtime_ts": 1034974410.0, "ctime": "2002-10-18T20:53:30+00:00", "sha256_file": "caf07b4a62c413b615ec921e11ca794cdb1d95b772a4c2d49ea0202b593f6d56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:53:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4663", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:53:31", "EXIF DateTimeDigitized": "2002:10:18 20:53:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65444", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f9087179e7140ab821e4b6226a051322d29ed398fb7c88193018ce51c154142", "phash": "e5e2a98cac62c3e3", "dhash": "9346c88ef6e46e96", "phash_int": -1.8817552726347766e+18, "collected_at": "2026-05-22T04:29:33.089586+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0001_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0001_IMG_2.JPG", "file_name": "100-0001_IMG_2.JPG", "file_stem": "100-0001_IMG_2", "file_ext": ".jpg", "file_size": 1659543.0, "mtime": "2002-10-18T20:18:16+00:00", "mtime_ts": 1034972296.0, "ctime": "2002-10-18T20:18:16+00:00", "sha256_file": "e72232228ee8c4235aef4b1928af568413dba386013f95fd0a77d59e9cd80cca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:18:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5074", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:18:17", "EXIF DateTimeDigitized": "2002:10:18 20:18:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb39d440fa72a0e60a5289a636fbc792dffa369c24d961a5b98e890f861e40fa", "phash": "99a4c97f24b4d649", "dhash": "b691fcbe5b653ada", "phash_int": -7.375548741812169e+18, "collected_at": "2026-05-22T04:29:33.097579+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0003_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0003_IMG_2.JPG", "file_name": "100-0003_IMG_2.JPG", "file_stem": "100-0003_IMG_2", "file_ext": ".jpg", "file_size": 1053851.0, "mtime": "2002-10-18T20:53:48+00:00", "mtime_ts": 1034974428.0, "ctime": "2002-10-18T20:53:48+00:00", "sha256_file": "a1440748850d50d0232fc12acf8e6f794af7990f0187b73b15456b5ebda70d88", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:53:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4819", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:53:44", "EXIF DateTimeDigitized": "2002:10:18 20:53:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "2", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4dfda1dc9693b068a5c90af342530f203300cbe84928a0f6d90cbfc75fee9c5c", "phash": "a4eaa88eac7ac0f5", "dhash": "b34b888ce6604eb6", "phash_int": -6.563248176206529e+18, "collected_at": "2026-05-22T04:29:33.180756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 1507302.0, "mtime": "2002-10-18T12:46:56+00:00", "mtime_ts": 1034945216.0, "ctime": "2002-10-18T12:46:56+00:00", "sha256_file": "10b6644d0e211fb37465a1a31369056ef50d59c13982deab5d362a4e5abecdee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:46:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5403", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:46:58", "EXIF DateTimeDigitized": "2002:10:18 12:46:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b082e8dc6fecb7e8405a6217fe3583b12cb431df277f43667d0c45da9e70e117", "phash": "fcd3a729e89a022e", "dhash": "68686c1436163636", "phash_int": -2.286553576278584e+17, "collected_at": "2026-05-22T04:29:33.194987+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 1811097.0, "mtime": "2002-10-18T12:47:16+00:00", "mtime_ts": 1034945236.0, "ctime": "2002-10-18T12:47:16+00:00", "sha256_file": "f0978075d96efbde1165a34e79042eea05dca147f327cb4a960fa566801ee42d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5812", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:47:17", "EXIF DateTimeDigitized": "2002:10:18 12:47:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3208bf660809856e5f78f649798f9ee257f7e2376beba470a9b4b3b60c5530bf", "phash": "8fdec56594c5d484", "dhash": "e6616d696d45c2e2", "phash_int": -8.07980364137773e+18, "collected_at": "2026-05-22T04:29:33.269990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 2011970.0, "mtime": "2002-10-18T12:47:02+00:00", "mtime_ts": 1034945222.0, "ctime": "2002-10-18T12:47:02+00:00", "sha256_file": "f8e4524c3125990926ca4f1a164adc348b950881e16dab656731ff9229734c6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5992", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:47:04", "EXIF DateTimeDigitized": "2002:10:18 12:47:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55ff7648cada7122c9982e2010106f2388365fa1a39a45f32155bd73d6a3627f", "phash": "e587e827d11ea349", "dhash": "c4c6ceccc64e8c97", "phash_int": -1.9073006594583012e+18, "collected_at": "2026-05-22T04:29:33.279990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 1624058.0, "mtime": "2002-10-18T12:47:26+00:00", "mtime_ts": 1034945246.0, "ctime": "2002-10-18T12:47:26+00:00", "sha256_file": "ce405a912c4991439f215762630855a2951fdee7d9578190b219d06b18484fe6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5697", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:47:27", "EXIF DateTimeDigitized": "2002:10:18 12:47:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1091/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "180", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2182"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56ce302aa65d2c091065c7d5bd95ccebbdfab881f47af95da6d1ae4fc1ebcb7e", "phash": "acc3e10c1fb7538c", "dhash": "83878d2e36363636", "phash_int": -5.997702836539403e+18, "collected_at": "2026-05-22T04:29:33.404840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0009_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0009_IMG_2.JPG", "file_name": "100-0009_IMG_2.JPG", "file_stem": "100-0009_IMG_2", "file_ext": ".jpg", "file_size": 1114185.0, "mtime": "2002-10-18T20:54:00+00:00", "mtime_ts": 1034974440.0, "ctime": "2002-10-18T20:54:00+00:00", "sha256_file": "ec5deed80d7d73f37cd21dc1bdfcbbb8e5b13694c0bc49304e0ba2c5fd3f25f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:53:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5590", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:53:58", "EXIF DateTimeDigitized": "2002:10:18 20:53:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "8", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b0e4bc6607d851afd541946feab4398e4f0fd4b42d62c33c21d9863e742554d", "phash": "94d9c9663662c9cd", "dhash": "f0f0f0bcaccc4c3c", "phash_int": -7.720918645313714e+18, "collected_at": "2026-05-22T04:29:33.409840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 1108995.0, "mtime": "2002-10-18T20:54:04+00:00", "mtime_ts": 1034974444.0, "ctime": "2002-10-18T20:54:04+00:00", "sha256_file": "088795841dad8a8511c0b0ae2c6c09e94c932c2c1b3903a1fa55c015a9935bd4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:54:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5601", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:54:02", "EXIF DateTimeDigitized": "2002:10:18 20:54:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "9", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "317d470ceca21d153ac3e9ec3b943b7c19f87c507fdfb88c7be789b2226c376f", "phash": "95d9c9663462c9cd", "dhash": "f0f0f0bcaccc4cbc", "phash_int": -7.648861051309341e+18, "collected_at": "2026-05-22T04:29:33.553335+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 1373375.0, "mtime": "2002-10-18T12:47:36+00:00", "mtime_ts": 1034945256.0, "ctime": "2002-10-18T12:47:36+00:00", "sha256_file": "57b89aacf5741bbb220bc6e8a3ede3b7a5f6541ecf2e367d1aacfdba852108cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4962", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:47:38", "EXIF DateTimeDigitized": "2002:10:18 12:47:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1431/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1431"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "791d69d6f2047cbf91649a388024b091d65d6ac1f49f5cea224b3806127b9855", "phash": "e395584aadd8cb13", "dhash": "c4c4cccecbc9c9c9", "phash_int": -2.047633377802532e+18, "collected_at": "2026-05-22T04:29:33.571432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0011_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0011_IMG_2.JPG", "file_name": "100-0011_IMG_2.JPG", "file_stem": "100-0011_IMG_2", "file_ext": ".jpg", "file_size": 946776.0, "mtime": "2002-10-18T20:54:04+00:00", "mtime_ts": 1034974444.0, "ctime": "2002-10-18T20:54:04+00:00", "sha256_file": "b2248f7187e72139de03e5b640726620d5118b91e65bc7776c4d1d8f30996249", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:54:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4183", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:54:06", "EXIF DateTimeDigitized": "2002:10:18 20:54:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "9", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "748f69f944cd5bb6880a1f406991709d49f5da45e810093c9e6bc10cc23b6673", "phash": "d0c1a53569d2977a", "dhash": "9092e991042c2c33", "phash_int": -3.4042581944881254e+18, "collected_at": "2026-05-22T04:29:33.667586+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0012_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0012_IMG_2.JPG", "file_name": "100-0012_IMG_2.JPG", "file_stem": "100-0012_IMG_2", "file_ext": ".jpg", "file_size": 44845.0, "mtime": "2002-10-18T20:55:46+00:00", "mtime_ts": 1034974546.0, "ctime": "2002-10-18T20:55:46+00:00", "sha256_file": "792bd8b7d1b48fe20681b4898dbae4fe89d6dcd349d0d86419e596c077911a03", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:55:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4980", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:55:47", "EXIF DateTimeDigitized": "2002:10:18 20:55:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d848152b10e45eedcac74cd76b24eebf9a0b0b4d23125c923f944564920f074f", "phash": "a9ada5c31f785a18", "dhash": "4f4f333199c995fc", "phash_int": -6.2201332528636e+18, "collected_at": "2026-05-22T04:29:33.677583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 1802684.0, "mtime": "2002-10-18T12:48:46+00:00", "mtime_ts": 1034945326.0, "ctime": "2002-10-18T12:48:46+00:00", "sha256_file": "d656b320f1453e3d9943f9c27b317858581b0bae0c86e7dcc4012f9ba9432d57", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:48:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5819", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:48:48", "EXIF DateTimeDigitized": "2002:10:18 12:48:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "204", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e9ad3d28e0ca8a601b893b6299c32997cf9c6eba42671aa21e1a244320bbd62", "phash": "e2c0bc53d65cb568", "dhash": "888c86cccdcc1d8f", "phash_int": -2.1074775573446848e+18, "collected_at": "2026-05-22T04:29:33.678585+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0013_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0013_IMG_2.JPG", "file_name": "100-0013_IMG_2.JPG", "file_stem": "100-0013_IMG_2", "file_ext": ".jpg", "file_size": 40868.0, "mtime": "2002-10-18T20:56:10+00:00", "mtime_ts": 1034974570.0, "ctime": "2002-10-18T20:56:10+00:00", "sha256_file": "ac814efd3035b99735768ab09e20d15f90e924d5379777c44343ae9fa75f1647", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:55:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4681", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:55:58", "EXIF DateTimeDigitized": "2002:10:18 20:55:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "2", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61b250202b29d0e3a659548a6b5e44ca2a03b93f27d2ede21c5d908489b78340", "phash": "98cccc733333cccc", "dhash": "f0f0f0389c989878", "phash_int": -7.436344089543194e+18, "collected_at": "2026-05-22T04:29:33.770190+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 1835584.0, "mtime": "2002-10-18T12:48:54+00:00", "mtime_ts": 1034945334.0, "ctime": "2002-10-18T12:48:54+00:00", "sha256_file": "358b6dd1fdd9f9788112f3c3825181e9086208d5f420cc76bbb8ef2d37fc9bf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:48:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5771", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:48:56", "EXIF DateTimeDigitized": "2002:10:18 12:48:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "797/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3188"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "585fb0f959ab5ce980738dab56b34c5dda4ac307da8562688a3b22a712fd9359", "phash": "ed983863f29ac5c8", "dhash": "25353415474b0b16", "phash_int": -1.3262480883374638e+18, "collected_at": "2026-05-22T04:29:33.837192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 1895305.0, "mtime": "2002-10-18T12:49:24+00:00", "mtime_ts": 1034945364.0, "ctime": "2002-10-18T12:49:24+00:00", "sha256_file": "1f9394f63be1acd2570bc31d9f810edbeaf6e747d56578cb807f10875b7ed6d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:49:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6236", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:49:26", "EXIF DateTimeDigitized": "2002:10:18 12:49:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "204", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef973f63f419397bcdc26e0c8668303b79536e838da60e60107a4d1e51323a6d", "phash": "dc8f30ea2b8e51f0", "dhash": "61307063e0a4a494", "phash_int": -2.553768681384554e+18, "collected_at": "2026-05-22T04:29:33.885198+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 1891779.0, "mtime": "2002-10-18T12:49:30+00:00", "mtime_ts": 1034945370.0, "ctime": "2002-10-18T12:49:30+00:00", "sha256_file": "a5ef42ffc03058789dec7c6f435fcec48bd58258d45b9d12e2d6809087ca0688", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:49:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6189", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 12:49:31", "EXIF DateTimeDigitized": "2002:10:18 12:49:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "206", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7541d0e7572577ab7e58c2bee436de6b8710800240f3984825f20a42479a24ef", "phash": "cd92bceb02ae58f0", "dhash": "637470e0e2232327", "phash_int": -3.6336342317862523e+18, "collected_at": "2026-05-22T04:29:33.940195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1695388.0, "mtime": "2002-10-18T13:07:50+00:00", "mtime_ts": 1034946470.0, "ctime": "2002-10-18T13:07:50+00:00", "sha256_file": "70bde872c926e6feb483fd5631d90a459cac536aee5b5091560a436d9edf9a77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:07:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5000", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:07:51", "EXIF DateTimeDigitized": "2002:10:18 13:07:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1157/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2314"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8aea37bcf7b08ee8a21f3665e9a3f3576af8eeb9ab07ed1b4375732a0d68f41", "phash": "8465d36c6e539b2c", "dhash": "f8ecfca4a6f0fcfc", "phash_int": -8.906480225394386e+18, "collected_at": "2026-05-22T04:29:33.978720+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 1535780.0, "mtime": "2002-10-18T13:07:58+00:00", "mtime_ts": 1034946478.0, "ctime": "2002-10-18T13:07:58+00:00", "sha256_file": "8fd7590a25ab61efbb5552c670cf2904eaab1512a9b0fcaa37306ae6adf097aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:08:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5305", "EXIF ExposureTime": "1/4", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:08:00", "EXIF DateTimeDigitized": "2002:10:18 13:08:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "35237/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "35237"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db1a1ee0b8a43f4e96a3293f5f41d5b9a7186ee90292e213916981a7176879ba", "phash": "c437d3cd24d39a2c", "dhash": "90a4d4a4a7b0d0b5", "phash_int": -4.3077416405169864e+18, "collected_at": "2026-05-22T04:29:34.049177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 1651403.0, "mtime": "2002-10-18T13:08:34+00:00", "mtime_ts": 1034946514.0, "ctime": "2002-10-18T13:08:34+00:00", "sha256_file": "632912d8da23ec4671945c96309e79fd50e951ef7e90aa9d6398d2f21a7a8f22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:08:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5666", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:08:36", "EXIF DateTimeDigitized": "2002:10:18 13:08:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[108, 72, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7650f7ee3b5ec1f91ad24a022d2949bf37fdf775924bd92cfb68fb1caee894a8", "phash": "85a5e1ceda92ce91", "dhash": "5286cef8f0e0c088", "phash_int": -8.816392416961311e+18, "collected_at": "2026-05-22T04:29:34.065412+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 1389658.0, "mtime": "2002-10-18T13:09:24+00:00", "mtime_ts": 1034946564.0, "ctime": "2002-10-18T13:09:24+00:00", "sha256_file": "0e881164e3053993656ff438a90dc057525888db09a3d8ee492ff6c0085029b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:09:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5626", "EXIF ExposureTime": "2/5", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:09:26", "EXIF DateTimeDigitized": "2002:10:18 13:09:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6493/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[83, 605, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "241", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6493"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b9665175d635627e915501fe07033ee33c0f835ee8b2070dd9b8a186cf8795c", "phash": "84f79b646cd29368", "dhash": "d4d448c5a7aab5ea", "phash_int": -8.865446485830757e+18, "collected_at": "2026-05-22T04:29:34.124563+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 1191063.0, "mtime": "2002-10-18T13:10:38+00:00", "mtime_ts": 1034946638.0, "ctime": "2002-10-18T13:10:38+00:00", "sha256_file": "f2b283f37758b4c3e1ac8f8290f561bfa87176c167c72dfc96089a00091d9c00", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:10:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5532", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:10:40", "EXIF DateTimeDigitized": "2002:10:18 13:10:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[389, 1, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6364cfddd59b37033a57ab56d9ad796ccda13cc85a537b8bb6ae5a3284ae5ad6", "phash": "f45bc4d13f366260", "dhash": "28400d0e0a8e0606", "phash_int": -8.388605025867278e+17, "collected_at": "2026-05-22T04:29:34.160847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1190439.0, "mtime": "2002-10-18T13:11:36+00:00", "mtime_ts": 1034946696.0, "ctime": "2002-10-18T13:11:36+00:00", "sha256_file": "9eaf4db545344fc0d81da12282df8a8b0cc89e88a3cf0387a47d4b2bdf84718f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:11:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4101", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:11:38", "EXIF DateTimeDigitized": "2002:10:18 13:11:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "22163/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "22163"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e968c74fd52e8b38dd2407f074e3b885ab2dd7c00121c557ed5521c1941a9931", "phash": "e5e4921b19c71b0f", "dhash": "4686c6c6d4c9c738", "phash_int": -1.8812180992397734e+18, "collected_at": "2026-05-22T04:29:34.217073+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 1803944.0, "mtime": "2002-10-18T13:12:10+00:00", "mtime_ts": 1034946730.0, "ctime": "2002-10-18T13:12:10+00:00", "sha256_file": "ddf7a5f7859c4a8a5edb7270e3bd4d473bbb6ae2f1a0f9b59816f1709d524450", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:12:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6030", "EXIF ExposureTime": "3/10", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:12:12", "EXIF DateTimeDigitized": "2002:10:18 13:12:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1919/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[131, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9595"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "80dfd0206dc22cb2cba5e010ed518f0ee39c345e24d28345261de0f11bc6c501", "phash": "9269eaab954c2c9b", "dhash": "d2d9bcfc58f7f5ec", "phash_int": -7.89652244895235e+18, "collected_at": "2026-05-22T04:29:34.284352+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 1276636.0, "mtime": "2002-10-18T13:12:32+00:00", "mtime_ts": 1034946752.0, "ctime": "2002-10-18T13:12:32+00:00", "sha256_file": "e498370d1293be5555dc86bcdf0ac216cf090d22330870726b1b7cf1f799a628", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:12:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3318", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:12:33", "EXIF DateTimeDigitized": "2002:10:18 13:12:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1919/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9595"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8af3ac369af224390d2bebe1a09d45fe53aa1eb1de21e7937c8a248fb5e6177c", "phash": "d8d8c703c87b47d8", "dhash": "53313130ba4c1d30", "phash_int": -2.821286347485264e+18, "collected_at": "2026-05-22T04:29:34.324097+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0024_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0024_IMG_2.JPG", "file_name": "100-0024_IMG_2.JPG", "file_stem": "100-0024_IMG_2", "file_ext": ".jpg", "file_size": 30868.0, "mtime": "2002-10-18T20:56:10+00:00", "mtime_ts": 1034974570.0, "ctime": "2002-10-18T20:56:10+00:00", "sha256_file": "7da8dba7b7bbd770b47e44bbe1be6b86d882abadb0398c49b1e8f0f998e9626d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:56:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4061", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:56:09", "EXIF DateTimeDigitized": "2002:10:18 20:56:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "13", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be1fa88d73073c8ba6c578ab6de6e98b559e176c933791703a5c207102efeef0", "phash": "c0bbf44b1e648733", "dhash": "ecb9b4b563c18484", "phash_int": -4.558781594312866e+18, "collected_at": "2026-05-22T04:29:34.378337+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 1731881.0, "mtime": "2002-10-18T13:12:46+00:00", "mtime_ts": 1034946766.0, "ctime": "2002-10-18T13:12:46+00:00", "sha256_file": "9e8cd8a83204f5b5e26b21f0b2dd8e707485a0f04bad836a51bf6bdf7ec70b18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:12:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5033", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:12:47", "EXIF DateTimeDigitized": "2002:10:18 13:12:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1561/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6244"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "926024c494c109572ff752c8064c7f82c02a8203286a6017012a910d75c8a959", "phash": "f3d38c2e8af20cca", "dhash": "191818185d261cf0", "phash_int": -8.772033708796116e+17, "collected_at": "2026-05-22T04:29:34.442340+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0025_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0025_IMG_2.JPG", "file_name": "100-0025_IMG_2.JPG", "file_stem": "100-0025_IMG_2", "file_ext": ".jpg", "file_size": 32968.0, "mtime": "2002-10-18T20:56:10+00:00", "mtime_ts": 1034974570.0, "ctime": "2002-10-18T20:56:10+00:00", "sha256_file": "48013e63f3ac83b916d3302b0fc2850e1ddc66624b7788c71703d7f3a53b50ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:56:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4175", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:56:10", "EXIF DateTimeDigitized": "2002:10:18 20:56:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "14", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8712ef4e4ae6dd1322a4084e5bd5cbb527132c4c5515898f762c43493350e637", "phash": "c0bfe44b1c649733", "dhash": "ecb9b4b5e1c18484", "phash_int": -4.557673286625618e+18, "collected_at": "2026-05-22T04:29:34.456344+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 1641359.0, "mtime": "2002-10-18T13:12:56+00:00", "mtime_ts": 1034946776.0, "ctime": "2002-10-18T13:12:56+00:00", "sha256_file": "4d78ed8589600abb25a081224e18525faee5b6fc55c5885e608e84c591e24e11", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:12:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5547", "EXIF ExposureTime": "1/8", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:12:58", "EXIF DateTimeDigitized": "2002:10:18 13:12:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "701/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3505"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a254e9591805b3931ecda87b033bfe866db00d80c48891b3fab5a6f17cb30287", "phash": "a6f2ccae6c458e43", "dhash": "6c2dcf4faf67d272", "phash_int": -6.416841469536662e+18, "collected_at": "2026-05-22T04:29:34.488342+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0026_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0026_IMG_2.JPG", "file_name": "100-0026_IMG_2.JPG", "file_stem": "100-0026_IMG_2", "file_ext": ".jpg", "file_size": 33640.0, "mtime": "2002-10-18T20:56:10+00:00", "mtime_ts": 1034974570.0, "ctime": "2002-10-18T20:56:10+00:00", "sha256_file": "5a769202a3fe20ffc59e47858ce9fa6241e992131137c17355eed62f37cc4878", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:56:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4194", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:56:11", "EXIF DateTimeDigitized": "2002:10:18 20:56:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "15", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4aef7ca005358575569aaaaeb706a927e601e9d2e8660b175fa7f92eaad50086", "phash": "c0bfe44b1c649733", "dhash": "ec9994b4e1c18484", "phash_int": -4.557673286625618e+18, "collected_at": "2026-05-22T04:29:34.517341+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 2071177.0, "mtime": "2002-10-18T13:16:52+00:00", "mtime_ts": 1034947012.0, "ctime": "2002-10-18T13:16:52+00:00", "sha256_file": "3a8dd3ea28e93898e0282ff6b3069da2e8e32973eec06fb7a09d00edc14f6c82", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:16:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:16:53", "EXIF DateTimeDigitized": "2002:10:18 13:16:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[86, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84f2c7beed7cb62d1c899cb29851ed82a684b8747d242884a991dc4d94a6756d", "phash": "f17d960b0dc76816", "dhash": "d31a9242d281cc94", "phash_int": -1.0455145642601083e+18, "collected_at": "2026-05-22T04:29:34.560343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 2081812.0, "mtime": "2002-10-18T13:30:56+00:00", "mtime_ts": 1034947856.0, "ctime": "2002-10-18T13:30:56+00:00", "sha256_file": "7e4ade299abb2d1293e1acab769b6b0eab09a981814df2d062ca6993c834a65e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:30:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7319", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:30:58", "EXIF DateTimeDigitized": "2002:10:18 13:30:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32e387b885aa922ba497d71413addc4b46ab1d99be3bbe532f6313873e552c92", "phash": "c5608d473b95dac5", "dhash": "a2a6a08846e86a6a", "phash_int": -4.2242211133916544e+18, "collected_at": "2026-05-22T04:29:34.617813+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 1678238.0, "mtime": "2002-10-18T13:31:12+00:00", "mtime_ts": 1034947872.0, "ctime": "2002-10-18T13:31:12+00:00", "sha256_file": "42368d953feeab754a88eb9b01e1dcd5081240f32070efa13e8677f7dcd48dd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:31:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4924", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:31:14", "EXIF DateTimeDigitized": "2002:10:18 13:31:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2927/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5854"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "566bb4408cd61d1556024da792533c05802094a222238adc24d7b46553259e98", "phash": "d8d4ca65bb05cd62", "dhash": "a0b0b47c09365529", "phash_int": -2.822408528176231e+18, "collected_at": "2026-05-22T04:29:34.644993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 2024931.0, "mtime": "2002-10-18T13:31:26+00:00", "mtime_ts": 1034947886.0, "ctime": "2002-10-18T13:31:26+00:00", "sha256_file": "f24ffc6a372aafa551bd4b347bdb3ade7da22d7e5138a6065752e8bcf835d5d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:31:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6820", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:31:28", "EXIF DateTimeDigitized": "2002:10:18 13:31:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "67", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "898d4bde056aed4bfd2164e06b5dd0e301745700f620da4fa3cbbcdcecf443f3", "phash": "c837cfe936817c0a", "dhash": "4e4364f49393b2a2", "phash_int": -4.019515541856093e+18, "collected_at": "2026-05-22T04:29:34.760998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1913826.0, "mtime": "2002-10-18T13:32:08+00:00", "mtime_ts": 1034947928.0, "ctime": "2002-10-18T13:32:08+00:00", "sha256_file": "f763c6aba9d07fb514f8d422d4e605d3ddc5dec80124cc837ffb7c27589afa49", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:32:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5712", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:32:09", "EXIF DateTimeDigitized": "2002:10:18 13:32:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2851/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 1018, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11404"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60e8a4f8874054a9c61978da0e90327e80de219a5c15322d02e32258eee8d8e9", "phash": "c63d18ce73bc80da", "dhash": "627b9554c0e3e399", "phash_int": -4.1621432056364073e+18, "collected_at": "2026-05-22T04:29:34.773002+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1383081.0, "mtime": "2002-10-18T13:32:50+00:00", "mtime_ts": 1034947970.0, "ctime": "2002-10-18T13:32:50+00:00", "sha256_file": "cddc5b799d84e72082d24f085586e92c14d26f1b55e2e11454e902cbf97f3a96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:32:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6479", "EXIF ExposureTime": "3/10", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:32:52", "EXIF DateTimeDigitized": "2002:10:18 13:32:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[222, 181, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "387ff6297c3b5c9fbdc8e5e55e7f5f2e7d6365106d985973ddb64ac30677f10b", "phash": "cdf0ce6138c5b94c", "dhash": "8288921497d26661", "phash_int": -3.6071563845641354e+18, "collected_at": "2026-05-22T04:29:34.834009+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1532289.0, "mtime": "2002-10-18T13:43:26+00:00", "mtime_ts": 1034948606.0, "ctime": "2002-10-18T13:43:26+00:00", "sha256_file": "da61bd8d258aa678d76d8e09571e698cd0d30c7a5693df8a24ef8491bc883657", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:43:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6627", "EXIF ExposureTime": "2/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:43:27", "EXIF DateTimeDigitized": "2002:10:18 13:43:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eaf0029303f3c01904b1e0427568c49dcf196dfb9a2dcf271d2e0a601f0b68c2", "phash": "e7f7c0301a9d470e", "dhash": "4c4842478fcaa2a7", "phash_int": -1.7317042188631882e+18, "collected_at": "2026-05-22T04:29:34.880478+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1972653.0, "mtime": "2002-10-18T13:43:50+00:00", "mtime_ts": 1034948630.0, "ctime": "2002-10-18T13:43:50+00:00", "sha256_file": "0f6c3c9312268662e78a7379875ba9a9cd044ea0a3c123cf1cceeaeb93ac24d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:43:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7629", "EXIF ExposureTime": "2/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:43:51", "EXIF DateTimeDigitized": "2002:10:18 13:43:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[75, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31767dbcd5ec4f020e37251f4db56201b582e7024abf9b28468d9b9055522e01", "phash": "e7f7c03018dd260f", "dhash": "4c4846578faee2c3", "phash_int": -1.7317042188925568e+18, "collected_at": "2026-05-22T04:29:34.929269+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1866379.0, "mtime": "2002-10-18T13:44:56+00:00", "mtime_ts": 1034948696.0, "ctime": "2002-10-18T13:44:56+00:00", "sha256_file": "e6d6b77df032dfc789e336c31b0c0c17011f9e6b8630c493a6be0835c3ef4620", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:44:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7253", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:44:58", "EXIF DateTimeDigitized": "2002:10:18 13:44:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[74, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2003299ab0be1c315042c6c05fcff8ef26c152b3030ec497af789fb87834672d", "phash": "82e8c2add6c5ecd2", "dhash": "f1e1e1ec5c6ac9cd", "phash_int": -9.013740602293622e+18, "collected_at": "2026-05-22T04:29:34.973271+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 2231174.0, "mtime": "2002-10-18T13:47:30+00:00", "mtime_ts": 1034948850.0, "ctime": "2002-10-18T13:47:30+00:00", "sha256_file": "5751bce82caaee9f8aead3e1b5e3f100d9daace6f011970a353065c3f789335f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:47:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6764", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:47:32", "EXIF DateTimeDigitized": "2002:10:18 13:47:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c76f0298ca361ae458eddaad4cb2681c029741766d3408897cf2ea4d3d497efa", "phash": "de6df88227d96608", "dhash": "a5b532daeca9b02c", "phash_int": -2.4190041869300925e+18, "collected_at": "2026-05-22T04:29:35.043405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 1438613.0, "mtime": "2002-10-18T13:46:44+00:00", "mtime_ts": 1034948804.0, "ctime": "2002-10-18T13:46:44+00:00", "sha256_file": "407ac13d14d93170e0b24b4badce7fa522bb8b620882bb4e91672811f1dd6ae3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:46:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6502", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:46:46", "EXIF DateTimeDigitized": "2002:10:18 13:46:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36b2f58359e7152eb696ab577b6486f1981925c6942581c4181a6e09128227b9", "phash": "d1d8cee16799b083", "dhash": "d090b430c284fa6c", "phash_int": -3.3256808573120225e+18, "collected_at": "2026-05-22T04:29:35.055413+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 1208789.0, "mtime": "2002-10-19T13:15:22+00:00", "mtime_ts": 1035033322.0, "ctime": "2002-10-19T13:15:22+00:00", "sha256_file": "b11b972e0a320275a026e7e663e918fcc49f6c114a67be3035e4169088fb4675", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 13:15:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4984", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 13:15:23", "EXIF DateTimeDigitized": "2002:10:19 13:15:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "181", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e1edf854c25c9f578d1f2a2756c463d773d83a56b2bf64f2c1c700454672648", "phash": "9cac6394c86353bd", "dhash": "33b632b5b4b4fcd8", "phash_int": -7.157236217130298e+18, "collected_at": "2026-05-22T04:29:35.122534+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0038_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0038_IMG.JPG", "file_name": "100-0038_IMG.JPG", "file_stem": "100-0038_IMG", "file_ext": ".jpg", "file_size": 2266799.0, "mtime": "2002-10-18T13:48:20+00:00", "mtime_ts": 1034948900.0, "ctime": "2002-10-18T13:48:20+00:00", "sha256_file": "e7893ff374d01c63570a97f7e5e42566dc15f979b6f8a69679648b7916c2fe12", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:48:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6653", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:48:22", "EXIF DateTimeDigitized": "2002:10:18 13:48:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "327e6682d4f1c7eb6fdfaf4159d084a3f0d9cab61d6a2ae9ade064cd34d4c67a", "phash": "d00ef0bd1f7f00b4", "dhash": "989c9669b8929498", "phash_int": -3.45455916907869e+18, "collected_at": "2026-05-22T04:29:35.133614+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0038_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0038_IMG_2.JPG", "file_name": "100-0038_IMG_2.JPG", "file_stem": "100-0038_IMG_2", "file_ext": ".jpg", "file_size": 30811.0, "mtime": "2002-10-18T20:57:56+00:00", "mtime_ts": 1034974676.0, "ctime": "2002-10-18T20:57:56+00:00", "sha256_file": "c622286f61acfed5f2606e06050a56acc01ff990a3b4086908144b9a5072d125", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:57:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4029", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:57:55", "EXIF DateTimeDigitized": "2002:10:18 20:57:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Unknown", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "2", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92d4bfd814e8038636c75e4700ac7adca409aa62049c5c558b9a0a9aaee95f51", "phash": "c324dea37e4cb30a", "dhash": "a8b2b2b2c9c8e861", "phash_int": -4.385135343372029e+18, "collected_at": "2026-05-22T04:29:35.156848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 2252524.0, "mtime": "2002-10-18T13:48:48+00:00", "mtime_ts": 1034948928.0, "ctime": "2002-10-18T13:48:48+00:00", "sha256_file": "86226e215f7ac8c368198c7ef40b2b944cad765c2c9bb178a47c6f06ac76ed75", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:48:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7092", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:48:50", "EXIF DateTimeDigitized": "2002:10:18 13:48:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb0398078769ba56751849184d1650538fdf58f6efd98a482cc72ef5af310c7f", "phash": "c033c1f816ef38c7", "dhash": "dcdcd6e8b4b3c3d2", "phash_int": -4.597117523334318e+18, "collected_at": "2026-05-22T04:29:35.317406+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 2010784.0, "mtime": "2002-10-18T13:49:30+00:00", "mtime_ts": 1034948970.0, "ctime": "2002-10-18T13:49:30+00:00", "sha256_file": "28316765626c94b0571d02b14598048a663c53631778130ea224c4cc4f732d15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:49:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6647", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:49:31", "EXIF DateTimeDigitized": "2002:10:18 13:49:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c5a2c48e43447024a897b3ed0a4de3ed70ea50a8169a1e8e26579aab864f5e1", "phash": "ad58d6e16ace3087", "dhash": "d0b6bfb3839aeafa", "phash_int": -5.955774243549598e+18, "collected_at": "2026-05-22T04:29:35.331405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0041_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0041_IMG_2.JPG", "file_name": "100-0041_IMG_2.JPG", "file_stem": "100-0041_IMG_2", "file_ext": ".jpg", "file_size": 1221669.0, "mtime": "2002-10-18T20:58:56+00:00", "mtime_ts": 1034974736.0, "ctime": "2002-10-18T20:58:56+00:00", "sha256_file": "dc3b4909a98d3a8bb158048928863fbc74fc257e24f26a62aaaeb551e20143e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 20:58:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3791", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 20:58:57", "EXIF DateTimeDigitized": "2002:10:18 20:58:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65502", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "38a5d80be027469f8b2fbb2b71531ad1aba4ddaa8ed1c2eed42758628f317352", "phash": "c62cf2037cd20fec", "dhash": "c0b0e2e060c8c988", "phash_int": -4.1666894584315863e+18, "collected_at": "2026-05-22T04:29:35.415740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 2399685.0, "mtime": "2002-10-18T13:50:34+00:00", "mtime_ts": 1034949034.0, "ctime": "2002-10-18T13:50:34+00:00", "sha256_file": "3ab531c208f2160557438a285f5c662c37c086400cd13b9028d9f10b479f159c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:50:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6500", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:50:35", "EXIF DateTimeDigitized": "2002:10:18 13:50:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6afbd7cdcf7d018ae4102bf3c8cf6f1e5b4622b65c6717e9b9aa57068a513e25", "phash": "8d12d52bca3c95e5", "dhash": "d0c0f4f1ebeb4766", "phash_int": -8.281322380727643e+18, "collected_at": "2026-05-22T04:29:35.449739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 2171440.0, "mtime": "2002-10-18T13:50:48+00:00", "mtime_ts": 1034949048.0, "ctime": "2002-10-18T13:50:48+00:00", "sha256_file": "115b159792057d5610743d9fd59418bc58d5053f5f878200b8efd82655677db8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:50:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6407", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:50:50", "EXIF DateTimeDigitized": "2002:10:18 13:50:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "17151/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "17151"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff9d0c0cc039e6f2f6074cca18557fd1b7f96920b3af29c824f9f4922da4f596", "phash": "d608c76a93e619e6", "dhash": "223130153d4c4c4c", "phash_int": -3.0239478892174966e+18, "collected_at": "2026-05-22T04:29:35.508279+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0042_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0042_IMG_2.JPG", "file_name": "100-0042_IMG_2.JPG", "file_stem": "100-0042_IMG_2", "file_ext": ".jpg", "file_size": 1991000.0, "mtime": "2002-10-26T16:51:50+00:00", "mtime_ts": 1035651110.0, "ctime": "2002-10-26T16:51:50+00:00", "sha256_file": "b02d15ba3ad3a5f5ce51d187a61fe013480c1d29a0ecb5b11b0c450af6ce140f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5705", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:52", "EXIF DateTimeDigitized": "2002:10:26 17:51:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21c0cf8b89b958b5edec7daf34fa3be16a6fb74ef1c4fb014e22549a4bde70a2", "phash": "f97c43781c9ac722", "dhash": "13130b3b331b9bdb", "phash_int": -4.694260779983321e+17, "collected_at": "2026-05-22T04:29:35.522330+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0043_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0043_IMG_2.JPG", "file_name": "100-0043_IMG_2.JPG", "file_stem": "100-0043_IMG_2", "file_ext": ".jpg", "file_size": 49226.0, "mtime": "2002-10-18T21:14:34+00:00", "mtime_ts": 1034975674.0, "ctime": "2002-10-18T21:14:34+00:00", "sha256_file": "331d2f98462c19a5648863bc96b2a939bc8ae18787ba202a93638017ee04a3ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 21:14:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5390", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 21:14:35", "EXIF DateTimeDigitized": "2002:10:18 21:14:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8f41e0b54899f4a6ae3b8d18f6f58a49bd99491f98c9e50a2d330e9e8a2f482", "phash": "88b4d1462eb5875f", "dhash": "b69af6b761e099f9", "phash_int": -8.59601568938187e+18, "collected_at": "2026-05-22T04:29:35.535331+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 2262676.0, "mtime": "2002-10-18T13:51:28+00:00", "mtime_ts": 1034949088.0, "ctime": "2002-10-18T13:51:28+00:00", "sha256_file": "4008eac4ca27eeb7cb550df9c605b4b22552f5d6e98ea9d8b066e8dcf1313c66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:51:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6169", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:51:30", "EXIF DateTimeDigitized": "2002:10:18 13:51:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "80", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70581c56560d8724097b43407f5bc139b9d7ffa3da417ec519629ca24bd73e18", "phash": "e003ec33cd1ee33a", "dhash": "cbccc5d4945e24b6", "phash_int": -2.3047388770547213e+18, "collected_at": "2026-05-22T04:29:35.579405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 2113943.0, "mtime": "2002-10-18T13:54:48+00:00", "mtime_ts": 1034949288.0, "ctime": "2002-10-18T13:54:48+00:00", "sha256_file": "178a741e2a4f4f72c687144c499afb683af6307f2bdc369a6e6300e06a3af4a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:54:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6614", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:54:50", "EXIF DateTimeDigitized": "2002:10:18 13:54:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "66", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9113544307285f428c1a55837c67efd52d27dd43d76d0a4e934077f98fc6bec1", "phash": "c037c03f18cf2fa5", "dhash": "ccdc47709e2ea2a3", "phash_int": -4.595993517476598e+18, "collected_at": "2026-05-22T04:29:35.629974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0044_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0044_IMG_2.JPG", "file_name": "100-0044_IMG_2.JPG", "file_stem": "100-0044_IMG_2", "file_ext": ".jpg", "file_size": 1742797.0, "mtime": "2002-10-18T21:16:24+00:00", "mtime_ts": 1034975784.0, "ctime": "2002-10-18T21:16:24+00:00", "sha256_file": "590b43f1ef6e02709dd7dad346cc33db2a751ce8b37b4c098743b25d5ca6e2cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 21:16:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4833", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 21:16:26", "EXIF DateTimeDigitized": "2002:10:18 21:16:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af03664ada6f4268839786ddd60886f5dcd34c6eb0febe457bbb2bb86b30d92b", "phash": "cdf631493238dce2", "dhash": "d8d0b4c6e0f393ec", "phash_int": -3.6056402612185426e+18, "collected_at": "2026-05-22T04:29:35.643108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 1788496.0, "mtime": "2002-10-18T13:56:10+00:00", "mtime_ts": 1034949370.0, "ctime": "2002-10-18T13:56:10+00:00", "sha256_file": "e34ee140ac693646b8d32e01c8fe4ca8ba18fc223101f64a8840a5f8737a536e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:56:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6293", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:56:12", "EXIF DateTimeDigitized": "2002:10:18 13:56:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "711/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1422"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a787f39b13f938801699eaebd5de8b2cf4e3be000a137255387221e62d77c17", "phash": "d823de69926e15d4", "dhash": "9382ecab33133131", "phash_int": -2.872207592322624e+18, "collected_at": "2026-05-22T04:29:35.762719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 1977383.0, "mtime": "2002-10-18T13:56:00+00:00", "mtime_ts": 1034949360.0, "ctime": "2002-10-18T13:56:00+00:00", "sha256_file": "729fe7fe51639672326aa312beac57f659d9952bc23294dfebc9d67fc364af1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:56:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6198", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:56:01", "EXIF DateTimeDigitized": "2002:10:18 13:56:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2843d2f4c0891422aaf85cc6b0e609e3fdb588e87a1c3f60a1252d50748550d8", "phash": "c738c13fca2271c7", "dhash": "c07ad879706646c3", "phash_int": -4.09130778174774e+18, "collected_at": "2026-05-22T04:29:35.768721+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 1816088.0, "mtime": "2002-10-18T13:56:58+00:00", "mtime_ts": 1034949418.0, "ctime": "2002-10-18T13:56:58+00:00", "sha256_file": "5d88ae087df434c8d97107f4051a084712c4b583d39949a28ea77e1a219d57f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:57:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4791", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:57:00", "EXIF DateTimeDigitized": "2002:10:18 13:57:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1613/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3226"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "533fb1b560ee610b93bb7e8aa23393d7fe838db345a0f9a4da3f8a11f1268737", "phash": "f94a7526646c0abb", "dhash": "80d899311b1d1e1e", "phash_int": -4.834452022348977e+17, "collected_at": "2026-05-22T04:29:35.854722+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 1909174.0, "mtime": "2002-10-18T13:56:36+00:00", "mtime_ts": 1034949396.0, "ctime": "2002-10-18T13:56:36+00:00", "sha256_file": "e47632a25cc0d8b70e9eefc7fe16bb608a7aa2a08d596c68b2e9fae60d515b07", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:56:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6484", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:56:37", "EXIF DateTimeDigitized": "2002:10:18 13:56:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "579/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2895"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "90fbd69c7c11c20e062efc1bb1fbfcc8b05f8bfebbd3bb0ccc115768382e44b6", "phash": "c827c2f9e2863db1", "dhash": "c9c3a6a59191b1b1", "phash_int": -4.024033363529155e+18, "collected_at": "2026-05-22T04:29:35.857722+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 1927749.0, "mtime": "2002-10-18T13:58:40+00:00", "mtime_ts": 1034949520.0, "ctime": "2002-10-18T13:58:40+00:00", "sha256_file": "1bc7a00b2d19cac8634e1f5f0b84614f9b1fcecfb67f5450e844e2c8ddb580ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:58:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6716", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:58:42", "EXIF DateTimeDigitized": "2002:10:18 13:58:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cc99893ec84cd9def0f85525365c891978f9413eded890349d2688a1bbaf155", "phash": "d56a914d22876ff0", "dhash": "d848486db272561e", "phash_int": -3.068480435621761e+18, "collected_at": "2026-05-22T04:29:35.925832+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 1760713.0, "mtime": "2002-10-18T13:57:12+00:00", "mtime_ts": 1034949432.0, "ctime": "2002-10-18T13:57:12+00:00", "sha256_file": "7d5a3ce5fe9fac251bcf33d3eeb3c8aede7334ad2ddf108d123eed0f5db73b46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:57:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5483", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 13:57:14", "EXIF DateTimeDigitized": "2002:10:18 13:57:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "971/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3884"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f9709bc986f159fd9b9867886a0b15979fb890b80a55fc7753ee98eb4d87694", "phash": "da24d333c46992f9", "dhash": "c8e725a438185818", "phash_int": -2.727823254987632e+18, "collected_at": "2026-05-22T04:29:35.944986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 1908543.0, "mtime": "2002-10-18T14:00:22+00:00", "mtime_ts": 1034949622.0, "ctime": "2002-10-18T14:00:22+00:00", "sha256_file": "1dd58a251cca7dcf0536dd5739823f9abeb28b11359bf48c8de14ba16b482596", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:00:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4895", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 14:00:23", "EXIF DateTimeDigitized": "2002:10:18 14:00:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52e11d29a14d6c145d95c511f703c2eefe495de88115d962f4273434a78dac50", "phash": "828a9c157577e746", "dhash": "dc71efcdccccdc0c", "phash_int": -9.040241686013811e+18, "collected_at": "2026-05-22T04:29:36.030108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 1917370.0, "mtime": "2002-10-18T14:00:34+00:00", "mtime_ts": 1034949634.0, "ctime": "2002-10-18T14:00:34+00:00", "sha256_file": "e0c4cc43f5abd526e5c906709a9c995649bf03ddf2f2c6b0004776690c3dbdae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:00:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5861", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 14:00:35", "EXIF DateTimeDigitized": "2002:10:18 14:00:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c15e218a96eaf63d83639a73b11a0dc252b7127890b42c67e7643486206aa332", "phash": "cd53ed4695629f40", "dhash": "919118d4b477a332", "phash_int": -3.651313985457578e+18, "collected_at": "2026-05-22T04:29:36.046109+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 1910321.0, "mtime": "2002-10-18T14:11:20+00:00", "mtime_ts": 1034950280.0, "ctime": "2002-10-18T14:11:20+00:00", "sha256_file": "a9eb0bc5648e662e5df183650123e7f41518c39bba9fb9f8b7b7aff0f981cbdb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:11:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5491", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 14:11:21", "EXIF DateTimeDigitized": "2002:10:18 14:11:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1281/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 106, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5124"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db7ff3115248a34d916e558b4de4df6f249c9610cac9edb9f9bdfd06e9b70993", "phash": "b79f28e2245b9748", "dhash": "6c7c7c54444c8f0f", "phash_int": -5.215404891734043e+18, "collected_at": "2026-05-22T04:29:36.188958+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 1739867.0, "mtime": "2002-10-18T15:11:06+00:00", "mtime_ts": 1034953866.0, "ctime": "2002-10-18T15:11:06+00:00", "sha256_file": "019cb7d09dc4307fcdf35474bc92f4b57e6a0be0fea2d5cdbf91a7bf3319e08c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:11:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7469", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 15:11:07", "EXIF DateTimeDigitized": "2002:10:18 15:11:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca982e4cbd2fe654669eab6ea069c9582abbc2157ac84ce8e8b97d81edce21ad", "phash": "853a7a8da74c34ce", "dhash": "7d7974c6caf6e3e7", "phash_int": -8.846623769200152e+18, "collected_at": "2026-05-22T04:29:36.204029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 1759150.0, "mtime": "2002-10-18T15:11:26+00:00", "mtime_ts": 1034953886.0, "ctime": "2002-10-18T15:11:26+00:00", "sha256_file": "a55a52ae8961cc39e107b3020dddc1acc71f68ca8d418e77e6e5ff4487137e9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:11:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6952", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 15:11:27", "EXIF DateTimeDigitized": "2002:10:18 15:11:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f4acafd74f3cbaefc670470cd1ae21bec9b92fe21d3072db602350810d9af23", "phash": "8478338de03fc63b", "dhash": "dfdbb4a4a6e27ac8", "phash_int": -8.901307979052104e+18, "collected_at": "2026-05-22T04:29:36.340032+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 2140093.0, "mtime": "2002-10-18T15:11:16+00:00", "mtime_ts": 1034953876.0, "ctime": "2002-10-18T15:11:16+00:00", "sha256_file": "482dfba58d480bf344157f353486fdcc80b7a5806235eb3450a4bdaed4d7eb35", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:11:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7703", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 15:11:17", "EXIF DateTimeDigitized": "2002:10:18 15:11:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d5a709ce06c0be0b76c16dc30a2c2963c7ff7cfb314bc0bdf3fe49299d24c6c", "phash": "83a56d82361b69cf", "dhash": "46c6c2c9cdd9d172", "phash_int": -8.960635477562792e+18, "collected_at": "2026-05-22T04:29:36.344033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 1639624.0, "mtime": "2002-10-18T15:36:34+00:00", "mtime_ts": 1034955394.0, "ctime": "2002-10-18T15:36:34+00:00", "sha256_file": "84e4f2241ef8a0cdf5abe46e2bae00a5b5429d001cb168d06237a1a0eaba87de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:36:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6205", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 15:36:36", "EXIF DateTimeDigitized": "2002:10:18 15:36:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "910c996ad3f7c1b89d4215b49290ee1b64bd0c6f6ad33d105b13716edc8951e5", "phash": "dc3603d8b4f9cb30", "dhash": "b2ea33373333b3d2", "phash_int": -2.5788695073389414e+18, "collected_at": "2026-05-22T04:29:36.432038+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 2158636.0, "mtime": "2002-10-18T15:36:28+00:00", "mtime_ts": 1034955388.0, "ctime": "2002-10-18T15:36:28+00:00", "sha256_file": "4baf59dc072467782627aef975a9998f5b755ea1fe1b9898768e1b662c7a7909", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:36:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6946", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:18 15:36:30", "EXIF DateTimeDigitized": "2002:10:18 15:36:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d8eeb1bfde2507efd6e0d544d87c2cb87e0b4779de90a36aa46fdf1c17c884d", "phash": "9f2164de875ae10b", "dhash": "1a3abb387838313c", "phash_int": -6.980187040531161e+18, "collected_at": "2026-05-22T04:29:36.455114+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0853_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0853_IMG.JPG", "file_name": "108-0853_IMG.JPG", "file_stem": "108-0853_IMG", "file_ext": ".jpg", "file_size": 482319.0, "mtime": "2002-10-18T11:24:46+00:00", "mtime_ts": 1034940286.0, "ctime": "2002-10-18T11:24:46+00:00", "sha256_file": "1401f48bfb1254280a72ac7871473dc63314a56a9741f96c857260b5cfa8699d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 11:24:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5470", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 11:24:48", "EXIF DateTimeDigitized": "2002:10:18 11:24:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 155, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080853", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "97", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2922399d1b3e8bb0d4f26dfe55fe491c8e2831bb96b55ede35f3bf69b11d6cfe", "phash": "caf2903a0fad6d16", "dhash": "cdcd6569495965eb", "phash_int": -3.822834554638603e+18, "collected_at": "2026-05-22T04:29:36.469379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0854_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0854_IMG.JPG", "file_name": "108-0854_IMG.JPG", "file_stem": "108-0854_IMG", "file_ext": ".jpg", "file_size": 318655.0, "mtime": "2002-10-18T11:25:00+00:00", "mtime_ts": 1034940300.0, "ctime": "2002-10-18T11:25:00+00:00", "sha256_file": "ee593bb1b1e224be554a734ea76a79d87fe23e6d37d598c0085b9fddb92f498a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 11:25:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3102", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 11:25:02", "EXIF DateTimeDigitized": "2002:10:18 11:25:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1969, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080854", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "53", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "822"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01c8c21c166967a19b6c9f5dd7cf19742c1cc44956ca99d6b23501a17f8ec3e9", "phash": "bfa459598c9c4cc6", "dhash": "3e0c2437565a7931", "phash_int": -4.637483475138754e+18, "collected_at": "2026-05-22T04:29:36.487379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0855_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0855_IMG.JPG", "file_name": "108-0855_IMG.JPG", "file_stem": "108-0855_IMG", "file_ext": ".jpg", "file_size": 420805.0, "mtime": "2002-10-18T11:25:14+00:00", "mtime_ts": 1034940314.0, "ctime": "2002-10-18T11:25:14+00:00", "sha256_file": "2da4c4cbcdddaefd23a83be55e14da4ce06b74b333d9e23178fdca39ae7990db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 11:25:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4641", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 11:25:15", "EXIF DateTimeDigitized": "2002:10:18 11:25:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1696, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080855", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "79", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6413a8096f8ad90edaa613cf0482c955c071e71b64033074ccb31919b4085a78", "phash": "ba8d246466d3c99b", "dhash": "133b2b2b2b1b1b1b", "phash_int": -5.004303597298268e+18, "collected_at": "2026-05-22T04:29:36.541382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0856_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0856_IMG.JPG", "file_name": "108-0856_IMG.JPG", "file_stem": "108-0856_IMG", "file_ext": ".jpg", "file_size": 381301.0, "mtime": "2002-10-18T12:11:20+00:00", "mtime_ts": 1034943080.0, "ctime": "2002-10-18T12:11:20+00:00", "sha256_file": "ec27e13e259978a82817700bbf81a37f11c3338af33353e0b6abee2278f09971", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:11:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3586", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:11:22", "EXIF DateTimeDigitized": "2002:10:18 12:11:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 26702, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080856", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "85", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "491"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d2e1cc632f51bbec83acf329d5f268514170fe0f06f6885cbc5ab61e1a4cf7d", "phash": "9a9e78c9716c718c", "dhash": "f171f1f0f8f9f1f9", "phash_int": -7.305268738961674e+18, "collected_at": "2026-05-22T04:29:36.578553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0857_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0857_IMG.JPG", "file_name": "108-0857_IMG.JPG", "file_stem": "108-0857_IMG", "file_ext": ".jpg", "file_size": 761640.0, "mtime": "2002-10-18T12:12:14+00:00", "mtime_ts": 1034943134.0, "ctime": "2002-10-18T12:12:14+00:00", "sha256_file": "2d6328b8ecfcfab4fe59086d736c291e843492cb69a397e30ffe6f6b0aba7a30", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:12:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5607", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:12:15", "EXIF DateTimeDigitized": "2002:10:18 12:12:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[21, 18, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080857", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "97258010106ec363344b7b325ebd45b95dd3a488417314cc28aac201c9f9d577", "phash": "a594a06b95aade71", "dhash": "c6ceec6652470706", "phash_int": -6.515406376965317e+18, "collected_at": "2026-05-22T04:29:36.599781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0858_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0858_IMG.JPG", "file_name": "108-0858_IMG.JPG", "file_stem": "108-0858_IMG", "file_ext": ".jpg", "file_size": 491659.0, "mtime": "2002-10-18T12:37:10+00:00", "mtime_ts": 1034944630.0, "ctime": "2002-10-18T12:37:10+00:00", "sha256_file": "d4ce9f16094f48e5d4fbf30ee163737141843bbe64be8efa7f50494fc5edd186", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:37:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4559", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:37:12", "EXIF DateTimeDigitized": "2002:10:18 12:37:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 114, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080858", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4841"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e6804bfe89bf0fb18a962c005494e9207b08642889a4593060534aba3f55800", "phash": "a891c7e0d0a6997f", "dhash": "f0733337373767e2", "phash_int": -6.300034635327433e+18, "collected_at": "2026-05-22T04:29:36.624016+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0859_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0859_IMG.JPG", "file_name": "108-0859_IMG.JPG", "file_stem": "108-0859_IMG", "file_ext": ".jpg", "file_size": 418276.0, "mtime": "2002-10-18T12:37:22+00:00", "mtime_ts": 1034944642.0, "ctime": "2002-10-18T12:37:22+00:00", "sha256_file": "75ab72bcbabc0cc238b7a79b2f782d8084b151f4616592f2bfca1f6ba3848920", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:37:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3969", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:37:24", "EXIF DateTimeDigitized": "2002:10:18 12:37:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 165, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080859", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "823b3dfdbe144d7024eee635a890a0337680c706222e182f66f06d5b5b79fc7c", "phash": "8c91d1eada9d9c31", "dhash": "f0e377332327a3e1", "phash_int": -8.317636230156281e+18, "collected_at": "2026-05-22T04:29:36.640253+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0860_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0860_IMG.JPG", "file_name": "108-0860_IMG.JPG", "file_stem": "108-0860_IMG", "file_ext": ".jpg", "file_size": 704010.0, "mtime": "2002-10-18T12:46:22+00:00", "mtime_ts": 1034945182.0, "ctime": "2002-10-18T12:46:22+00:00", "sha256_file": "4231d76abbb3f32d45bf7638fda3c35dc4976cd643b40bce5ee9bdef173d3030", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:46:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4791", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:46:24", "EXIF DateTimeDigitized": "2002:10:18 12:46:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080860", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "879e3c296b3462e940b539575e53afb0da9fd7f567843dd2f5999c28b1b9db9e", "phash": "e60f8b73978f6090", "dhash": "60646666148786f8", "phash_int": -1.8691219917552105e+18, "collected_at": "2026-05-22T04:29:36.667518+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0861_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0861_IMG.JPG", "file_name": "108-0861_IMG.JPG", "file_stem": "108-0861_IMG", "file_ext": ".jpg", "file_size": 694363.0, "mtime": "2002-10-18T12:46:30+00:00", "mtime_ts": 1034945190.0, "ctime": "2002-10-18T12:46:30+00:00", "sha256_file": "f8fb23c68db1e77f022cac4000e7c44f013eda8c8ca8349fd8a84453c8dfd78e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:46:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4685", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:46:32", "EXIF DateTimeDigitized": "2002:10:18 12:46:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080861", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17208"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2981dec5153d4017d98491a9d1355141d7522918bc3b2d0a62d1b346815eeb5", "phash": "870f8b73178f6143", "dhash": "686466649c87f4e0", "phash_int": -8.714593427505848e+18, "collected_at": "2026-05-22T04:29:36.705762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0862_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0862_IMG.JPG", "file_name": "108-0862_IMG.JPG", "file_stem": "108-0862_IMG", "file_ext": ".jpg", "file_size": 552105.0, "mtime": "2002-10-18T12:46:36+00:00", "mtime_ts": 1034945196.0, "ctime": "2002-10-18T12:46:36+00:00", "sha256_file": "26ce41f38d05a4dd37d943532b47f9ad446c527ae1e3fc4e919373bbc9587242", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:46:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5362", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:46:38", "EXIF DateTimeDigitized": "2002:10:18 12:46:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080862", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a45f766191b9d89a09351e46c037fb093a2bc8395de6de3ec8e7b4b0b4bc1c2d", "phash": "ef82d37d8879900d", "dhash": "c1c5e5e766260737", "phash_int": -1.1881548155583488e+18, "collected_at": "2026-05-22T04:29:36.713854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0863_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0863_IMG.JPG", "file_name": "108-0863_IMG.JPG", "file_stem": "108-0863_IMG", "file_ext": ".jpg", "file_size": 539658.0, "mtime": "2002-10-18T12:47:02+00:00", "mtime_ts": 1034945222.0, "ctime": "2002-10-18T12:47:02+00:00", "sha256_file": "ea12ffe4035f24f64f9b93f2e302b8489e391a3075d770245acbf4235874bd56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5618", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:47:03", "EXIF DateTimeDigitized": "2002:10:18 12:47:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080863", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ad32bf67f729fcf542b543ad2ce86b7ea2bbf3c5f0011f2c4c36e2b0342283b4", "phash": "e780fc3d8c1eb944", "dhash": "83cbcbe7c74f2e27", "phash_int": -1.7651337126552061e+18, "collected_at": "2026-05-22T04:29:36.750210+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0864_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0864_IMG.JPG", "file_name": "108-0864_IMG.JPG", "file_stem": "108-0864_IMG", "file_ext": ".jpg", "file_size": 581725.0, "mtime": "2002-10-18T12:47:06+00:00", "mtime_ts": 1034945226.0, "ctime": "2002-10-18T12:47:06+00:00", "sha256_file": "9c171b803f8a43946c9a94b35eb9983784fa5d36fe4ed9af0220592bd3635951", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:47:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5570", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:47:07", "EXIF DateTimeDigitized": "2002:10:18 12:47:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080864", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "189", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "23298"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c63c48db826996a115ebe1805d04c71e0e05970d0e7c4d171768361b503c5508", "phash": "e580d83d8c569f63", "dhash": "83cbcbc6c70f0e27", "phash_int": -1.9092884831459986e+18, "collected_at": "2026-05-22T04:29:36.756210+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0866_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0866_IMG.JPG", "file_name": "108-0866_IMG.JPG", "file_stem": "108-0866_IMG", "file_ext": ".jpg", "file_size": 576880.0, "mtime": "2002-10-18T12:50:28+00:00", "mtime_ts": 1034945428.0, "ctime": "2002-10-18T12:50:28+00:00", "sha256_file": "166e834b81a7e76f6f874ee0508e7d3fb7a80fa9be05a24ca562ca1c1b98e145", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:50:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:50:30", "EXIF DateTimeDigitized": "2002:10:18 12:50:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080866", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8749"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7641ed8354767d705f2fcab24e28b5eee5d3fcc85fe91cff24c6235f284f8568", "phash": "e98246b589decea4", "dhash": "e38fa79396161617", "phash_int": -1.6206551703838518e+18, "collected_at": "2026-05-22T04:29:36.802213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0865_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0865_IMG.JPG", "file_name": "108-0865_IMG.JPG", "file_stem": "108-0865_IMG", "file_ext": ".jpg", "file_size": 677460.0, "mtime": "2002-10-18T12:50:20+00:00", "mtime_ts": 1034945420.0, "ctime": "2002-10-18T12:50:20+00:00", "sha256_file": "f6035410eea54e8ff98dc6a79c9de52c2316820c30d285bfdd5ab6ee3d4b02a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:50:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5394", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:50:22", "EXIF DateTimeDigitized": "2002:10:18 12:50:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080865", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4368e0ff8ce441e5423f4144ecb593eea5953dd87b650ebc112db86bca866694", "phash": "e51dfe669541b046", "dhash": "4666d6d6ce8e86cc", "phash_int": -1.937112548155216e+18, "collected_at": "2026-05-22T04:29:36.804211+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0867_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0867_IMG.JPG", "file_name": "108-0867_IMG.JPG", "file_stem": "108-0867_IMG", "file_ext": ".jpg", "file_size": 529548.0, "mtime": "2002-10-18T12:57:18+00:00", "mtime_ts": 1034945838.0, "ctime": "2002-10-18T12:57:18+00:00", "sha256_file": "d3d9aa38546a40a2c9e64b8ebbcb93f6d15a914fd02dc9da4e660faff2f1bc61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:57:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4838", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:57:19", "EXIF DateTimeDigitized": "2002:10:18 12:57:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080867", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "24809"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9c329d917497c932d698c7ff798845e764e27b98463a99fc20a2f3a327e168f", "phash": "ab84d4db3d6ec890", "dhash": "e0fcab4b9b9b2939", "phash_int": -6.087506758204471e+18, "collected_at": "2026-05-22T04:29:36.849213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0868_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0868_IMG.JPG", "file_name": "108-0868_IMG.JPG", "file_stem": "108-0868_IMG", "file_ext": ".jpg", "file_size": 457261.0, "mtime": "2002-10-18T12:57:32+00:00", "mtime_ts": 1034945852.0, "ctime": "2002-10-18T12:57:32+00:00", "sha256_file": "1abb319b130da95449cff3200e7f976e95aa060487e7957d1bf16ebe212d05cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:57:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4886", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:57:34", "EXIF DateTimeDigitized": "2002:10:18 12:57:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080868", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8885"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5db51a3b0b2ec7d9c055d3cb8e9daab706b1d0db77eb8acf790b69edc3e570e3", "phash": "963bd5b649c09cc6", "dhash": "fa3d39a9ac246466", "phash_int": -7.621262965496309e+18, "collected_at": "2026-05-22T04:29:36.862213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0869_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0869_IMG.JPG", "file_name": "108-0869_IMG.JPG", "file_stem": "108-0869_IMG", "file_ext": ".jpg", "file_size": 453888.0, "mtime": "2002-10-18T12:57:38+00:00", "mtime_ts": 1034945858.0, "ctime": "2002-10-18T12:57:38+00:00", "sha256_file": "f31bb29ad97d01d43c5ad053cd0a89413c50e006e671d18fa728852cd1430c5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 12:57:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5048", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 12:57:39", "EXIF DateTimeDigitized": "2002:10:18 12:57:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080869", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "12416"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b13d0ed5fe1557a6468e9972c9e24c1d42f04181ed1096cd203e27fabaf9b86", "phash": "dc21d2dc83cd9ec4", "dhash": "f91dbc9a3434b4a5", "phash_int": -2.5845528665880253e+18, "collected_at": "2026-05-22T04:29:36.891215+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0870_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0870_IMG.JPG", "file_name": "108-0870_IMG.JPG", "file_stem": "108-0870_IMG", "file_ext": ".jpg", "file_size": 534896.0, "mtime": "2002-10-18T13:03:46+00:00", "mtime_ts": 1034946226.0, "ctime": "2002-10-18T13:03:46+00:00", "sha256_file": "995073e23bc1a871f0be05c0d3ce68bbaa8867d53839a36b89f8bf6cda329043", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:03:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4911", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:03:48", "EXIF DateTimeDigitized": "2002:10:18 13:03:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 50, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080870", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59ac215ab00cfc52e01f56f8657485a4477868ab60a322d490e7ff6a2d089de7", "phash": "95e9ca1f36148ad3", "dhash": "fd9b6a6e6efeac8c", "phash_int": -7.644356657084593e+18, "collected_at": "2026-05-22T04:29:36.914239+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0871_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0871_IMG.JPG", "file_name": "108-0871_IMG.JPG", "file_stem": "108-0871_IMG", "file_ext": ".jpg", "file_size": 472675.0, "mtime": "2002-10-18T13:06:08+00:00", "mtime_ts": 1034946368.0, "ctime": "2002-10-18T13:06:08+00:00", "sha256_file": "11276848d1d417640f7a07c02ddf59d65f8b4c86620c9ac80016b1788f852642", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:06:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4446", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:06:09", "EXIF DateTimeDigitized": "2002:10:18 13:06:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 185, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080871", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2096"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec9a75f14509aac6ddb2501fe46b9ce1125160d9c69644d32b5b59093b6979b4", "phash": "82f7b5dab48c5b01", "dhash": "ecccc9c5d5d9d5d7", "phash_int": -9.009532578594792e+18, "collected_at": "2026-05-22T04:29:36.949293+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0872_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0872_IMG.JPG", "file_name": "108-0872_IMG.JPG", "file_stem": "108-0872_IMG", "file_ext": ".jpg", "file_size": 351439.0, "mtime": "2002-10-18T13:06:22+00:00", "mtime_ts": 1034946382.0, "ctime": "2002-10-18T13:06:22+00:00", "sha256_file": "b39f547c4f7238212c91678ec9d69e16d5943572bb4657db79b4ae366e0489c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:06:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2990", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:06:24", "EXIF DateTimeDigitized": "2002:10:18 13:06:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 967, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080872", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "78", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e16db2770ef16a777230693a751b6f25fb138f6cd499c7a2367aca14f770a6b", "phash": "f58709258e0c39df", "dhash": "c0c88c84c4969696", "phash_int": -7.546243556596628e+17, "collected_at": "2026-05-22T04:29:36.955319+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0873_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0873_IMG.JPG", "file_name": "108-0873_IMG.JPG", "file_stem": "108-0873_IMG", "file_ext": ".jpg", "file_size": 516999.0, "mtime": "2002-10-18T13:08:02+00:00", "mtime_ts": 1034946482.0, "ctime": "2002-10-18T13:08:02+00:00", "sha256_file": "f55c6109bee00902d73ff2ca1a351c70b92d8f9bf50617b7e154e94c27892c47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:08:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4403", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:08:03", "EXIF DateTimeDigitized": "2002:10:18 13:08:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 14, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080873", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3045"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf515d3e52e57adc0662354e7dd915283bf2d788f255c65469e73e948c4a4bd4", "phash": "a82d3778c1069bdb", "dhash": "173377f7b33328e0", "phash_int": -6.32834090961164e+18, "collected_at": "2026-05-22T04:29:37.018294+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0874_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0874_IMG.JPG", "file_name": "108-0874_IMG.JPG", "file_stem": "108-0874_IMG", "file_ext": ".jpg", "file_size": 502583.0, "mtime": "2002-10-18T13:09:26+00:00", "mtime_ts": 1034946566.0, "ctime": "2002-10-18T13:09:26+00:00", "sha256_file": "2b06b064941eafdc20605998ec6fccf204f8ba72f46066887cfeecc14325038f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:09:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3883", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:09:27", "EXIF DateTimeDigitized": "2002:10:18 13:09:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080874", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a724913731cbbc37d46ac6c2a4d38338040a30d407e58fd46ad5c4762ad30ca", "phash": "8670916f6691cb3b", "dhash": "b5f59de56765d4f5", "phash_int": -8.759341367587386e+18, "collected_at": "2026-05-22T04:29:37.026293+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0875_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0875_IMG.JPG", "file_name": "108-0875_IMG.JPG", "file_stem": "108-0875_IMG", "file_ext": ".jpg", "file_size": 494480.0, "mtime": "2002-10-18T13:09:40+00:00", "mtime_ts": 1034946580.0, "ctime": "2002-10-18T13:09:40+00:00", "sha256_file": "20d01a952dd07e8cc9a9c8dbe186271a6a58d4324e944214a056e6d1f10c8513", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:09:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3841", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:09:42", "EXIF DateTimeDigitized": "2002:10:18 13:09:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 9, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080875", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5850"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41266052acc3e6f0fea9877e09bad991757988f8019a63788c0f48a5ad48a3b1", "phash": "8e70916e6691cb73", "dhash": "f5e5bde5676555f4", "phash_int": -8.18288061957893e+18, "collected_at": "2026-05-22T04:29:37.057295+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0876_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0876_IMG.JPG", "file_name": "108-0876_IMG.JPG", "file_stem": "108-0876_IMG", "file_ext": ".jpg", "file_size": 392083.0, "mtime": "2002-10-18T13:10:00+00:00", "mtime_ts": 1034946600.0, "ctime": "2002-10-18T13:10:00+00:00", "sha256_file": "1e128872ba047d92e17fa02b68f1aa194d2b870efdd3d199836fc1ff9b7cc836", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:10:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2257", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:10:02", "EXIF DateTimeDigitized": "2002:10:18 13:10:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 3, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080876", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "227fb5969c860db72d60e53dd2dc5cbbb2d12950a266e16f991c2ff8f9ad39b1", "phash": "a4c3e76b35283c8b", "dhash": "48c0a1b3bebfaeb6", "phash_int": -6.574156583391446e+18, "collected_at": "2026-05-22T04:29:37.101394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0877_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0877_IMG.JPG", "file_name": "108-0877_IMG.JPG", "file_stem": "108-0877_IMG", "file_ext": ".jpg", "file_size": 478922.0, "mtime": "2002-10-18T13:10:26+00:00", "mtime_ts": 1034946626.0, "ctime": "2002-10-18T13:10:26+00:00", "sha256_file": "2440dcc5ab4e903a7ffe072a0806b533a9474d0eecc9e675c98822b6636b4c3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:10:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3571", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:10:27", "EXIF DateTimeDigitized": "2002:10:18 13:10:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 1, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080877", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2881e5ed6cf0b39679e0315a40636a8fa751ada118b309d86505019cc5ed0817", "phash": "8aaadbd5951d2a62", "dhash": "3cabc3e67cb03878", "phash_int": -8.454703640058451e+18, "collected_at": "2026-05-22T04:29:37.154150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0878_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0878_IMG.JPG", "file_name": "108-0878_IMG.JPG", "file_stem": "108-0878_IMG", "file_ext": ".jpg", "file_size": 550810.0, "mtime": "2002-10-18T13:11:02+00:00", "mtime_ts": 1034946662.0, "ctime": "2002-10-18T13:11:02+00:00", "sha256_file": "ebf533377950d10ab74130e29c16921657f6deb757e5f16e7553167f6cfc1f93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:11:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4366", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:11:03", "EXIF DateTimeDigitized": "2002:10:18 13:11:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080878", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1af92432f67633897fa337abd5e2e1ed0ca094019118f0d02aee4a4e39835221", "phash": "847e924f3dd2324d", "dhash": "fcfcfcf676fffcfe", "phash_int": -8.899514944600264e+18, "collected_at": "2026-05-22T04:29:37.160150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0879_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0879_IMG.JPG", "file_name": "108-0879_IMG.JPG", "file_stem": "108-0879_IMG", "file_ext": ".jpg", "file_size": 436866.0, "mtime": "2002-10-18T13:32:30+00:00", "mtime_ts": 1034947950.0, "ctime": "2002-10-18T13:32:30+00:00", "sha256_file": "16fb5eaa3e6b25b2fc712e42cb3097e4e5a61e7f83e2cd3d6134d8795e616969", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:32:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3313", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:32:31", "EXIF DateTimeDigitized": "2002:10:18 13:32:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 18, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080879", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf78d4aa7dc078be2ab47aa8d54c6afec71678bdd63882f488249fd38b28ddb4", "phash": "e8dcc83317a2ccec", "dhash": "b5b4b6b60e1db575", "phash_int": -1.6672376402684936e+18, "collected_at": "2026-05-22T04:29:37.205086+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0880_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0880_IMG.JPG", "file_name": "108-0880_IMG.JPG", "file_stem": "108-0880_IMG", "file_ext": ".jpg", "file_size": 402737.0, "mtime": "2002-10-18T13:32:44+00:00", "mtime_ts": 1034947964.0, "ctime": "2002-10-18T13:32:44+00:00", "sha256_file": "150a7b57e0b310a4943821af33bccf54a2d6766dc97b5e445ade37a448c8485a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:32:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2728", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:32:46", "EXIF DateTimeDigitized": "2002:10:18 13:32:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 3, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080880", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51d247bb7a4ec9d6d6bbf9029c82568cd582e1e0953751609c0c7e243b2caf5d", "phash": "c0b3ce331fc4398e", "dhash": "a9909291999ba4e0", "phash_int": -4.561075278624573e+18, "collected_at": "2026-05-22T04:29:37.226086+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0881_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0881_IMG.JPG", "file_name": "108-0881_IMG.JPG", "file_stem": "108-0881_IMG", "file_ext": ".jpg", "file_size": 449177.0, "mtime": "2002-10-18T13:32:58+00:00", "mtime_ts": 1034947978.0, "ctime": "2002-10-18T13:32:58+00:00", "sha256_file": "cb9fd56db609cebeeea268459da8f767c9c01b9a846edaae6eb5b9b00a0abc1b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:32:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3785", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:32:59", "EXIF DateTimeDigitized": "2002:10:18 13:32:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 23, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080881", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff946272516281eae000ed17722b615310dc80e8b62b486dba18ab5d82ec0f87", "phash": "9b64926c9b4364dd", "dhash": "676a665a3b3b5959", "phash_int": -7.249508505000648e+18, "collected_at": "2026-05-22T04:29:37.243175+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0882_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0882_IMG.JPG", "file_name": "108-0882_IMG.JPG", "file_stem": "108-0882_IMG", "file_ext": ".jpg", "file_size": 461823.0, "mtime": "2002-10-18T13:33:18+00:00", "mtime_ts": 1034947998.0, "ctime": "2002-10-18T13:33:18+00:00", "sha256_file": "1a08c95a42c3accd4e193cc9087604df6a15f70d063438d949390efce30d6c07", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:33:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4341", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:33:20", "EXIF DateTimeDigitized": "2002:10:18 13:33:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 30, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080882", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22ab9f242b767dc0503cf1c27934a18e265f3749031db73b1b87d22365cced4a", "phash": "a15cb26d996257a5", "dhash": "5c7c60337353cddc", "phash_int": -6.819379551951235e+18, "collected_at": "2026-05-22T04:29:37.267311+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0883_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0883_IMG.JPG", "file_name": "108-0883_IMG.JPG", "file_stem": "108-0883_IMG", "file_ext": ".jpg", "file_size": 416261.0, "mtime": "2002-10-18T13:33:44+00:00", "mtime_ts": 1034948024.0, "ctime": "2002-10-18T13:33:44+00:00", "sha256_file": "fece6a03fde4f9ce031204e59bf7cd8bdfbcd573648642c402c75547a7772aaf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:33:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3007", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:33:46", "EXIF DateTimeDigitized": "2002:10:18 13:33:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080883", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6437"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e4f11ff045b277fc85eb150ea533e9d08c56bdad8f002e40243ab8b128f6191", "phash": "e118e738cf10dfa2", "dhash": "e99292919b96cc4c", "phash_int": -2.2267757845565358e+18, "collected_at": "2026-05-22T04:29:37.280428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0884_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0884_IMG.JPG", "file_name": "108-0884_IMG.JPG", "file_stem": "108-0884_IMG", "file_ext": ".jpg", "file_size": 419108.0, "mtime": "2002-10-18T13:34:00+00:00", "mtime_ts": 1034948040.0, "ctime": "2002-10-18T13:34:00+00:00", "sha256_file": "8dbeda25de1fcdb4fb3713f074c1965350f8fd87d864f50520e6843016d3afbe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:34:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3575", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:34:01", "EXIF DateTimeDigitized": "2002:10:18 13:34:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 18, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080884", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5379"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b86cfc019f4ba007470b03597bad0e9b787d04e16b55d9b9c8d53ac572fca6a0", "phash": "9f40f740bc4d3366", "dhash": "6de1f8b3b3332e3c", "phash_int": -6.971300365760384e+18, "collected_at": "2026-05-22T04:29:37.300492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0885_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0885_IMG.JPG", "file_name": "108-0885_IMG.JPG", "file_stem": "108-0885_IMG", "file_ext": ".jpg", "file_size": 399260.0, "mtime": "2002-10-18T13:34:20+00:00", "mtime_ts": 1034948060.0, "ctime": "2002-10-18T13:34:20+00:00", "sha256_file": "0b430d0deebeb733cc3030d7eb157687bffe4655a58daad093be2fe8e80f16c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:34:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2874", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:34:21", "EXIF DateTimeDigitized": "2002:10:18 13:34:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080885", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5982"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1702f588f833f742262e58f2b18fd0367335cdefece84a77ba2a548f4b63a72", "phash": "f403f7c107f81c3c", "dhash": "cccea64c06242424", "phash_int": -8.635742950905539e+17, "collected_at": "2026-05-22T04:29:37.317492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0886_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0886_IMG.JPG", "file_name": "108-0886_IMG.JPG", "file_stem": "108-0886_IMG", "file_ext": ".jpg", "file_size": 432076.0, "mtime": "2002-10-18T13:34:38+00:00", "mtime_ts": 1034948078.0, "ctime": "2002-10-18T13:34:38+00:00", "sha256_file": "8b68d1baa68887826e34aeb8ae4e753302d9b2cee8c9319d6cf38d2e2dd579b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:34:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3751", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:34:39", "EXIF DateTimeDigitized": "2002:10:18 13:34:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 71, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080886", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5982"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55312667fc045417813701f1ba8ff6261ea0b1a8949ca2cc9c3164cc7bc8e5f3", "phash": "b84fa27f99807f02", "dhash": "4de1f8f3332e8e8f", "phash_int": -5.165731578650788e+18, "collected_at": "2026-05-22T04:29:37.356409+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0887_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0887_IMG.JPG", "file_name": "108-0887_IMG.JPG", "file_stem": "108-0887_IMG", "file_ext": ".jpg", "file_size": 446691.0, "mtime": "2002-10-18T13:35:28+00:00", "mtime_ts": 1034948128.0, "ctime": "2002-10-18T13:35:28+00:00", "sha256_file": "b9c48d911719b5a4c0b1e74907268ea5d26859c230816b297ba1db939b1d07db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:35:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4327", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:35:30", "EXIF DateTimeDigitized": "2002:10:18 13:35:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 423, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080887", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8654"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c15f526459c7c035ef0d68ad2fede751021c0e603a6356380d2461762e95247", "phash": "f70e83b44e07b8a5", "dhash": "6868f5652e1c5e58", "phash_int": -6.444328862409215e+17, "collected_at": "2026-05-22T04:29:37.359409+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0889_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0889_IMG.JPG", "file_name": "108-0889_IMG.JPG", "file_stem": "108-0889_IMG", "file_ext": ".jpg", "file_size": 412034.0, "mtime": "2002-10-18T13:37:18+00:00", "mtime_ts": 1034948238.0, "ctime": "2002-10-18T13:37:18+00:00", "sha256_file": "8ebeb2799d22004b9ad34c5fd05133560e2eb493474c1229e4d8552916de944c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:37:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3160", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:37:20", "EXIF DateTimeDigitized": "2002:10:18 13:37:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080889", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8402"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a79cc87d1ad29c31f50752f7abadd6b761d3124dee08835fbffe4b3290b49a76", "phash": "a95ba656adc88d4a", "dhash": "d85c5393abae8787", "phash_int": -6.243213567206061e+18, "collected_at": "2026-05-22T04:29:37.427414+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0888_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0888_IMG.JPG", "file_name": "108-0888_IMG.JPG", "file_stem": "108-0888_IMG", "file_ext": ".jpg", "file_size": 408619.0, "mtime": "2002-10-18T13:35:48+00:00", "mtime_ts": 1034948148.0, "ctime": "2002-10-18T13:35:48+00:00", "sha256_file": "8d0a66592b13bfced5ab8fae23e45d5fd66af8ac3a36066c4678d8fd8e035853", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:35:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3424", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:35:50", "EXIF DateTimeDigitized": "2002:10:18 13:35:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 13, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080888", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3576"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b342acc61fd24bb1f72b05dfd8017b18f1db51be599114cbb0c9a1dd05bfe6a5", "phash": "ad42b753b4ac5255", "dhash": "d9d1f1a776132726", "phash_int": -5.962001386543754e+18, "collected_at": "2026-05-22T04:29:37.430412+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0890_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0890_IMG.JPG", "file_name": "108-0890_IMG.JPG", "file_stem": "108-0890_IMG", "file_ext": ".jpg", "file_size": 493646.0, "mtime": "2002-10-18T13:37:44+00:00", "mtime_ts": 1034948264.0, "ctime": "2002-10-18T13:37:44+00:00", "sha256_file": "2289260397dbb078133a73ae999b0c20add7fa8732fb5dfa42d4759b0790702d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:37:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4093", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:37:45", "EXIF DateTimeDigitized": "2002:10:18 13:37:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 33, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080890", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6962bbb6fb0fb0e6897f7c0ef5c75aa768059da592ad0f6eee3083a565dd66e4", "phash": "9511ac25afd21b9b", "dhash": "ba5ad96b7e9eb667", "phash_int": -7.705188209590658e+18, "collected_at": "2026-05-22T04:29:37.512110+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0891_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0891_IMG.JPG", "file_name": "108-0891_IMG.JPG", "file_stem": "108-0891_IMG", "file_ext": ".jpg", "file_size": 421963.0, "mtime": "2002-10-18T13:37:56+00:00", "mtime_ts": 1034948276.0, "ctime": "2002-10-18T13:37:56+00:00", "sha256_file": "f80f21170c24a2292b662d217f0e081ba701619e608c28d16e2bdc777769a69c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:37:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2622", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:37:57", "EXIF DateTimeDigitized": "2002:10:18 13:37:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080891", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5774741d3d8cdb155432cbf35788c2ceb0362e488e952113cbe5381a857ba826", "phash": "ad5aad5528c5133d", "dhash": "a6bd392106465677", "phash_int": -5.95525697597623e+18, "collected_at": "2026-05-22T04:29:37.516102+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0892_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0892_IMG.JPG", "file_name": "108-0892_IMG.JPG", "file_stem": "108-0892_IMG", "file_ext": ".jpg", "file_size": 406002.0, "mtime": "2002-10-18T13:44:38+00:00", "mtime_ts": 1034948678.0, "ctime": "2002-10-18T13:44:38+00:00", "sha256_file": "b883c752977e9dbaf60fbe7a454d0d0373e5f72124543395b3efc5af69ac47c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:44:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2407", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:44:39", "EXIF DateTimeDigitized": "2002:10:18 13:44:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080892", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6580"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9eadb3431d6e1f809e25188730b390a8a020d17754831ae59a86a83ba757bf92", "phash": "8c73338c7323d5cc", "dhash": "a0a0a28bb6b6b767", "phash_int": -8.326254607757749e+18, "collected_at": "2026-05-22T04:29:37.576907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0893_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0893_IMG.JPG", "file_name": "108-0893_IMG.JPG", "file_stem": "108-0893_IMG", "file_ext": ".jpg", "file_size": 395557.0, "mtime": "2002-10-18T13:44:52+00:00", "mtime_ts": 1034948692.0, "ctime": "2002-10-18T13:44:52+00:00", "sha256_file": "5d8e58105e56de743c91a19c2edcaa48dab389d0c0498e60daeb508718d11a43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:44:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2774", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:44:53", "EXIF DateTimeDigitized": "2002:10:18 13:44:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 9, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080893", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "12291"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e50d8810b8da77848280dc683836d8c4aee3e1d2cdc30842d6e2303f2001dd59", "phash": "8c9f73218cca5337", "dhash": "d09854b6a292898a", "phash_int": -8.313799799169461e+18, "collected_at": "2026-05-22T04:29:37.579908+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0894_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0894_IMG.JPG", "file_name": "108-0894_IMG.JPG", "file_stem": "108-0894_IMG", "file_ext": ".jpg", "file_size": 391720.0, "mtime": "2002-10-18T13:45:14+00:00", "mtime_ts": 1034948714.0, "ctime": "2002-10-18T13:45:14+00:00", "sha256_file": "4fa0fb27df5708daf8d17f834e5fb2a6cdaa9b70eaf296c2e8120659cca8efe5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:45:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2919", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:45:16", "EXIF DateTimeDigitized": "2002:10:18 13:45:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 9, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080894", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6580"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99503e2fb8ba23f713b525392f8d6bfad3908e5f6e9f3c7fafb005f98df59904", "phash": "8c8c7333acecd25c", "dhash": "d8a6a5a7b7d98a0c", "phash_int": -8.31914774587842e+18, "collected_at": "2026-05-22T04:29:37.646059+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0895_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0895_IMG.JPG", "file_name": "108-0895_IMG.JPG", "file_stem": "108-0895_IMG", "file_ext": ".jpg", "file_size": 446465.0, "mtime": "2002-10-18T13:48:40+00:00", "mtime_ts": 1034948920.0, "ctime": "2002-10-18T13:48:40+00:00", "sha256_file": "8ffa46ad9504df3f4b4c82df8a3b256adefbe4f856eb87706493982939867fbc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:48:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4281", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:48:41", "EXIF DateTimeDigitized": "2002:10:18 13:48:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 93, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080895", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2a1f420560571b4bc5964a26f700af0eedab1fac16f47fb55df95f18adedefc", "phash": "89768d728d6255ae", "dhash": "a8b8a327b1d9f373", "phash_int": -8.541484120123747e+18, "collected_at": "2026-05-22T04:29:37.650114+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0896_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0896_IMG.JPG", "file_name": "108-0896_IMG.JPG", "file_stem": "108-0896_IMG", "file_ext": ".jpg", "file_size": 349595.0, "mtime": "2002-10-18T13:49:58+00:00", "mtime_ts": 1034948998.0, "ctime": "2002-10-18T13:49:58+00:00", "sha256_file": "99311c0ca1c237a049ae6578de558c1efce2950f5eebbf3711f5d0e551d469cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:50:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3527", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:50:00", "EXIF DateTimeDigitized": "2002:10:18 13:50:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080896", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2433"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e78ba5fc5c59b79957e3a94541800d7bb74999b2f15cff0417a7baa5591af4fa", "phash": "b34cf116837e4bb0", "dhash": "f038e12d4c4c0c08", "phash_int": -5.526777563692774e+18, "collected_at": "2026-05-22T04:29:37.694114+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0898_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0898_IMG.JPG", "file_name": "108-0898_IMG.JPG", "file_stem": "108-0898_IMG", "file_ext": ".jpg", "file_size": 425810.0, "mtime": "2002-10-18T13:52:10+00:00", "mtime_ts": 1034949130.0, "ctime": "2002-10-18T13:52:10+00:00", "sha256_file": "55e6f73f1af1652f97af12c85da215bae7cff0faad1544912b8284b851ed7073", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:52:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3115", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:52:11", "EXIF DateTimeDigitized": "2002:10:18 13:52:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080898", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4153"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "047b1705feec16ddd85f74936f3abc19b9106bdf156e4a50839bdbd7f1590b23", "phash": "c14a343b95cbe56c", "dhash": "8131e9c9930b9b96", "phash_int": -4.5187418455919887e+18, "collected_at": "2026-05-22T04:29:37.699115+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0899_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0899_IMG.JPG", "file_name": "108-0899_IMG.JPG", "file_stem": "108-0899_IMG", "file_ext": ".jpg", "file_size": 433688.0, "mtime": "2002-10-18T13:52:28+00:00", "mtime_ts": 1034949148.0, "ctime": "2002-10-18T13:52:28+00:00", "sha256_file": "abbf06df06544cf522a2ae2ecb5762d66c9bc61668f6f7638c76bc5355afa78a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:52:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3722", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:52:29", "EXIF DateTimeDigitized": "2002:10:18 13:52:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 15, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080899", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3283"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ed013d49a1838ff291c62b883e1de9cfa65ce99f6250035366f60a780fb0bb7", "phash": "fe00c573c6fb8c28", "dhash": "6e3635352c4d5e64", "phash_int": -1.4389808702557078e+17, "collected_at": "2026-05-22T04:29:37.747118+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0900_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\108-0900_IMG.JPG", "file_name": "108-0900_IMG.JPG", "file_stem": "108-0900_IMG", "file_ext": ".jpg", "file_size": 441604.0, "mtime": "2002-10-18T13:53:16+00:00", "mtime_ts": 1034949196.0, "ctime": "2002-10-18T13:53:16+00:00", "sha256_file": "857dde1c1e4c8dccb42588b6d0cca74defb9cbca7f7516b62297561374fb1c4a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:53:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4464", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:53:18", "EXIF DateTimeDigitized": "2002:10:18 13:53:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 488, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1080900", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "108", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4128"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83d5e63b736c0ef000ba665ac2a91d5e0bf119b59b91f55785fa5d81e0e01902", "phash": "aa23445893d66ded", "dhash": "e7eb7b9b9b93b5b1", "phash_int": -6.187026315848816e+18, "collected_at": "2026-05-22T04:29:37.758246+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0901_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0901_IMG.JPG", "file_name": "109-0901_IMG.JPG", "file_stem": "109-0901_IMG", "file_ext": ".jpg", "file_size": 478502.0, "mtime": "2002-10-18T13:57:48+00:00", "mtime_ts": 1034949468.0, "ctime": "2002-10-18T13:57:48+00:00", "sha256_file": "e3bfbe92271576717728b8879f663af2f480a8a7ec74bd173e844e69ab89d821", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:57:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4555", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:57:49", "EXIF DateTimeDigitized": "2002:10:18 13:57:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 40, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090901", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "12855"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b09be7cd415d0121ecfcf46aaff0dbe5d93ab723da48316a9d9b1b3798a2a019", "phash": "e0368b708f3c75c3", "dhash": "96b5b5b6969493cb", "phash_int": -2.2904900449156163e+18, "collected_at": "2026-05-22T04:29:37.844319+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0902_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0902_IMG.JPG", "file_name": "109-0902_IMG.JPG", "file_stem": "109-0902_IMG", "file_ext": ".jpg", "file_size": 524649.0, "mtime": "2002-10-18T13:58:44+00:00", "mtime_ts": 1034949524.0, "ctime": "2002-10-18T13:58:44+00:00", "sha256_file": "7a8f285fac4484b0ac91564163bb089a3852ebca78463bce1ab2cb77e3b71daa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:58:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5215", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:58:45", "EXIF DateTimeDigitized": "2002:10:18 13:58:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 39, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090902", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3981"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7dd04dc7ff5eaca1e0c8f26619f885fc6200cc17eedfeebbbda247c9bf13a8e3", "phash": "e01f37ead4e9900b", "dhash": "b63cd991d5858784", "phash_int": -2.297055803201712e+18, "collected_at": "2026-05-22T04:29:37.847320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0903_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0903_IMG.JPG", "file_name": "109-0903_IMG.JPG", "file_stem": "109-0903_IMG", "file_ext": ".jpg", "file_size": 470681.0, "mtime": "2002-10-18T13:59:14+00:00", "mtime_ts": 1034949554.0, "ctime": "2002-10-18T13:59:14+00:00", "sha256_file": "64cd8715b62132f4398a98e6d910c90a301c64aac3bc39b6a68a10b47f24e028", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:59:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3952", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:59:15", "EXIF DateTimeDigitized": "2002:10:18 13:59:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 40, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090903", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4224"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e8468d36bd66573d26206211571f223252e2ea492cf83e46d83833f9979d953", "phash": "a34a5c16e1a14b7f", "dhash": "8e26dbdbddccaea6", "phash_int": -6.680425843906229e+18, "collected_at": "2026-05-22T04:29:37.920917+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0904_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0904_IMG.JPG", "file_name": "109-0904_IMG.JPG", "file_stem": "109-0904_IMG", "file_ext": ".jpg", "file_size": 414686.0, "mtime": "2002-10-18T13:59:42+00:00", "mtime_ts": 1034949582.0, "ctime": "2002-10-18T13:59:42+00:00", "sha256_file": "480a190bf2bc006bed59670d8f13aafc4e62efbc432856371bafdc9a4462093a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 13:59:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3888", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 13:59:44", "EXIF DateTimeDigitized": "2002:10:18 13:59:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 91, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090904", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2229"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dcdf510145b1d32295e4f6eb94e432061fff88586ee12b0b33170da4491bb9c7", "phash": "95a46b6a6d999a64", "dhash": "2e6c7cfcb4b8999a", "phash_int": -7.663882561028253e+18, "collected_at": "2026-05-22T04:29:37.927916+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0905_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0905_IMG.JPG", "file_name": "109-0905_IMG.JPG", "file_stem": "109-0905_IMG", "file_ext": ".jpg", "file_size": 436067.0, "mtime": "2002-10-18T14:00:08+00:00", "mtime_ts": 1034949608.0, "ctime": "2002-10-18T14:00:08+00:00", "sha256_file": "deb8588d72a63d78286c70907e2060b18642d5b09f8fbc6b5b6127db465ea20a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:00:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3532", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:00:10", "EXIF DateTimeDigitized": "2002:10:18 14:00:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 10, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090905", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "13900"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f82552f1c6ed89767ed3465ed8cfbbb2fc4c448e38e8d5c4b73aaf0aa92c14f8", "phash": "816b3f9c9e2e4c89", "dhash": "50d0d3d8d8dcdcdc", "phash_int": -9.121126678407525e+18, "collected_at": "2026-05-22T04:29:37.974467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0906_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0906_IMG.JPG", "file_name": "109-0906_IMG.JPG", "file_stem": "109-0906_IMG", "file_ext": ".jpg", "file_size": 400921.0, "mtime": "2002-10-18T14:00:36+00:00", "mtime_ts": 1034949636.0, "ctime": "2002-10-18T14:00:36+00:00", "sha256_file": "522e647a3feca9b999d2e72365ed9fb0f50e8e8f795b9685ff95ecfc05bfbefa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:00:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3044", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:00:38", "EXIF DateTimeDigitized": "2002:10:18 14:00:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 8, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090906", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5917"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "66ff84b388fec1f7a2c523db96b1d855c9c2c6be2abfed60df2bc5e8900b531f", "phash": "aacd5736b2d0c92a", "dhash": "2b72b3962d0d0d4d", "phash_int": -6.13915482459624e+18, "collected_at": "2026-05-22T04:29:37.978466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0907_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0907_IMG.JPG", "file_name": "109-0907_IMG.JPG", "file_stem": "109-0907_IMG", "file_ext": ".jpg", "file_size": 380424.0, "mtime": "2002-10-18T14:01:00+00:00", "mtime_ts": 1034949660.0, "ctime": "2002-10-18T14:01:00+00:00", "sha256_file": "ee28ef1fa65014dbb54ba836026e2553729739fe31792be027b69c8e4e405526", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:01:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2550", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:01:02", "EXIF DateTimeDigitized": "2002:10:18 14:01:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 6, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090907", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2538"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4cc92cf4f5cb9f9891fc184036ee659337d4ba4e2542e26c3746c3cd69cf5510", "phash": "926d4b6db2966932", "dhash": "0884ac8c9cb2ecbd", "phash_int": -7.895571637190892e+18, "collected_at": "2026-05-22T04:29:38.073286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0908_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0908_IMG.JPG", "file_name": "109-0908_IMG.JPG", "file_stem": "109-0908_IMG", "file_ext": ".jpg", "file_size": 395622.0, "mtime": "2002-10-18T14:01:14+00:00", "mtime_ts": 1034949674.0, "ctime": "2002-10-18T14:01:14+00:00", "sha256_file": "196f8f3e2a1ba30fc6c76575a5899ab020a316fd2c9fb716b9acf9a701e2685f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:01:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3228", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:01:15", "EXIF DateTimeDigitized": "2002:10:18 14:01:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090908", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2017"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27531e84a560f9f9b2c1f489a8d886e20474def765cf4185efbdd59ad75ccf4c", "phash": "fd6dd04a8e61d268", "dhash": "241636323378969c", "phash_int": -1.8526299101738947e+17, "collected_at": "2026-05-22T04:29:38.079286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0909_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0909_IMG.JPG", "file_name": "109-0909_IMG.JPG", "file_stem": "109-0909_IMG", "file_ext": ".jpg", "file_size": 432094.0, "mtime": "2002-10-18T14:01:32+00:00", "mtime_ts": 1034949692.0, "ctime": "2002-10-18T14:01:32+00:00", "sha256_file": "494f34362e9e02aa554e0d577f6e0ebeed3186f285ca9c2d21e89d3e270221e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:01:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3578", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:01:34", "EXIF DateTimeDigitized": "2002:10:18 14:01:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 40, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090909", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6655"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a6b3c336b8ffb03d7d343af8f543ad4019170a371befc70a75816efac110dc0", "phash": "c63931cf543bb146", "dhash": "e4e45aa4e4e767e4", "phash_int": -4.1632416139861233e+18, "collected_at": "2026-05-22T04:29:38.103587+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0910_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0910_IMG.JPG", "file_name": "109-0910_IMG.JPG", "file_stem": "109-0910_IMG", "file_ext": ".jpg", "file_size": 380909.0, "mtime": "2002-10-18T14:01:56+00:00", "mtime_ts": 1034949716.0, "ctime": "2002-10-18T14:01:56+00:00", "sha256_file": "272e88f53056a83780dc458b7f54b430e495ac8898cff33d4567e6e9e06dd71f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:01:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2868", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:01:57", "EXIF DateTimeDigitized": "2002:10:18 14:01:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090910", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "832706a186228e37aba11d1b66c48801c01c0c4d4c88934f0b91666068d79ab0", "phash": "b46eda89659a24b5", "dhash": "26252626262678bc", "phash_int": -5.445174615794376e+18, "collected_at": "2026-05-22T04:29:38.133812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0911_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0911_IMG.JPG", "file_name": "109-0911_IMG.JPG", "file_stem": "109-0911_IMG", "file_ext": ".jpg", "file_size": 373526.0, "mtime": "2002-10-18T14:02:18+00:00", "mtime_ts": 1034949738.0, "ctime": "2002-10-18T14:02:18+00:00", "sha256_file": "67e345dfcbced8b5edde8af7dee66182ea096a81790b38438bde73d02e87d5eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:02:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2670", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:02:20", "EXIF DateTimeDigitized": "2002:10:18 14:02:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 6, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090911", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "17612"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf0d02dfe162399857be8f0a9b3da016ac6ab52a327e38c1485d343c5e763f8a", "phash": "b564d28a6ed26e8c", "dhash": "2526a64626ea7c3e", "phash_int": -5.375940563166925e+18, "collected_at": "2026-05-22T04:29:38.142816+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0912_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0912_IMG.JPG", "file_name": "109-0912_IMG.JPG", "file_stem": "109-0912_IMG", "file_ext": ".jpg", "file_size": 449368.0, "mtime": "2002-10-18T14:02:32+00:00", "mtime_ts": 1034949752.0, "ctime": "2002-10-18T14:02:32+00:00", "sha256_file": "63147a610bdbc94c54c68215630d18ddd5d2104253b2ab15b3e4a664a182ec45", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:02:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3055", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:02:33", "EXIF DateTimeDigitized": "2002:10:18 14:02:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 100, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090912", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1402"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "514463aec9a83c17749ab5d517bc35df9b3b7646839e49b6c0516a5ea35b1017", "phash": "96b2312525b4b6f6", "dhash": "8ca86c6460606060", "phash_int": -7.587948386549713e+18, "collected_at": "2026-05-22T04:29:38.192817+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0913_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0913_IMG.JPG", "file_name": "109-0913_IMG.JPG", "file_stem": "109-0913_IMG", "file_ext": ".jpg", "file_size": 434311.0, "mtime": "2002-10-18T14:05:38+00:00", "mtime_ts": 1034949938.0, "ctime": "2002-10-18T14:05:38+00:00", "sha256_file": "f344bdd616263a23c41643fe7180e6fad4480d4f5f785ba8649488a2e0007641", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:05:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4421", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:05:39", "EXIF DateTimeDigitized": "2002:10:18 14:05:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 317, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090913", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3718"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "439d16d37b43b6471ac3f6302e583ef59d39bc08952f512c55c692f9f5663f0a", "phash": "d3472d38b8b120ef", "dhash": "c0e2c9c969d85c58", "phash_int": -3.222557286720266e+18, "collected_at": "2026-05-22T04:29:38.197965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0914_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0914_IMG.JPG", "file_name": "109-0914_IMG.JPG", "file_stem": "109-0914_IMG", "file_ext": ".jpg", "file_size": 359538.0, "mtime": "2002-10-18T14:05:48+00:00", "mtime_ts": 1034949948.0, "ctime": "2002-10-18T14:05:48+00:00", "sha256_file": "b885aa0715bb08b1df5d61ce43d4df096d192a22a0691022dbe48667f302600d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:05:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3857", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:05:50", "EXIF DateTimeDigitized": "2002:10:18 14:05:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090914", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "881"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e80027d429b3592f2884bef246250432beb8d024aa6f003a84192b0d3b0a41fa", "phash": "c5c6643899db652e", "dhash": "c6e6e6e83ae67356", "phash_int": -4.1955558085867996e+18, "collected_at": "2026-05-22T04:29:38.235024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0915_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0915_IMG.JPG", "file_name": "109-0915_IMG.JPG", "file_stem": "109-0915_IMG", "file_ext": ".jpg", "file_size": 455654.0, "mtime": "2002-10-18T14:05:58+00:00", "mtime_ts": 1034949958.0, "ctime": "2002-10-18T14:05:58+00:00", "sha256_file": "2b24cce3d0b3ce1c071916e01c0efaff6ea8cc987c03638dc66627f0b569e8ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:05:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4171", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:05:59", "EXIF DateTimeDigitized": "2002:10:18 14:05:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 422, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090915", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1186"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e76e6d29f475b9663a2136965a7263968ed2e54615e49a00fcccae6a69ba8d52", "phash": "a5515a1e1fb494ad", "dhash": "98d2d6c646ce86ce", "phash_int": -6.534342498910432e+18, "collected_at": "2026-05-22T04:29:38.249214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0916_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0916_IMG.JPG", "file_name": "109-0916_IMG.JPG", "file_stem": "109-0916_IMG", "file_ext": ".jpg", "file_size": 510910.0, "mtime": "2002-10-18T14:06:14+00:00", "mtime_ts": 1034949974.0, "ctime": "2002-10-18T14:06:14+00:00", "sha256_file": "82a8f539eb490c4806738241cc27df4d031fdbb42f14a618a8922250bfa66663", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:06:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4715", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:06:16", "EXIF DateTimeDigitized": "2002:10:18 14:06:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090916", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2447"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "724c5fbc00fedcee6f9e3a4975a9cc6d77fb8306b081c2f26c1a826cddeb901a", "phash": "976e2d3138b391f0", "dhash": "6260696928587c34", "phash_int": -7.535035437116322e+18, "collected_at": "2026-05-22T04:29:38.289292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0917_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0917_IMG.JPG", "file_name": "109-0917_IMG.JPG", "file_stem": "109-0917_IMG", "file_ext": ".jpg", "file_size": 511826.0, "mtime": "2002-10-18T14:06:52+00:00", "mtime_ts": 1034950012.0, "ctime": "2002-10-18T14:06:52+00:00", "sha256_file": "7b0c294cb4034f9f1efff34bfbbb82cb314f7f9f973af6c39d6709e79019ef7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:06:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4065", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:06:54", "EXIF DateTimeDigitized": "2002:10:18 14:06:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 443, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090917", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd02f4730e5315089893bf9ede343f677d5927afebc25fb51851ff4ade5af1b9", "phash": "95476e9831999667", "dhash": "bb6d6c9edef2f6ce", "phash_int": -7.690056238765599e+18, "collected_at": "2026-05-22T04:29:38.321514+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0918_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0918_IMG.JPG", "file_name": "109-0918_IMG.JPG", "file_stem": "109-0918_IMG", "file_ext": ".jpg", "file_size": 490163.0, "mtime": "2002-10-18T14:07:02+00:00", "mtime_ts": 1034950022.0, "ctime": "2002-10-18T14:07:02+00:00", "sha256_file": "fc299291d69f24daf34d3dafc1b29c256cb7b1723101b6f9fcc364d549b6a49c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:07:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3535", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:07:04", "EXIF DateTimeDigitized": "2002:10:18 14:07:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 442, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090918", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "141", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "881"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b5fdf37f5b3fdb0981c70eb5f9ff3dab001582b09a3b653c3a8223fbe6a9b21", "phash": "a44c523327bbe49d", "dhash": "86b0a6a6061e1c4c", "phash_int": -6.607816173595926e+18, "collected_at": "2026-05-22T04:29:38.356603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0919_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0919_IMG.JPG", "file_name": "109-0919_IMG.JPG", "file_stem": "109-0919_IMG", "file_ext": ".jpg", "file_size": 479149.0, "mtime": "2002-10-18T14:07:40+00:00", "mtime_ts": 1034950060.0, "ctime": "2002-10-18T14:07:40+00:00", "sha256_file": "219ffb0cfd4abb56a450f54b7f5f61217fb13990566002e6d72e0b339ab57719", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:07:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4508", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:07:41", "EXIF DateTimeDigitized": "2002:10:18 14:07:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 279, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090919", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d10dd428f38e63307350a24ef8b6abf020ffcd8cafbc2f57e9da28dd92862820", "phash": "b258590692b3bd75", "dhash": "30032b2fadad6f5f", "phash_int": -5.595624652241913e+18, "collected_at": "2026-05-22T04:29:38.376678+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0920_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0920_IMG.JPG", "file_name": "109-0920_IMG.JPG", "file_stem": "109-0920_IMG", "file_ext": ".jpg", "file_size": 480099.0, "mtime": "2002-10-18T14:07:50+00:00", "mtime_ts": 1034950070.0, "ctime": "2002-10-18T14:07:50+00:00", "sha256_file": "0d99aeea0a1f70926f53f69c28e742a6b5476a3d698e1a56c56158aa3f095ee5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:07:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4889", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:07:51", "EXIF DateTimeDigitized": "2002:10:18 14:07:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 99, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090920", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1412"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "826454ce1a257b122a19097a0212a7543fbf8a25cd145afd1c3360a3fd701c64", "phash": "ca0439f3d2ac7ce8", "dhash": "84c0e6e141030313", "phash_int": -3.8899204587669105e+18, "collected_at": "2026-05-22T04:29:38.419756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0921_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0921_IMG.JPG", "file_name": "109-0921_IMG.JPG", "file_stem": "109-0921_IMG", "file_ext": ".jpg", "file_size": 552029.0, "mtime": "2002-10-18T14:12:24+00:00", "mtime_ts": 1034950344.0, "ctime": "2002-10-18T14:12:24+00:00", "sha256_file": "0c134f53ff424477de14d62016e5b5cf16ef628d452c438f79b5a62b1712a339", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:12:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5101", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:12:25", "EXIF DateTimeDigitized": "2002:10:18 14:12:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090921", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "184", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f46c031cccc1acec83765e72ab9234fddad18e6651d3d7eb5341f187b366fd6", "phash": "95cbe538a070f59c", "dhash": "967254d4556464c6", "phash_int": -7.65277111041334e+18, "collected_at": "2026-05-22T04:29:38.424755+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0922_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0922_IMG.JPG", "file_name": "109-0922_IMG.JPG", "file_stem": "109-0922_IMG", "file_ext": ".jpg", "file_size": 383763.0, "mtime": "2002-10-18T14:12:44+00:00", "mtime_ts": 1034950364.0, "ctime": "2002-10-18T14:12:44+00:00", "sha256_file": "f576a36832c681cbbd9561c6565d409e6a76d2d949c23b9660fa0894441cef86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:12:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4549", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:12:46", "EXIF DateTimeDigitized": "2002:10:18 14:12:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[21, 54, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090922", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "231", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bed8eeeab0ab4563aa8ab30a8cf78a6fc54973029b5d295f9a1fe034ef87c58b", "phash": "fe99cc939944750a", "dhash": "3b23251d392d2323", "phash_int": -1.0082458233546622e+17, "collected_at": "2026-05-22T04:29:38.459884+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0923_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0923_IMG.JPG", "file_name": "109-0923_IMG.JPG", "file_stem": "109-0923_IMG", "file_ext": ".jpg", "file_size": 440954.0, "mtime": "2002-10-18T14:12:58+00:00", "mtime_ts": 1034950378.0, "ctime": "2002-10-18T14:12:58+00:00", "sha256_file": "7d3347f667cf40ccfbfac4626dc43639be16f528aa8991a507dccdbaf01d2982", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:13:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5128", "EXIF ExposureTime": "1/40", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:13:00", "EXIF DateTimeDigitized": "2002:10:18 14:13:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090923", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5173"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa3dfd333260a206a4a3335668812ddcc160c05c7e87dbdc1aae8988f890410d", "phash": "e08816f749b19f96", "dhash": "9f939393970f8e8d", "phash_int": -2.267537161031934e+18, "collected_at": "2026-05-22T04:29:38.472884+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0925_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0925_IMG.JPG", "file_name": "109-0925_IMG.JPG", "file_stem": "109-0925_IMG", "file_ext": ".jpg", "file_size": 574192.0, "mtime": "2002-10-18T14:16:34+00:00", "mtime_ts": 1034950594.0, "ctime": "2002-10-18T14:16:34+00:00", "sha256_file": "03ffd0214fdde93b6d98b7a6d591de583e04afa23e3d1c4b56b0d97af02e6263", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:16:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4715", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:16:35", "EXIF DateTimeDigitized": "2002:10:18 14:16:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090925", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e30683beebd8a45feae92f201875666ccd428ac86fff170604a67ae82fef0d78", "phash": "e0c6c6b1538b9d53", "dhash": "80a6a595989a9780", "phash_int": -2.2498924989118144e+18, "collected_at": "2026-05-22T04:29:38.532146+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0924_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0924_IMG.JPG", "file_name": "109-0924_IMG.JPG", "file_stem": "109-0924_IMG", "file_ext": ".jpg", "file_size": 599349.0, "mtime": "2002-10-18T14:16:26+00:00", "mtime_ts": 1034950586.0, "ctime": "2002-10-18T14:16:26+00:00", "sha256_file": "e2a18a58d8e9b14488abf32e919b29da4cdcefac9b6a97d12fe4671d54a43c86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:16:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4780", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:16:28", "EXIF DateTimeDigitized": "2002:10:18 14:16:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090924", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "124be5c1e8a2b9411d1e5e020d9680c20bab6922353ae62ccae1bea53582bf66", "phash": "dbcbc5b82e969062", "dhash": "e0e0c96191b1d4e0", "phash_int": -2.608774164284797e+18, "collected_at": "2026-05-22T04:29:38.542144+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0926_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0926_IMG.JPG", "file_name": "109-0926_IMG.JPG", "file_stem": "109-0926_IMG", "file_ext": ".jpg", "file_size": 428820.0, "mtime": "2002-10-18T14:18:56+00:00", "mtime_ts": 1034950736.0, "ctime": "2002-10-18T14:18:56+00:00", "sha256_file": "3277535765157412a380b516ec4745299cbc45aed4850db94fdf1f9c74bb65bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:18:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5766", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:18:57", "EXIF DateTimeDigitized": "2002:10:18 14:18:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090926", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "863"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a75652a2d90d81b59be6025dece42137503e02898551a485b72738bfd47fe10", "phash": "bc87826631abc6b3", "dhash": "edf16a2a2ea7abaa", "phash_int": -4.861773897291545e+18, "collected_at": "2026-05-22T04:29:38.573144+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0927_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0927_IMG.JPG", "file_name": "109-0927_IMG.JPG", "file_stem": "109-0927_IMG", "file_ext": ".jpg", "file_size": 492745.0, "mtime": "2002-10-18T14:19:22+00:00", "mtime_ts": 1034950762.0, "ctime": "2002-10-18T14:19:22+00:00", "sha256_file": "d4d1a817b18de9eb62fb82845f29c7dc030817439ee41b520786c3c39ef4669b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:19:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5290", "EXIF ExposureTime": "1/50", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:19:24", "EXIF DateTimeDigitized": "2002:10:18 14:19:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090927", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3433"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91e6f9d508868a819375449ed97a6e8694010931e409460349f044e9a5454c2d", "phash": "f2a2a1381e73d1dc", "dhash": "8f8f9f2c25969a6e", "phash_int": -9.630301079027174e+17, "collected_at": "2026-05-22T04:29:38.588147+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0928_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0928_IMG.JPG", "file_name": "109-0928_IMG.JPG", "file_stem": "109-0928_IMG", "file_ext": ".jpg", "file_size": 557735.0, "mtime": "2002-10-18T14:19:30+00:00", "mtime_ts": 1034950770.0, "ctime": "2002-10-18T14:19:30+00:00", "sha256_file": "f3c13f601f8c5d3c7e41cc00e6b4c9102f2c36bbef1b7dd9b2ba216873a5cee6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 14:19:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4830", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 14:19:31", "EXIF DateTimeDigitized": "2002:10:18 14:19:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[23, 24, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090928", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "164", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "504246a5b9cf4d31fe37fe3beb0732be821ff637c01d302c55c2d53a4119a44c", "phash": "e7e3a32b3c1cc311", "dhash": "c7cfc43612cb2426", "phash_int": -1.7373656251474404e+18, "collected_at": "2026-05-22T04:29:38.622147+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0929_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0929_IMG.JPG", "file_name": "109-0929_IMG.JPG", "file_stem": "109-0929_IMG", "file_ext": ".jpg", "file_size": 533205.0, "mtime": "2002-10-18T15:29:38+00:00", "mtime_ts": 1034954978.0, "ctime": "2002-10-18T15:29:38+00:00", "sha256_file": "3eaf3f2f575960f7dfe95725c9d5f5f1bbe1871b7d45830053b7a4044f730b7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:29:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:29:40", "EXIF DateTimeDigitized": "2002:10:18 15:29:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090929", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "100", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2815"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2681d1265d80f119db160b30e0f9ce1f4e04217a2453df5f89d729e00ff4dee", "phash": "955f6013e74aba70", "dhash": "5c7676785858bda5", "phash_int": -7.683316800669697e+18, "collected_at": "2026-05-22T04:29:38.651283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0930_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0930_IMG.JPG", "file_name": "109-0930_IMG.JPG", "file_stem": "109-0930_IMG", "file_ext": ".jpg", "file_size": 522332.0, "mtime": "2002-10-18T15:29:46+00:00", "mtime_ts": 1034954986.0, "ctime": "2002-10-18T15:29:46+00:00", "sha256_file": "f032fe7c774379ba1e8a76e12dca6714c04a6d2d7b9e3c0b5718c1354f051352", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:29:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:29:48", "EXIF DateTimeDigitized": "2002:10:18 15:29:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 271, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090930", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2815"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86793e0490277eb2a0fb14fbe9dcfd2699e189d22c2e5bca04ed0fce1693d396", "phash": "955f7013e21b745a", "dhash": "5c7676705858b9b5", "phash_int": -7.683299208570637e+18, "collected_at": "2026-05-22T04:29:38.682644+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0931_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0931_IMG.JPG", "file_name": "109-0931_IMG.JPG", "file_stem": "109-0931_IMG", "file_ext": ".jpg", "file_size": 475560.0, "mtime": "2002-10-18T15:29:54+00:00", "mtime_ts": 1034954994.0, "ctime": "2002-10-18T15:29:54+00:00", "sha256_file": "27c9f6b2349e2fbb46b558717a774481cce722b1450b855e344e31345ad84cdf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:29:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6237", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:29:56", "EXIF DateTimeDigitized": "2002:10:18 15:29:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 421, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090931", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "113", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "929"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ede525ac7f23b78565f6106b04ff8ded21f9deae65d958cd0b8a985adf6b7685", "phash": "ca54388b971f8d8b", "dhash": "b9b1b5a0e9f939b1", "phash_int": -3.8674040078173763e+18, "collected_at": "2026-05-22T04:29:38.685644+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0933_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0933_IMG.JPG", "file_name": "109-0933_IMG.JPG", "file_stem": "109-0933_IMG", "file_ext": ".jpg", "file_size": 567341.0, "mtime": "2002-10-18T15:30:50+00:00", "mtime_ts": 1034955050.0, "ctime": "2002-10-18T15:30:50+00:00", "sha256_file": "e5160eb8745d4229333789c46056b50e52b817c2ab62594aa09adb5921a42573", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:30:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6054", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:30:51", "EXIF DateTimeDigitized": "2002:10:18 15:30:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 183, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090933", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba231b430469ac2f0c49c138107a11b8baec71074336215812dc2c278cdcc078", "phash": "85eb189472cb8be5", "dhash": "d2e2cbc2d4b6e6c6", "phash_int": -8.796910421277963e+18, "collected_at": "2026-05-22T04:29:38.749737+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0932_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0932_IMG.JPG", "file_name": "109-0932_IMG.JPG", "file_stem": "109-0932_IMG", "file_ext": ".jpg", "file_size": 573407.0, "mtime": "2002-10-18T15:30:38+00:00", "mtime_ts": 1034955038.0, "ctime": "2002-10-18T15:30:38+00:00", "sha256_file": "4bf3ae1b60b4c7399f0a14e8bf34d97f6ecc7f892ad23ac611b4117641fd2a5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:30:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6016", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:30:40", "EXIF DateTimeDigitized": "2002:10:18 15:30:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 152, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090932", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a921457f013986acef8995658469c62cd5034235cc1fee9e64e216a8b73e43e2", "phash": "85ea189472decba5", "dhash": "f3e3ebe2d6f6a6e6", "phash_int": -8.797191896253412e+18, "collected_at": "2026-05-22T04:29:38.755736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0934_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0934_IMG.JPG", "file_name": "109-0934_IMG.JPG", "file_stem": "109-0934_IMG", "file_ext": ".jpg", "file_size": 545896.0, "mtime": "2002-10-18T15:37:54+00:00", "mtime_ts": 1034955474.0, "ctime": "2002-10-18T15:37:54+00:00", "sha256_file": "75ffdd9e9c8eabbb114259ae394b0900ce9d5ee6f4eb1853334e77d311600ee1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:37:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6580", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:37:56", "EXIF DateTimeDigitized": "2002:10:18 15:37:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 653, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090934", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "91", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4841"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13adf60acb62081c575fedb44c6497f836f44a515322dccae1f92734353f6072", "phash": "c10f397c0e78726e", "dhash": "72dadad2e40e1298", "phash_int": -4.5353430947572977e+18, "collected_at": "2026-05-22T04:29:38.798743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0935_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0935_IMG.JPG", "file_name": "109-0935_IMG.JPG", "file_stem": "109-0935_IMG", "file_ext": ".jpg", "file_size": 500207.0, "mtime": "2002-10-18T15:38:02+00:00", "mtime_ts": 1034955482.0, "ctime": "2002-10-18T15:38:02+00:00", "sha256_file": "eebd385cf0e8ea0822c25a44020a8c5741e015ecf853f4abec651a96605b9464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 15:38:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6845", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 15:38:03", "EXIF DateTimeDigitized": "2002:10:18 15:38:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 212, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090935", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1070"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef3467111f9b8293740254f54787ebdd4b00533a43daa943360478cdc46b87e6", "phash": "8149fb0cf07a467e", "dhash": "f2eac8daf2625bdd", "phash_int": -9.130490736524245e+18, "collected_at": "2026-05-22T04:29:38.817740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0937_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0937_IMG.JPG", "file_name": "109-0937_IMG.JPG", "file_stem": "109-0937_IMG", "file_ext": ".jpg", "file_size": 356578.0, "mtime": "2002-10-18T16:01:08+00:00", "mtime_ts": 1034956868.0, "ctime": "2002-10-18T16:01:08+00:00", "sha256_file": "1d3b2e2528db3dcfc873b302ea74fb96876c756277d3b4337b755ff1b294887f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 16:01:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4182", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 16:01:10", "EXIF DateTimeDigitized": "2002:10:18 16:01:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1105, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090937", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1040"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed2fdef648c5e26f9eab7f0e8632e6b242fb6928d0116e580f3d76869f414685", "phash": "93561f89e4b59196", "dhash": "4868ccccdddbd9dd", "phash_int": -7.830036225028944e+18, "collected_at": "2026-05-22T04:29:38.857904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0936_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0936_IMG.JPG", "file_name": "109-0936_IMG.JPG", "file_stem": "109-0936_IMG", "file_ext": ".jpg", "file_size": 476713.0, "mtime": "2002-10-18T16:01:00+00:00", "mtime_ts": 1034956860.0, "ctime": "2002-10-18T16:01:00+00:00", "sha256_file": "9a8eaf90f3172a3d81f588f452fcdf3d8bb399e16b5b5c39025bf876fa61493e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 16:01:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5929", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 16:01:02", "EXIF DateTimeDigitized": "2002:10:18 16:01:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 433, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090936", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "134", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1262"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14b1a547f9b764cb7aeef606791a45282b08429357507f7bc4687ca5b9d24dbd", "phash": "932f6117c406775d", "dhash": "6e3b7b697c5c9a92", "phash_int": -7.840941671527844e+18, "collected_at": "2026-05-22T04:29:38.862491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0939_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0939_IMG.JPG", "file_name": "109-0939_IMG.JPG", "file_stem": "109-0939_IMG", "file_ext": ".jpg", "file_size": 383737.0, "mtime": "2002-10-18T16:01:26+00:00", "mtime_ts": 1034956886.0, "ctime": "2002-10-18T16:01:26+00:00", "sha256_file": "7d5c69cd8a6d28a134572cb1d271ddea1614fba2f6caddfaf7e1b6c72f366cac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 16:01:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4872", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 16:01:27", "EXIF DateTimeDigitized": "2002:10:18 16:01:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 586, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090939", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "993"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac20d8427f0bb02086bb6f2c3377882c3fa22e717b79944044ed7629f7f06700", "phash": "91561fc9e291179e", "dhash": "5878dcdcd5dadbdd", "phash_int": -7.974151138262837e+18, "collected_at": "2026-05-22T04:29:38.903492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0938_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0938_IMG.JPG", "file_name": "109-0938_IMG.JPG", "file_stem": "109-0938_IMG", "file_ext": ".jpg", "file_size": 401214.0, "mtime": "2002-10-18T16:01:16+00:00", "mtime_ts": 1034956876.0, "ctime": "2002-10-18T16:01:16+00:00", "sha256_file": "448ae006cb1dd8e31d42c6c19951dc11da29d61ec39ef3ee4082e9cd2177543b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 16:01:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4409", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 16:01:17", "EXIF DateTimeDigitized": "2002:10:18 16:01:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 819, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090938", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1814"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e94ada1b6318a064a4c7193c0bf63c56711c7daca1a1abee69ca04322d7f5f5e", "phash": "93543e8be2f1c12e", "dhash": "486cceccd9dbdddd", "phash_int": -7.83056508156158e+18, "collected_at": "2026-05-22T04:29:38.905491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0940_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-18\\mamina\\109-0940_IMG.JPG", "file_name": "109-0940_IMG.JPG", "file_stem": "109-0940_IMG", "file_ext": ".jpg", "file_size": 464873.0, "mtime": "2002-10-18T16:18:36+00:00", "mtime_ts": 1034957916.0, "ctime": "2002-10-18T16:18:36+00:00", "sha256_file": "9d6a452d6b0035f9dc1eadd99a7846b73b4bec459fd8a451124cd6397878a824", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:18 16:18:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:10:18 16:18:38", "EXIF DateTimeDigitized": "2002:10:18 16:18:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 52, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1090940", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1989"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dbd672a46e10e692ed1743e4751fcf2823c578ae96a8355b96e675c6198804a1", "phash": "99d66629525666ad", "dhash": "d8b8e4b8b3bb72b2", "phash_int": -7.36158421322941e+18, "collected_at": "2026-05-22T04:29:38.961495+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0001_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0001_IMG_4.JPG", "file_name": "100-0001_IMG_4.JPG", "file_stem": "100-0001_IMG_4", "file_ext": ".jpg", "file_size": 1664936.0, "mtime": "2002-10-19T11:15:48+00:00", "mtime_ts": 1035026148.0, "ctime": "2002-10-19T11:15:48+00:00", "sha256_file": "726c206ea6bd81d65f721a87da9678f8118eb1e04a3aad88a16177c446bd1632", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:15:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4622", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:15:49", "EXIF DateTimeDigitized": "2002:10:19 11:15:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "276", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45f388068b091379c6b887ad20abed982d082422c3f481efabfedf16cbea4ec1", "phash": "96f5d12f2b22c4d4", "dhash": "d0fcecfd75e1e9f8", "phash_int": -7.568913598208884e+18, "collected_at": "2026-05-22T04:29:39.023785+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0001_IMG_6.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0001_IMG_6.JPG", "file_name": "100-0001_IMG_6.JPG", "file_stem": "100-0001_IMG_6", "file_ext": ".jpg", "file_size": 1694314.0, "mtime": "2002-10-19T19:06:28+00:00", "mtime_ts": 1035054388.0, "ctime": "2002-10-19T19:06:28+00:00", "sha256_file": "493a2014e45beb6293cf1f1c2cc9faa5e1c2a155b577352770c3c29a0ff3a4dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 20:06:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5242", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 20:06:29", "EXIF DateTimeDigitized": "2002:10:19 20:06:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f2fe2f3eb17b7b4a0c9f326fa93a662fd393bc6f4ac56d6c893a6eeff13e31c", "phash": "ff8e6511558c9325", "dhash": "242521311818161e", "phash_int": -3.1977022220889308e+16, "collected_at": "2026-05-22T04:29:39.039783+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0002_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0002_IMG_3.JPG", "file_name": "100-0002_IMG_3.JPG", "file_stem": "100-0002_IMG_3", "file_ext": ".jpg", "file_size": 1674838.0, "mtime": "2002-10-19T11:15:54+00:00", "mtime_ts": 1035026154.0, "ctime": "2002-10-19T11:15:54+00:00", "sha256_file": "d5e27fbfccfb4308cd4f7cde6d408641f5fb027d51f7256e3ccabac49a1386f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:15:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4477", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:15:56", "EXIF DateTimeDigitized": "2002:10:19 11:15:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7d37ee19a105dad32acfa8c1b9aafb4d8f3c060e4d1359910b5d407fbfd6fa2", "phash": "96f5d32b2b22c4d4", "dhash": "d0b8e4ed7561e9e8", "phash_int": -7.568911416365497e+18, "collected_at": "2026-05-22T04:29:39.149024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0003_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0003_IMG_3.JPG", "file_name": "100-0003_IMG_3.JPG", "file_stem": "100-0003_IMG_3", "file_ext": ".jpg", "file_size": 1597900.0, "mtime": "2002-10-19T11:16:04+00:00", "mtime_ts": 1035026164.0, "ctime": "2002-10-19T11:16:04+00:00", "sha256_file": "75f22a1e5df81d80c8b87d24c2d96af65b701dd4e62e737a9b27944fda86f35a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:16:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4324", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:16:05", "EXIF DateTimeDigitized": "2002:10:19 11:16:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e75715db344c3a81af877df76c93097d99286d9c3d1a050b4f644a9e9687482", "phash": "d6f58b2b22c6d530", "dhash": "d0f2ace4bd61e1e9", "phash_int": -2.9573045629155517e+18, "collected_at": "2026-05-22T04:29:39.174601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0004_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0004_IMG_3.JPG", "file_name": "100-0004_IMG_3.JPG", "file_stem": "100-0004_IMG_3", "file_ext": ".jpg", "file_size": 1401453.0, "mtime": "2002-10-19T11:17:02+00:00", "mtime_ts": 1035026222.0, "ctime": "2002-10-19T11:17:02+00:00", "sha256_file": "793454116e0b8bf5bd1513e503c3fb93e283608f05bc9e9557089e1dae5afd05", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:17:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4462", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:17:03", "EXIF DateTimeDigitized": "2002:10:19 11:17:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "372a9e345ffba7d6c0d90c3b9b2a97de38f4294712790a079952ab1fe7e54c14", "phash": "95e30837ca3acc5d", "dhash": "ccceccccce4e2cf4", "phash_int": -7.646258706635896e+18, "collected_at": "2026-05-22T04:29:39.220603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0005_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0005_IMG_3.JPG", "file_name": "100-0005_IMG_3.JPG", "file_stem": "100-0005_IMG_3", "file_ext": ".jpg", "file_size": 1427165.0, "mtime": "2002-10-19T11:17:14+00:00", "mtime_ts": 1035026234.0, "ctime": "2002-10-19T11:17:14+00:00", "sha256_file": "893f7ac40e71f8dd475405b899dddee6d9e8904de86852b8b6ac129a19547b29", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:17:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4615", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:17:16", "EXIF DateTimeDigitized": "2002:10:19 11:17:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "573d916fb89fe4660ad857dffeca1f960af9aaf3f40eb69f097bba22b6e59f45", "phash": "ce8671c8d1f1ca2e", "dhash": "c06465a426656771", "phash_int": -3.565036947687487e+18, "collected_at": "2026-05-22T04:29:39.261605+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0006_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0006_IMG_3.JPG", "file_name": "100-0006_IMG_3.JPG", "file_stem": "100-0006_IMG_3", "file_ext": ".jpg", "file_size": 1587877.0, "mtime": "2002-10-19T11:17:28+00:00", "mtime_ts": 1035026248.0, "ctime": "2002-10-19T11:17:28+00:00", "sha256_file": "792394bdda7b7e6c680e1366fdf1ccf4c609b54b0b6600d1dc176ae3cd944a94", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:17:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4970", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:17:29", "EXIF DateTimeDigitized": "2002:10:19 11:17:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[72, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6700cd8e28ec87349cf864e7f8549615487c9f230d8f8bfae7d26a5caa4fcecb", "phash": "bb93117868d4b15b", "dhash": "8b4b5a6f7b5f7ebe", "phash_int": -4.930577958188044e+18, "collected_at": "2026-05-22T04:29:39.304607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0007_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0007_IMG_2.JPG", "file_name": "100-0007_IMG_2.JPG", "file_stem": "100-0007_IMG_2", "file_ext": ".jpg", "file_size": 1605531.0, "mtime": "2002-10-19T11:17:38+00:00", "mtime_ts": 1035026258.0, "ctime": "2002-10-19T11:17:38+00:00", "sha256_file": "7e9b40b36858d4acde1f06a2e69cb064dc43c48ffff03bd800186379a199a88a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:17:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5128", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:17:40", "EXIF DateTimeDigitized": "2002:10:19 11:17:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[32, 232, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06da9ca2d62fef9accc7ecbcad6ea695f4bf27cabdaf1da4e41d724074055002", "phash": "e4e81337a8536fa4", "dhash": "aea6a6a7a74e5c7e", "phash_int": -1.9522893086969405e+18, "collected_at": "2026-05-22T04:29:39.342609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0008_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0008_IMG_2.JPG", "file_name": "100-0008_IMG_2.JPG", "file_stem": "100-0008_IMG_2", "file_ext": ".jpg", "file_size": 1352103.0, "mtime": "2002-10-19T11:17:50+00:00", "mtime_ts": 1035026270.0, "ctime": "2002-10-19T11:17:50+00:00", "sha256_file": "f69e6afc863a584b43db3e4f4f78f9a54450a5bd6b8cc28a3493a799b75fb14b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:17:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5060", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:17:51", "EXIF DateTimeDigitized": "2002:10:19 11:17:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e57197448fe0997455ae1cb9feda24560d8962d33995f399c7abcb98d16405b", "phash": "de9c1567fc011873", "dhash": "242129212debcfbc", "phash_int": -2.4060245645689426e+18, "collected_at": "2026-05-22T04:29:39.381608+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0009_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0009_IMG_3.JPG", "file_name": "100-0009_IMG_3.JPG", "file_stem": "100-0009_IMG_3", "file_ext": ".jpg", "file_size": 1766168.0, "mtime": "2002-10-19T11:18:02+00:00", "mtime_ts": 1035026282.0, "ctime": "2002-10-19T11:18:02+00:00", "sha256_file": "4f30cf4be8c2e8583e70f77e791e0060bed92953be045f3a12acb83714805f59", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:18:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:18:03", "EXIF DateTimeDigitized": "2002:10:19 11:18:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[86, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf9d7a7c925b02d3af58609b74a5521c8378837c92790029fbaa52f6d128adc3", "phash": "97e4711d64120f7b", "dhash": "d6c6cccc6a6858c8", "phash_int": -7.501746708245508e+18, "collected_at": "2026-05-22T04:29:39.431614+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0010_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0010_IMG_2.JPG", "file_name": "100-0010_IMG_2.JPG", "file_stem": "100-0010_IMG_2", "file_ext": ".jpg", "file_size": 1381399.0, "mtime": "2002-10-19T11:18:12+00:00", "mtime_ts": 1035026292.0, "ctime": "2002-10-19T11:18:12+00:00", "sha256_file": "3e3baf276e61bde05eab54480095a15e16177058778087de28f45fc11d730802", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:18:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:18:14", "EXIF DateTimeDigitized": "2002:10:19 11:18:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[46, 221, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61e2573c661ef4d6adc5a05ff1852b933ae2c3ba96662585cd009b330b5178d2", "phash": "97d2056c976e39c1", "dhash": "f0c8aa69f03b03cc", "phash_int": -7.506931664918006e+18, "collected_at": "2026-05-22T04:29:39.463613+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0011_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0011_IMG_3.JPG", "file_name": "100-0011_IMG_3.JPG", "file_stem": "100-0011_IMG_3", "file_ext": ".jpg", "file_size": 1598970.0, "mtime": "2002-10-19T11:26:34+00:00", "mtime_ts": 1035026794.0, "ctime": "2002-10-19T11:26:34+00:00", "sha256_file": "52e5ed736b3767a5944c95a5cd130037231e316b79e55c322999691cae8a4484", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:26:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5644", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:26:35", "EXIF DateTimeDigitized": "2002:10:19 11:26:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "510fa99b9cf538088c62b1285c71b01b984c8f42a00b3d1c3af9ddc9fefd901c", "phash": "a2b1de6dcb55130c", "dhash": "8dcdddd5c7656571", "phash_int": -6.723348205543288e+18, "collected_at": "2026-05-22T04:29:39.505612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0012_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0012_IMG_3.JPG", "file_name": "100-0012_IMG_3.JPG", "file_stem": "100-0012_IMG_3", "file_ext": ".jpg", "file_size": 1578803.0, "mtime": "2002-10-19T11:41:44+00:00", "mtime_ts": 1035027704.0, "ctime": "2002-10-19T11:41:44+00:00", "sha256_file": "720a77de65aa0d05c652ba05492bd78f6851644c41753d3c98a4f115dc3500fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:41:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4838", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:41:45", "EXIF DateTimeDigitized": "2002:10:19 11:41:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18c7a59b5f6b0c6f5d68a84a7d4f227e8f1572c41e9b961bbb70d5f5a3aad17e", "phash": "c1d6a42a2bcabe36", "dhash": "e0c668d1dbf2c3d2", "phash_int": -4.4792122783430907e+18, "collected_at": "2026-05-22T04:29:39.544622+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0013_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0013_IMG_3.JPG", "file_name": "100-0013_IMG_3.JPG", "file_stem": "100-0013_IMG_3", "file_ext": ".jpg", "file_size": 1538472.0, "mtime": "2002-10-19T11:41:54+00:00", "mtime_ts": 1035027714.0, "ctime": "2002-10-19T11:41:54+00:00", "sha256_file": "f35b6c78062abb7ae259558a0a53c2f30907dcfe768f6eeeca602e91f845e486", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:41:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4279", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:41:55", "EXIF DateTimeDigitized": "2002:10:19 11:41:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0ce76066aa7ee1b9e8139e36b406f0d2a82ba39f931abd7642779674eb373e2", "phash": "99e6d0720d92e47e", "dhash": "88c0ccfa3b98b8fa", "phash_int": -7.356963752990547e+18, "collected_at": "2026-05-22T04:29:39.606702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0014_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0014_IMG_2.JPG", "file_name": "100-0014_IMG_2.JPG", "file_stem": "100-0014_IMG_2", "file_ext": ".jpg", "file_size": 1439914.0, "mtime": "2002-10-19T11:42:00+00:00", "mtime_ts": 1035027720.0, "ctime": "2002-10-19T11:42:00+00:00", "sha256_file": "a649dbbcfafea90aa68197c1131829a2f98cfc563e3467b2e4807d6abd102db5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4231", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:01", "EXIF DateTimeDigitized": "2002:10:19 11:42:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3951f827ce58f5e72e611fa3ddaefa0135082f08604b9eac8df1fda3f06d94d", "phash": "a5daf4684030bddb", "dhash": "b0007efee3363f3e", "phash_int": -6.495610783937807e+18, "collected_at": "2026-05-22T04:29:39.650825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0015_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0015_IMG_2.JPG", "file_name": "100-0015_IMG_2.JPG", "file_stem": "100-0015_IMG_2", "file_ext": ".jpg", "file_size": 1336222.0, "mtime": "2002-10-19T11:42:06+00:00", "mtime_ts": 1035027726.0, "ctime": "2002-10-19T11:42:06+00:00", "sha256_file": "168636ae8d7b7dc233c7b0469ac779d17a7dac017f2d09196f1fdf4625c1a426", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3689", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:07", "EXIF DateTimeDigitized": "2002:10:19 11:42:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5351f88752518a52d41457dc74606473be3320aa57005441b8681b6aa1aa029", "phash": "fcc187107be19798", "dhash": "c0b0440f11b4e666", "phash_int": -2.3375720077894666e+17, "collected_at": "2026-05-22T04:29:39.693825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0016_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0016_IMG_2.JPG", "file_name": "100-0016_IMG_2.JPG", "file_stem": "100-0016_IMG_2", "file_ext": ".jpg", "file_size": 1133593.0, "mtime": "2002-10-19T11:42:12+00:00", "mtime_ts": 1035027732.0, "ctime": "2002-10-19T11:42:12+00:00", "sha256_file": "07a941261b0772452a6bae0efe8a7876e50ea23a15542c515b7345edd8dbb3b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3420", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:13", "EXIF DateTimeDigitized": "2002:10:19 11:42:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d351042e45fff6f6c0dbeb50cc8dae4e2736f6a465160492020d67e74de438f", "phash": "c4d1b33c40d99b37", "dhash": "90a41881a6b03ed9", "phash_int": -4.2644303007757363e+18, "collected_at": "2026-05-22T04:29:39.746827+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0017_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0017_IMG_2.JPG", "file_name": "100-0017_IMG_2.JPG", "file_stem": "100-0017_IMG_2", "file_ext": ".jpg", "file_size": 1525476.0, "mtime": "2002-10-19T11:42:24+00:00", "mtime_ts": 1035027744.0, "ctime": "2002-10-19T11:42:24+00:00", "sha256_file": "924fdf77ef477b667c926741e352274a971bef5fe52b8e1fa633718c1b09a39b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3964", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:26", "EXIF DateTimeDigitized": "2002:10:19 11:42:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "14927/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "14927"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "873a5664cd54a004239008ebed7f1f8854c4ad41ab6ca537b10a51061a07ed4a", "phash": "c780e87f5f8ca132", "dhash": "0089caf048422524", "phash_int": -4.0709984293813857e+18, "collected_at": "2026-05-22T04:29:39.765825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0018_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0018_IMG_2.JPG", "file_name": "100-0018_IMG_2.JPG", "file_stem": "100-0018_IMG_2", "file_ext": ".jpg", "file_size": 2771852.0, "mtime": "2002-10-19T11:42:32+00:00", "mtime_ts": 1035027752.0, "ctime": "2002-10-19T11:42:32+00:00", "sha256_file": "445b3867c708d6c97e72fcab5dc8dd10806bab7afffe289794d3ea22ee9af158", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6380", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:34", "EXIF DateTimeDigitized": "2002:10:19 11:42:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "beea1275c953e2ecdef1187008bc63c280028f5f116ca1bb7be2a994bf9346e0", "phash": "95eda891ca25d69a", "dhash": "a292145cdcecbcbd", "phash_int": -7.643267648462662e+18, "collected_at": "2026-05-22T04:29:39.919168+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0019_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0019_IMG_2.JPG", "file_name": "100-0019_IMG_2.JPG", "file_stem": "100-0019_IMG_2", "file_ext": ".jpg", "file_size": 2752034.0, "mtime": "2002-10-19T11:42:36+00:00", "mtime_ts": 1035027756.0, "ctime": "2002-10-19T11:42:36+00:00", "sha256_file": "8ece89221c0c27eb48a5b3190e693363bfc1f73e86aa97428668cb0bebba2683", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6533", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:38", "EXIF DateTimeDigitized": "2002:10:19 11:42:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00509fc0f72a89f94ea1022916010697820ab2fac629f005d0014726d28e3881", "phash": "82bf95e03ba0f3b0", "dhash": "277259c9cfcfe5d0", "phash_int": -9.025330337921568e+18, "collected_at": "2026-05-22T04:29:39.921168+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0020_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0020_IMG_2.JPG", "file_name": "100-0020_IMG_2.JPG", "file_stem": "100-0020_IMG_2", "file_ext": ".jpg", "file_size": 2083707.0, "mtime": "2002-10-19T11:42:42+00:00", "mtime_ts": 1035027762.0, "ctime": "2002-10-19T11:42:42+00:00", "sha256_file": "e603fea56b772b60ecd414140e7413ca22bfb381f04da55bf4268f3633293a2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5634", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:43", "EXIF DateTimeDigitized": "2002:10:19 11:42:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "251", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "863b77782749ac76dad9b0f6e15742fa0f7607e2c6dfaff2744942a5434a13b4", "phash": "91eae78dd890e564", "dhash": "e2fb5fb8b8f2fedc", "phash_int": -7.932273197249928e+18, "collected_at": "2026-05-22T04:29:40.029382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0021_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0021_IMG_2.JPG", "file_name": "100-0021_IMG_2.JPG", "file_stem": "100-0021_IMG_2", "file_ext": ".jpg", "file_size": 2135980.0, "mtime": "2002-10-19T11:42:46+00:00", "mtime_ts": 1035027766.0, "ctime": "2002-10-19T11:42:46+00:00", "sha256_file": "77c8b1fd1478894499df5b0ba8a099b59a8499f23c540decb9f18f6b29408230", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:42:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6552", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:42:47", "EXIF DateTimeDigitized": "2002:10:19 11:42:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe3dead7e6816f2aa1398c4f06d271b2714425371f0beeafea18bba58c197ca3", "phash": "e6dccdeef8c00921", "dhash": "056cee8d2d6dcdc5", "phash_int": -1.8113465238505367e+18, "collected_at": "2026-05-22T04:29:40.036450+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0022_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0022_IMG_2.JPG", "file_name": "100-0022_IMG_2.JPG", "file_stem": "100-0022_IMG_2", "file_ext": ".jpg", "file_size": 1451300.0, "mtime": "2002-10-19T11:43:12+00:00", "mtime_ts": 1035027792.0, "ctime": "2002-10-19T11:43:12+00:00", "sha256_file": "c596cc88ed75771133da559397f27d04bdbe9d8a83218199899893e311228f9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3654", "EXIF ExposureTime": "1/800", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:14", "EXIF DateTimeDigitized": "2002:10:19 11:43:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af40427978549becfdac2bb85e28685194572fb861ef15ca967f1ddc93c687f7", "phash": "bff0c01e3db1d046", "dhash": "0ce7981f63684ccc", "phash_int": -4.615978381938143e+18, "collected_at": "2026-05-22T04:29:40.134454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0023_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0023_IMG_2.JPG", "file_name": "100-0023_IMG_2.JPG", "file_stem": "100-0023_IMG_2", "file_ext": ".jpg", "file_size": 1798581.0, "mtime": "2002-10-19T11:43:18+00:00", "mtime_ts": 1035027798.0, "ctime": "2002-10-19T11:43:18+00:00", "sha256_file": "86744da191637bd4563746fc51b2f072bc8886043580aa0acc7339b861414f94", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5100", "EXIF ExposureTime": "1/640", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:20", "EXIF DateTimeDigitized": "2002:10:19 11:43:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3780dc5439abb51503481a15fae70455ee7bc2809419d7cd36009e8b2e749abf", "phash": "85f8e2cb3a350fc4", "dhash": "69c0f63e6a70e0e4", "phash_int": -8.793028909958099e+18, "collected_at": "2026-05-22T04:29:40.155539+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0024_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0024_IMG_3.JPG", "file_name": "100-0024_IMG_3.JPG", "file_stem": "100-0024_IMG_3", "file_ext": ".jpg", "file_size": 1912534.0, "mtime": "2002-10-19T11:43:32+00:00", "mtime_ts": 1035027812.0, "ctime": "2002-10-19T11:43:32+00:00", "sha256_file": "3061d62e858ed60b12cd80495283bd84428f04125a23fd466cfa14f089736251", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5297", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:34", "EXIF DateTimeDigitized": "2002:10:19 11:43:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e34959e341851d7ed04b17b7d8bbc5f93d7f090a6e61c20954e8025ae1801a53", "phash": "94e1e28cda327a3b", "dhash": "00f6feb070f4fcfc", "phash_int": -7.718639191752279e+18, "collected_at": "2026-05-22T04:29:40.220542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0025_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0025_IMG_3.JPG", "file_name": "100-0025_IMG_3.JPG", "file_stem": "100-0025_IMG_3", "file_ext": ".jpg", "file_size": 2457750.0, "mtime": "2002-10-19T11:43:40+00:00", "mtime_ts": 1035027820.0, "ctime": "2002-10-19T11:43:40+00:00", "sha256_file": "c2d87c76fb7d663c497a1b04ea7baf972e2afa8591dd591b623bbbebc9a57438", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6002", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:41", "EXIF DateTimeDigitized": "2002:10:19 11:43:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf976bd6853d5b29b7b081026b2b973b5d3abecc8df070f9066750be8124b29f", "phash": "b73748eb2980d559", "dhash": "0e4c4c5c5d5cb432", "phash_int": -5.24464306619883e+18, "collected_at": "2026-05-22T04:29:40.277937+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0026_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0026_IMG_3.JPG", "file_name": "100-0026_IMG_3.JPG", "file_stem": "100-0026_IMG_3", "file_ext": ".jpg", "file_size": 1619844.0, "mtime": "2002-10-19T11:43:48+00:00", "mtime_ts": 1035027828.0, "ctime": "2002-10-19T11:43:48+00:00", "sha256_file": "3d3228a37941326bbfdc4c4de24789f8e531bc44ff1273a706eecb8abf3e59f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4855", "EXIF ExposureTime": "1/400", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:49", "EXIF DateTimeDigitized": "2002:10:19 11:43:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3281/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6562"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb3b80427a5988c604c9104dd73df671afe7ef9f07428e482aabf9fb1e575cb3", "phash": "a2edd21942a5f89b", "dhash": "e4f8a7c77bb7ed69", "phash_int": -6.706473264150612e+18, "collected_at": "2026-05-22T04:29:40.348687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0027_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0027_IMG_2.JPG", "file_name": "100-0027_IMG_2.JPG", "file_stem": "100-0027_IMG_2", "file_ext": ".jpg", "file_size": 1642492.0, "mtime": "2002-10-19T11:43:54+00:00", "mtime_ts": 1035027834.0, "ctime": "2002-10-19T11:43:54+00:00", "sha256_file": "b12bfebb8a7deb2e18adfea1105c7f75fdc4b566fd4f3896299f4160e671507c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:43:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5229", "EXIF ExposureTime": "1/500", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:43:55", "EXIF DateTimeDigitized": "2002:10:19 11:43:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1981/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7924"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd8ca0a92d784a43801cec425f7aae9d6fd92b0d8268dba2f9e0b801f1226275", "phash": "d1dce12a2a9a9e65", "dhash": "739074399ab9d8d8", "phash_int": -3.3245348536866166e+18, "collected_at": "2026-05-22T04:29:40.371686+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0028_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0028_IMG_2.JPG", "file_name": "100-0028_IMG_2.JPG", "file_stem": "100-0028_IMG_2", "file_ext": ".jpg", "file_size": 1843270.0, "mtime": "2002-10-19T11:44:00+00:00", "mtime_ts": 1035027840.0, "ctime": "2002-10-19T11:44:00+00:00", "sha256_file": "cb8ca7407ac76363135771da30122d2f8a2809d49604e453518c4f51259610bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 11:44:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4784", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 11:44:02", "EXIF DateTimeDigitized": "2002:10:19 11:44:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3063/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6126"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc04b50e38bdeaff2124ec22be36ca3275f9911e2b426540439ff0b1f90c46f7", "phash": "90bdcbe06e363b90", "dhash": "06f07f1790948ce9", "phash_int": -8.017027596867454e+18, "collected_at": "2026-05-22T04:29:40.432699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0029_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0029_IMG_2.JPG", "file_name": "100-0029_IMG_2.JPG", "file_stem": "100-0029_IMG_2", "file_ext": ".jpg", "file_size": 1894270.0, "mtime": "2002-10-19T12:04:16+00:00", "mtime_ts": 1035029056.0, "ctime": "2002-10-19T12:04:16+00:00", "sha256_file": "c2bd49950a758647271174006e0d8b52f9016690dd2439c3c204ad5b912ea34d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:04:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5349", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:04:18", "EXIF DateTimeDigitized": "2002:10:19 12:04:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba21401139f650809d111ff11327181584ea5d8086530bd639bd8b3218a2057a", "phash": "94f3c72b36c4d170", "dhash": "e0f09cf43e72f6f6", "phash_int": -7.713602748339139e+18, "collected_at": "2026-05-22T04:29:40.481780+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0030_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0030_IMG_2.JPG", "file_name": "100-0030_IMG_2.JPG", "file_stem": "100-0030_IMG_2", "file_ext": ".jpg", "file_size": 1843900.0, "mtime": "2002-10-19T12:04:22+00:00", "mtime_ts": 1035029062.0, "ctime": "2002-10-19T12:04:22+00:00", "sha256_file": "199d80f53229fcd356b3953ac3b0d400922e171281337b1e08652d4a1ebd5e44", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:04:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5034", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:04:24", "EXIF DateTimeDigitized": "2002:10:19 12:04:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fab32cfc777b0845c27e1099b5696763648bdf2dcd4cdb75ffc977c41f6a599", "phash": "8cb3c716117aada6", "dhash": "82c00f97f4b2a1f6", "phash_int": -8.308077989971973e+18, "collected_at": "2026-05-22T04:29:40.579973+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0031_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0031_IMG_2.JPG", "file_name": "100-0031_IMG_2.JPG", "file_stem": "100-0031_IMG_2", "file_ext": ".jpg", "file_size": 2127449.0, "mtime": "2002-10-19T12:04:28+00:00", "mtime_ts": 1035029068.0, "ctime": "2002-10-19T12:04:28+00:00", "sha256_file": "53aeed97bf35ad7502bade800e21d193c29a5df76115b4ca2ba7572c0c85efc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:04:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5935", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:04:30", "EXIF DateTimeDigitized": "2002:10:19 12:04:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c63beb470a29a2a4c13d751053628f211ce46d1ea06273c7ceaa3d90c0362fcf", "phash": "991be1b592ca8d66", "dhash": "db5072b9f4f6b3cc", "phash_int": -7.414084191567312e+18, "collected_at": "2026-05-22T04:29:40.610974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0032_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0032_IMG_2.JPG", "file_name": "100-0032_IMG_2.JPG", "file_stem": "100-0032_IMG_2", "file_ext": ".jpg", "file_size": 2060883.0, "mtime": "2002-10-19T12:16:34+00:00", "mtime_ts": 1035029794.0, "ctime": "2002-10-19T12:16:34+00:00", "sha256_file": "5f8c4a6fa919244083ae6599eebbeb2ecb3ba6c8a016881ae8f81429d739cceb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:16:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6082", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:16:35", "EXIF DateTimeDigitized": "2002:10:19 12:16:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e320b186c02900871447aa5a247312bc722525ad55161a5515ec27d8d6fbf4c2", "phash": "b6f5fb1980895992", "dhash": "5e4ccece6d79690f", "phash_int": -5.263024502563318e+18, "collected_at": "2026-05-22T04:29:40.653976+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0033_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0033_IMG_2.JPG", "file_name": "100-0033_IMG_2.JPG", "file_stem": "100-0033_IMG_2", "file_ext": ".jpg", "file_size": 1450829.0, "mtime": "2002-10-19T12:16:52+00:00", "mtime_ts": 1035029812.0, "ctime": "2002-10-19T12:16:52+00:00", "sha256_file": "cb03248d55084008fe07c3d644fa26bc8200b6f974cc0e48652670d5699bf283", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:16:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5254", "EXIF ExposureTime": "1/50", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:16:53", "EXIF DateTimeDigitized": "2002:10:19 12:16:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3583/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3583"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87e57de46d2b4d2051e662ffdf0f8f7c566e83443b4cd00f0b6a3d9bfa0afdeb", "phash": "b189a7acd8c58753", "dhash": "dbcb4a989c070c8d", "phash_int": -5.65380349637391e+18, "collected_at": "2026-05-22T04:29:40.680047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0034_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0034_IMG_2.JPG", "file_name": "100-0034_IMG_2.JPG", "file_stem": "100-0034_IMG_2", "file_ext": ".jpg", "file_size": 1266882.0, "mtime": "2002-10-19T12:48:12+00:00", "mtime_ts": 1035031692.0, "ctime": "2002-10-19T12:48:12+00:00", "sha256_file": "d66c8ab1b4d2bdc7ecd53a6119eaa46400e5e49589e9829fc02972d9243b95a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:48:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5977", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:48:13", "EXIF DateTimeDigitized": "2002:10:19 12:48:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5dc29a5203959788f4af25b8371d51aef0086ebb41ed7cdcc912d6be3371b663", "phash": "c41fe3611eed80bc", "dhash": "e6ec6464a48c828c", "phash_int": -4.3144799117274317e+18, "collected_at": "2026-05-22T04:29:40.738588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0035_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0035_IMG_2.JPG", "file_name": "100-0035_IMG_2.JPG", "file_stem": "100-0035_IMG_2", "file_ext": ".jpg", "file_size": 1397284.0, "mtime": "2002-10-19T12:51:48+00:00", "mtime_ts": 1035031908.0, "ctime": "2002-10-19T12:51:48+00:00", "sha256_file": "1e96fc9c0e2782fc7f3be2bae74e68b53acdd4fbb2e062846916456f88444653", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:51:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4957", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:51:49", "EXIF DateTimeDigitized": "2002:10:19 12:51:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1490"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b097a638c4cda0ebed3af4df60f389904b6304dac4f0cd3cc00f0ee0c3a3af6", "phash": "849dc86a1777b24b", "dhash": "94f4ccccce8fcea2", "phash_int": -8.890729731373682e+18, "collected_at": "2026-05-22T04:29:40.754646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0035_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0035_IMG_3.JPG", "file_name": "100-0035_IMG_3.JPG", "file_stem": "100-0035_IMG_3", "file_ext": ".jpg", "file_size": 1395501.0, "mtime": "2002-10-19T12:51:48+00:00", "mtime_ts": 1035031908.0, "ctime": "2002-10-19T12:51:48+00:00", "sha256_file": "3f8723524c70bacca079b655f7fd0674e73076a563c78d3cb807a77def2e1c70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 12:51:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4957", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 12:51:49", "EXIF DateTimeDigitized": "2002:10:19 12:51:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1490"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a813607095168901086398653e3219d28c9018a0413e8ce14fc3c3f8199340a", "phash": "e2ca16b171331db6", "dhash": "8da5e58f8f162e0c", "phash_int": -2.1048449244780877e+18, "collected_at": "2026-05-22T04:29:40.820719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0036_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0036_IMG_2.JPG", "file_name": "100-0036_IMG_2.JPG", "file_stem": "100-0036_IMG_2", "file_ext": ".jpg", "file_size": 1183575.0, "mtime": "2002-10-19T13:15:14+00:00", "mtime_ts": 1035033314.0, "ctime": "2002-10-19T13:15:14+00:00", "sha256_file": "e37e0d83e98ff44201cc5177e87ab81adc82e0198eb4dfc987cb1f28d434863c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 13:15:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5505", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 13:15:16", "EXIF DateTimeDigitized": "2002:10:19 13:15:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7d4a5d6b8c92f78b014de0c5b4eeb360f6101969ccee1adc3fd69679a663d05", "phash": "8eac319acc73cd94", "dhash": "67646465a57178f0", "phash_int": -8.166097483404686e+18, "collected_at": "2026-05-22T04:29:40.849719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0038_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0038_IMG_3.JPG", "file_name": "100-0038_IMG_3.JPG", "file_stem": "100-0038_IMG_3", "file_ext": ".jpg", "file_size": 1671906.0, "mtime": "2002-10-19T13:15:44+00:00", "mtime_ts": 1035033344.0, "ctime": "2002-10-19T13:15:44+00:00", "sha256_file": "43e469d338b7bed3b5200632dd52b032550485975288c937e9e68415bb362799", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 13:15:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6519", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 13:15:45", "EXIF DateTimeDigitized": "2002:10:19 13:15:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[26, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16e2b0e5eb22d93fe4e4005173496d0965045d0c6d4fb83ea4a7a62ea6a3cbbe", "phash": "afc7d2211c7a69a4", "dhash": "e2666767664f7d7c", "phash_int": -5.780420557053204e+18, "collected_at": "2026-05-22T04:29:40.920723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-19\\100-0039_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-19\\100-0039_IMG_3.JPG", "file_name": "100-0039_IMG_3.JPG", "file_stem": "100-0039_IMG_3", "file_ext": ".jpg", "file_size": 1743999.0, "mtime": "2002-10-19T13:15:50+00:00", "mtime_ts": 1035033350.0, "ctime": "2002-10-19T13:15:50+00:00", "sha256_file": "80716ae620d2c572b8addccb8c5e442682991b39eea4c04a3519e32b6c9365c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:19 13:15:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6502", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:19 13:15:51", "EXIF DateTimeDigitized": "2002:10:19 13:15:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2073684b9274d9c2c7679fc542b27070e5378b2f2688ab32e30b5bbc1950f09e", "phash": "afc7d221147a6da4", "dhash": "c2e66767665f7d7c", "phash_int": -5.780420557187421e+18, "collected_at": "2026-05-22T04:29:40.956094+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0022_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0022_IMG_4.JPG", "file_name": "100-0022_IMG_4.JPG", "file_stem": "100-0022_IMG_4", "file_ext": ".jpg", "file_size": 1840721.0, "mtime": "2002-10-26T14:35:42+00:00", "mtime_ts": 1035642942.0, "ctime": "2002-10-26T14:35:42+00:00", "sha256_file": "7f16cf1d3f001aab98982e7c154e68795ff0362379db6124929b7d16e417c7fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 15:35:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6196", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 15:35:44", "EXIF DateTimeDigitized": "2002:10:26 15:35:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3bf3d821d25cc6c1c3ca90f6652ab1a1c006174b0cc8979ef9a1d78fa87a0a97", "phash": "9b7b19166698b1e4", "dhash": "5c191a69ecf8f2e2", "phash_int": -7.243167991694053e+18, "collected_at": "2026-05-22T04:29:41.063544+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0023_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0023_IMG_4.JPG", "file_name": "100-0023_IMG_4.JPG", "file_stem": "100-0023_IMG_4", "file_ext": ".jpg", "file_size": 1778369.0, "mtime": "2002-10-26T14:36:02+00:00", "mtime_ts": 1035642962.0, "ctime": "2002-10-26T14:36:02+00:00", "sha256_file": "a078708acd689a8eb728853409d0319b0bc9424330641da2f81bad10f8244c97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 15:36:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5702", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 15:36:03", "EXIF DateTimeDigitized": "2002:10:26 15:36:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 227, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "110", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "006f25508b7d7b03a4a433314adffa5a10bab7493a07159b159ef513b7b4eeed", "phash": "955797616ab4b452", "dhash": "5c58fcc7c386fcf8", "phash_int": -7.685507794426613e+18, "collected_at": "2026-05-22T04:29:41.070542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0025_IMG_5.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0025_IMG_5.JPG", "file_name": "100-0025_IMG_5.JPG", "file_stem": "100-0025_IMG_5", "file_ext": ".jpg", "file_size": 2582215.0, "mtime": "2002-10-26T16:47:58+00:00", "mtime_ts": 1035650878.0, "ctime": "2002-10-26T16:47:58+00:00", "sha256_file": "30f31a65ee61e209d91d93eb90fc7574e686b49fcff16e5bc7c7b7d04357f7ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:47:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6642", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:47:59", "EXIF DateTimeDigitized": "2002:10:26 17:47:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "070bd6e63cc9dae552617525499d51eecb2712f3d9cf457c26be67897c79b070", "phash": "a96bcb3921ce1c66", "dhash": "dbdbaf9b9f3b65ef", "phash_int": -6.23866941255096e+18, "collected_at": "2026-05-22T04:29:41.173271+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0024_IMG_5.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0024_IMG_5.JPG", "file_name": "100-0024_IMG_5.JPG", "file_stem": "100-0024_IMG_5", "file_ext": ".jpg", "file_size": 1703666.0, "mtime": "2002-10-26T14:36:14+00:00", "mtime_ts": 1035642974.0, "ctime": "2002-10-26T14:36:14+00:00", "sha256_file": "f2be90b0128a53c8b685d732ba41a24b7e5ed31f1e265ae0cf390122d6ca3317", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 15:36:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6243", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 15:36:15", "EXIF DateTimeDigitized": "2002:10:26 15:36:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2330f9d6491dcf3b622662599d65336048edd6b35d1509df6dfeaf7b50d5237a", "phash": "a07a95e53e4e2369", "dhash": "8c99d9ed97c6c2e6", "phash_int": -6.883024268657024e+18, "collected_at": "2026-05-22T04:29:41.177407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0026_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0026_IMG_4.JPG", "file_name": "100-0026_IMG_4.JPG", "file_stem": "100-0026_IMG_4", "file_ext": ".jpg", "file_size": 2023768.0, "mtime": "2002-10-26T16:48:26+00:00", "mtime_ts": 1035650906.0, "ctime": "2002-10-26T16:48:26+00:00", "sha256_file": "2bb0e169d83d0235b442dd1f28d326aa979bc08b2d31d21b3eb63b6b64e93538", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6263", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:28", "EXIF DateTimeDigitized": "2002:10:26 17:48:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "43", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65525", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17ec8e83f6db7b7fbeb8f1171484bd583844e3b69ac363276fdd372d424bc086", "phash": "d97e36e4c89b3105", "dhash": "1c14191393b3f2b0", "phash_int": -2.7747199641675894e+18, "collected_at": "2026-05-22T04:29:41.372906+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0027_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0027_IMG_4.JPG", "file_name": "100-0027_IMG_4.JPG", "file_stem": "100-0027_IMG_4", "file_ext": ".jpg", "file_size": 2164490.0, "mtime": "2002-10-26T16:48:32+00:00", "mtime_ts": 1035650912.0, "ctime": "2002-10-26T16:48:32+00:00", "sha256_file": "4c5d4cc4908b9f5e29fb09b0381b7f5f820e84a8d82702e69fc04b65825f28ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6844", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:33", "EXIF DateTimeDigitized": "2002:10:26 17:48:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff6c50406a9f432beab872b76bd8061a360522e4b2f9d96935d0473c61f68334", "phash": "8c1b5bec54a22773", "dhash": "f0b16ba6a626a7b0", "phash_int": -8.35098001343813e+18, "collected_at": "2026-05-22T04:29:41.381039+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0028_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0028_IMG_4.JPG", "file_name": "100-0028_IMG_4.JPG", "file_stem": "100-0028_IMG_4", "file_ext": ".jpg", "file_size": 2000726.0, "mtime": "2002-10-26T16:48:38+00:00", "mtime_ts": 1035650918.0, "ctime": "2002-10-26T16:48:38+00:00", "sha256_file": "5598cea4cac0bca330f7f8e108cdac927ee4fb7ed3dfa341cecb8b046f14abd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6126", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:40", "EXIF DateTimeDigitized": "2002:10:26 17:48:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94c4fd48e250febe8a879d077a7ca12308ff16dfd971173bd63f88501af1d1d2", "phash": "8d0f7acccd593832", "dhash": "727276f2e6a69290", "phash_int": -8.282266169673959e+18, "collected_at": "2026-05-22T04:29:41.498042+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0029_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0029_IMG_4.JPG", "file_name": "100-0029_IMG_4.JPG", "file_stem": "100-0029_IMG_4", "file_ext": ".jpg", "file_size": 1909034.0, "mtime": "2002-10-26T16:48:44+00:00", "mtime_ts": 1035650924.0, "ctime": "2002-10-26T16:48:44+00:00", "sha256_file": "40e08026ba1004c35ed3b727f051cf9b3e08a7aa81e9e41ea9a4a8bb484264ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6744", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:45", "EXIF DateTimeDigitized": "2002:10:26 17:48:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "926628fda5e15cbb261edf1238d9aac4d16f6ba6835388eec1d5b233553aea48", "phash": "c3ee99b0355e2e0c", "dhash": "91416367cdcdd8f8", "phash_int": -4.3283532097678095e+18, "collected_at": "2026-05-22T04:29:41.548772+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0030_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0030_IMG_4.JPG", "file_name": "100-0030_IMG_4.JPG", "file_stem": "100-0030_IMG_4", "file_ext": ".jpg", "file_size": 1964116.0, "mtime": "2002-10-26T16:48:50+00:00", "mtime_ts": 1035650930.0, "ctime": "2002-10-26T16:48:50+00:00", "sha256_file": "ae1f845a6193ed96721cc801c9908a4575621091d6bbc6815b5ec02425fee537", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5583", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:51", "EXIF DateTimeDigitized": "2002:10:26 17:48:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8c63680d5030fe9cab8f173acf029400255454c2b83a96de98edd02fead4f51", "phash": "d37f5e7462942069", "dhash": "3071f3e88f96d4f0", "phash_int": -3.206740555701412e+18, "collected_at": "2026-05-22T04:29:41.648379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0031_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0031_IMG_4.JPG", "file_name": "100-0031_IMG_4.JPG", "file_stem": "100-0031_IMG_4", "file_ext": ".jpg", "file_size": 1916167.0, "mtime": "2002-10-26T16:48:56+00:00", "mtime_ts": 1035650936.0, "ctime": "2002-10-26T16:48:56+00:00", "sha256_file": "b547a3639691aa8e3baba2f57c8bfd5876942e9e044ae801751199d08870f906", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:48:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5209", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:48:58", "EXIF DateTimeDigitized": "2002:10:26 17:48:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "73", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "baf47b552205b17475abed47e570138b65ba8a6648859b0071652e496e79bcc9", "phash": "c466db7c8a71c42d", "dhash": "ccc4c6e4a5b4d2f9", "phash_int": -4.29450386670605e+18, "collected_at": "2026-05-22T04:29:41.666546+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0032_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0032_IMG_4.JPG", "file_name": "100-0032_IMG_4.JPG", "file_stem": "100-0032_IMG_4", "file_ext": ".jpg", "file_size": 1647158.0, "mtime": "2002-10-26T16:49:02+00:00", "mtime_ts": 1035650942.0, "ctime": "2002-10-26T16:49:02+00:00", "sha256_file": "8744752a9c059069fea1e369933cec5f12335851e32d37b167f6b4952b0fc9cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:49:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6672", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:49:03", "EXIF DateTimeDigitized": "2002:10:26 17:49:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "049042085a07751e90c728aa1d1eaa641e45bb9bd8f77f11886a1e403a6fa49e", "phash": "e0c1bf437d0a44b7", "dhash": "868686868cadcd27", "phash_int": -2.2513080421269983e+18, "collected_at": "2026-05-22T04:29:41.777080+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0033_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0033_IMG_3.JPG", "file_name": "100-0033_IMG_3.JPG", "file_stem": "100-0033_IMG_3", "file_ext": ".jpg", "file_size": 2023946.0, "mtime": "2002-10-26T16:49:10+00:00", "mtime_ts": 1035650950.0, "ctime": "2002-10-26T16:49:10+00:00", "sha256_file": "75735bc81184412962f4bd90bb2b1df365807a40209cae33b22ad53d60b58d1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:49:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5262", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:49:11", "EXIF DateTimeDigitized": "2002:10:26 17:49:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "38/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1520"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3722e0ba65fc18b6656aa340357c0e952699afe05fd5620163e4a41bbe92a76", "phash": "ebb6584ef69128e0", "dhash": "250f8bcec7c3f0f3", "phash_int": -1.4618839328677455e+18, "collected_at": "2026-05-22T04:29:41.796432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0034_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0034_IMG_4.JPG", "file_name": "100-0034_IMG_4.JPG", "file_stem": "100-0034_IMG_4", "file_ext": ".jpg", "file_size": 2746079.0, "mtime": "2002-10-26T16:49:20+00:00", "mtime_ts": 1035650960.0, "ctime": "2002-10-26T16:49:20+00:00", "sha256_file": "ad43dda3e2bb305fc2e65c368c6639e5f4adb764ee2ac52348968c3201772bb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:49:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7072", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:49:21", "EXIF DateTimeDigitized": "2002:10:26 17:49:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6aa725c4bfe616ee18040b9845f858962cee2f2e9e5ea09da0b9c6c0052630a1", "phash": "c3151b25bdb9a4ac", "dhash": "dac9c198c6ccc9d9", "phash_int": -4.3895724128918804e+18, "collected_at": "2026-05-22T04:29:41.855433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0035_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0035_IMG_4.JPG", "file_name": "100-0035_IMG_4.JPG", "file_stem": "100-0035_IMG_4", "file_ext": ".jpg", "file_size": 1948681.0, "mtime": "2002-10-26T16:49:46+00:00", "mtime_ts": 1035650986.0, "ctime": "2002-10-26T16:49:46+00:00", "sha256_file": "24fda15c690b30b26cd3502d88afe4210581a9de21581c06bdc82d4c88e9242f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:49:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6142", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:49:48", "EXIF DateTimeDigitized": "2002:10:26 17:49:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65505", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6622ee29af522077e3c4a6dd209934993f404ab760975b7950b451759ff13d5", "phash": "9ce927d2f8c90d16", "dhash": "d98476b1bcb438c8", "phash_int": -7.14013194714867e+18, "collected_at": "2026-05-22T04:29:41.915819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0036_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0036_IMG_4.JPG", "file_name": "100-0036_IMG_4.JPG", "file_stem": "100-0036_IMG_4", "file_ext": ".jpg", "file_size": 2184636.0, "mtime": "2002-10-26T16:49:56+00:00", "mtime_ts": 1035650996.0, "ctime": "2002-10-26T16:49:56+00:00", "sha256_file": "01e8a4f664b2c79384b159bf4778d2e625c6c1bfdb90f2a3ad5023e94a5f69b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:49:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6203", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:49:58", "EXIF DateTimeDigitized": "2002:10:26 17:49:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00aa008ead5d25a00f07872c673912bb9efd51080ff7d6e6032d30621ab35b02", "phash": "d08c27d3e18c1ddb", "dhash": "d1ad76b389f0e8cc", "phash_int": -3.41931422610541e+18, "collected_at": "2026-05-22T04:29:41.970983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0037_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0037_IMG_3.JPG", "file_name": "100-0037_IMG_3.JPG", "file_stem": "100-0037_IMG_3", "file_ext": ".jpg", "file_size": 1846327.0, "mtime": "2002-10-26T16:50:06+00:00", "mtime_ts": 1035651006.0, "ctime": "2002-10-26T16:50:06+00:00", "sha256_file": "37cf53f4d1dc13ced291690d6200c9ef14886fb5eaab6dcecbf28b9b1876caee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:50:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5342", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:50:08", "EXIF DateTimeDigitized": "2002:10:26 17:50:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a9192083f4c7702499bd75804b9a947daece3a1ef8799d1e106c07d70527a989", "phash": "c5f21a69111761fe", "dhash": "e8e8cccec2c2e6d8", "phash_int": -4.183252065313136e+18, "collected_at": "2026-05-22T04:29:42.016988+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0038_IMG_5.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0038_IMG_5.JPG", "file_name": "100-0038_IMG_5.JPG", "file_stem": "100-0038_IMG_5", "file_ext": ".jpg", "file_size": 2039759.0, "mtime": "2002-10-26T16:51:24+00:00", "mtime_ts": 1035651084.0, "ctime": "2002-10-26T16:51:24+00:00", "sha256_file": "794624ee897c8f8f400399f99410a8a48ce5512e8900ede83c149a0f0044c493", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5109", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:26", "EXIF DateTimeDigitized": "2002:10:26 17:51:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5b3466b3eb516757ca5df77e556280a4798fc71d8adb57d4c574cfd9e2c3532c", "phash": "cde5206e4dcd131d", "dhash": "e38c987260e9e1f0", "phash_int": -3.6104438681438075e+18, "collected_at": "2026-05-22T04:29:42.106581+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0039_IMG_5.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0039_IMG_5.JPG", "file_name": "100-0039_IMG_5.JPG", "file_stem": "100-0039_IMG_5", "file_ext": ".jpg", "file_size": 2109421.0, "mtime": "2002-10-26T16:51:30+00:00", "mtime_ts": 1035651090.0, "ctime": "2002-10-26T16:51:30+00:00", "sha256_file": "e746b484527d7b6e58ad255de31f56de0e9027f5f666f090892145a422b58524", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5328", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:31", "EXIF DateTimeDigitized": "2002:10:26 17:51:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 278, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16f3c852be5c767e52a59f1a6edfa1ce13e908db55bbb46530d92dc63e55391a", "phash": "9c313469f22635ed", "dhash": "5cd8f4f9f2f3e1e4", "phash_int": -7.191909500295171e+18, "collected_at": "2026-05-22T04:29:42.155808+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0040_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0040_IMG_3.JPG", "file_name": "100-0040_IMG_3.JPG", "file_stem": "100-0040_IMG_3", "file_ext": ".jpg", "file_size": 2302550.0, "mtime": "2002-10-26T16:51:34+00:00", "mtime_ts": 1035651094.0, "ctime": "2002-10-26T16:51:34+00:00", "sha256_file": "987cbe729fea7e69d4fc2528e5c8361d2db60b7795e01d8d7bb7858992fc3621", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5362", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:36", "EXIF DateTimeDigitized": "2002:10:26 17:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9a4d17436ea8092a30515133f1e2b5a260f985be72183660a92b239b0940b80", "phash": "ca96742c6e63469b", "dhash": "e4f4f9e9f3b693c1", "phash_int": -3.8487610973621274e+18, "collected_at": "2026-05-22T04:29:42.198035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0043_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0043_IMG_3.JPG", "file_name": "100-0043_IMG_3.JPG", "file_stem": "100-0043_IMG_3", "file_ext": ".jpg", "file_size": 2249471.0, "mtime": "2002-10-26T16:51:56+00:00", "mtime_ts": 1035651116.0, "ctime": "2002-10-26T16:51:56+00:00", "sha256_file": "0e1c84d6656fe8705ad651cd2f49a62873d78c0124149c0429f2f452c789577f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5954", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:57", "EXIF DateTimeDigitized": "2002:10:26 17:51:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a390e7dc8242eee5ad36621784803caaf0c1bf9ff1bc656eed8ff53d779cdbe9", "phash": "dceca1f307b56610", "dhash": "a623317474311836", "phash_int": -2.5274672256832374e+18, "collected_at": "2026-05-22T04:29:42.278440+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0041_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0041_IMG_3.JPG", "file_name": "100-0041_IMG_3.JPG", "file_stem": "100-0041_IMG_3", "file_ext": ".jpg", "file_size": 2161249.0, "mtime": "2002-10-26T16:51:40+00:00", "mtime_ts": 1035651100.0, "ctime": "2002-10-26T16:51:40+00:00", "sha256_file": "1b06fc5033ac592e10bc9582adb533e97690ea67c2bd6d30c7cc7534a08ea97c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:51:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5746", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:51:41", "EXIF DateTimeDigitized": "2002:10:26 17:51:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc4405a58982584ca41da25825b8d4402f93fb81b68a5bcf60e08ec75c6b5898", "phash": "c0d13f1e0322b6ef", "dhash": "5898c1c1e0e5e3e9", "phash_int": -4.5527883501606856e+18, "collected_at": "2026-05-22T04:29:42.286443+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0045_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0045_IMG_2.JPG", "file_name": "100-0045_IMG_2.JPG", "file_stem": "100-0045_IMG_2", "file_ext": ".jpg", "file_size": 1793097.0, "mtime": "2002-10-26T16:52:14+00:00", "mtime_ts": 1035651134.0, "ctime": "2002-10-26T16:52:14+00:00", "sha256_file": "c19a9bae2bbce30c7f51d0a71f1cfd687dcf1d6c3a209fc848f0568fa5a0626f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:52:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5884", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:52:15", "EXIF DateTimeDigitized": "2002:10:26 17:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2dd8955b16d7fdcb6301f624837f4b3664d95aba1801f2373855538f08fa860", "phash": "8cb3277ed0134d78", "dhash": "ece8f2b93127e4e2", "phash_int": -8.308253461958145e+18, "collected_at": "2026-05-22T04:29:42.447316+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0044_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0044_IMG_3.JPG", "file_name": "100-0044_IMG_3.JPG", "file_stem": "100-0044_IMG_3", "file_ext": ".jpg", "file_size": 2327673.0, "mtime": "2002-10-26T16:52:00+00:00", "mtime_ts": 1035651120.0, "ctime": "2002-10-26T16:52:00+00:00", "sha256_file": "e252d78e773d5eb1428bac4ecc03cabffc3ca53b807140ea36dc7eb9562e6435", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 17:52:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5505", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 17:52:02", "EXIF DateTimeDigitized": "2002:10:26 17:52:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbb22dfbc5a634737230c67c7994a1b27bd3da5d3e1dcbb6c7ecc3243b73cf61", "phash": "9e786f1981ede812", "dhash": "113d2d14fc786c4c", "phash_int": -7.027745063166941e+18, "collected_at": "2026-05-22T04:29:42.453316+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0046_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0046_IMG_2.JPG", "file_name": "100-0046_IMG_2.JPG", "file_stem": "100-0046_IMG_2", "file_ext": ".jpg", "file_size": 1739717.0, "mtime": "2002-10-26T19:29:00+00:00", "mtime_ts": 1035660540.0, "ctime": "2002-10-26T19:29:00+00:00", "sha256_file": "acb60d3e7fef6a0d9dc0c6487eef911b69c60e219046db71be96b9c1dfe0095e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:29:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5063", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:29:01", "EXIF DateTimeDigitized": "2002:10:26 20:29:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a26cf4c3e96717177ea079189f41c9561a6079381d9c28ed8c6cae3434db896", "phash": "c2de1dd84e0d10f7", "dhash": "f1e9cdc9c993cbc3", "phash_int": -4.405050570662146e+18, "collected_at": "2026-05-22T04:29:42.606809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0047_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0047_IMG_2.JPG", "file_name": "100-0047_IMG_2.JPG", "file_stem": "100-0047_IMG_2", "file_ext": ".jpg", "file_size": 1679303.0, "mtime": "2002-10-26T19:29:10+00:00", "mtime_ts": 1035660550.0, "ctime": "2002-10-26T19:29:10+00:00", "sha256_file": "0ab39165fd5971bcea0417ad6865bf24981093ffc540608fa472a924fc2f9300", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:29:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4903", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:29:11", "EXIF DateTimeDigitized": "2002:10:26 20:29:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18f2aea2efe1910feb139600f0cbc83e58ad6c062473b61d0e37a8b26784d989", "phash": "d166172d3295cfd0", "dhash": "e0c8c09c9dd2fad8", "phash_int": -3.35797098926848e+18, "collected_at": "2026-05-22T04:29:42.633809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0048_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0048_IMG_2.JPG", "file_name": "100-0048_IMG_2.JPG", "file_stem": "100-0048_IMG_2", "file_ext": ".jpg", "file_size": 2033755.0, "mtime": "2002-10-26T19:29:18+00:00", "mtime_ts": 1035660558.0, "ctime": "2002-10-26T19:29:18+00:00", "sha256_file": "61aa1eb0c79a10d980a0a5b748df8ddb6ed392340ce9a4fdeee0993a7ff4a982", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:29:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6158", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:29:20", "EXIF DateTimeDigitized": "2002:10:26 20:29:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b64261247af1fcd87a414e96b1a26cb29f67cd31a8c8f2af9b3512dc12ae5302", "phash": "c3ca3018f71a0ff5", "dhash": "51854361515198ca", "phash_int": -4.338602407235023e+18, "collected_at": "2026-05-22T04:29:42.764814+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0049_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0049_IMG_2.JPG", "file_name": "100-0049_IMG_2.JPG", "file_stem": "100-0049_IMG_2", "file_ext": ".jpg", "file_size": 1711034.0, "mtime": "2002-10-26T19:29:40+00:00", "mtime_ts": 1035660580.0, "ctime": "2002-10-26T19:29:40+00:00", "sha256_file": "cbabfda7a895c3b32ee380bbce966d2440b7b68b662f1d5bb4556ea0991bd14d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:29:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5248", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:29:42", "EXIF DateTimeDigitized": "2002:10:26 20:29:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5667179a22c3f4498fcee0609bacba0982a8d571fb49a399e77686233f92a808", "phash": "d582cdba366d32a4", "dhash": "e2e0dc048c886282", "phash_int": -3.061658596997779e+18, "collected_at": "2026-05-22T04:29:42.770813+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0050_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0050_IMG_2.JPG", "file_name": "100-0050_IMG_2.JPG", "file_stem": "100-0050_IMG_2", "file_ext": ".jpg", "file_size": 1757556.0, "mtime": "2002-10-26T19:30:04+00:00", "mtime_ts": 1035660604.0, "ctime": "2002-10-26T19:30:04+00:00", "sha256_file": "3b181bbce9963400e6a48bb8684d8edd41f4661020640466f4637c243ae47f57", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:30:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:30:06", "EXIF DateTimeDigitized": "2002:10:26 20:30:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59344e8f19aee788173e924fab33eadcf1e20f6d2f76240dc6eb63d6f5daad3a", "phash": "a1c6ddc902f1cf26", "dhash": "d2ca4ece8e92d6d6", "phash_int": -6.789495532806877e+18, "collected_at": "2026-05-22T04:29:42.887117+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0051_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0051_IMG_2.JPG", "file_name": "100-0051_IMG_2.JPG", "file_stem": "100-0051_IMG_2", "file_ext": ".jpg", "file_size": 1890331.0, "mtime": "2002-10-26T19:30:14+00:00", "mtime_ts": 1035660614.0, "ctime": "2002-10-26T19:30:14+00:00", "sha256_file": "103ddfc380121d4d2d02edae26ccf9f4d648f6a192f6005794d840b60e074c8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:30:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6154", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:30:16", "EXIF DateTimeDigitized": "2002:10:26 20:30:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5d30a5c637456ffa92a82cd403d02dc9d3b83423516b5e9d3a5951d7f2572b5", "phash": "d6934da14a773b28", "dhash": "c8cccccc8ccccca5", "phash_int": -2.9849567728821053e+18, "collected_at": "2026-05-22T04:29:42.908116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0052_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0052_IMG_2.JPG", "file_name": "100-0052_IMG_2.JPG", "file_stem": "100-0052_IMG_2", "file_ext": ".jpg", "file_size": 2037784.0, "mtime": "2002-10-26T19:30:32+00:00", "mtime_ts": 1035660632.0, "ctime": "2002-10-26T19:30:32+00:00", "sha256_file": "4fe561bb797ffbfc5e44054ac4e252a73014600a45e57b63b9e3308a72a2e9be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:30:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5539", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:30:34", "EXIF DateTimeDigitized": "2002:10:26 20:30:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3bff8eb8488e964bba55e907c4400e20e8abe2332a6e307c743697721d86081", "phash": "f17fc4f0010e0ede", "dhash": "80185058981a10c0", "phash_int": -1.044900053437772e+18, "collected_at": "2026-05-22T04:29:43.032260+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0053_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0053_IMG_2.JPG", "file_name": "100-0053_IMG_2.JPG", "file_stem": "100-0053_IMG_2", "file_ext": ".jpg", "file_size": 2293874.0, "mtime": "2002-10-26T19:30:46+00:00", "mtime_ts": 1035660646.0, "ctime": "2002-10-26T19:30:46+00:00", "sha256_file": "aa30701561e07f5a18d6af9dc4261d3f76a4cba57b147f56387bdac71f98708d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:30:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:30:47", "EXIF DateTimeDigitized": "2002:10:26 20:30:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a771bec3c93f7f4e6c70db1d8f20e084bded3254c87e51ecfaed760ae837b410", "phash": "d9dd0d80767f0781", "dhash": "3232722989d8f8c8", "phash_int": -2.748025352231123e+18, "collected_at": "2026-05-22T04:29:43.056504+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0055_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0055_IMG_2.JPG", "file_name": "100-0055_IMG_2.JPG", "file_stem": "100-0055_IMG_2", "file_ext": ".jpg", "file_size": 2134929.0, "mtime": "2002-10-26T19:31:46+00:00", "mtime_ts": 1035660706.0, "ctime": "2002-10-26T19:31:46+00:00", "sha256_file": "8c8ee124a158b195cc0964223ea4abfd62b5c65b129e8523415b8488ee97c18d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:31:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5776", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:31:48", "EXIF DateTimeDigitized": "2002:10:26 20:31:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1347abf4b6ec4a7d33eca4bb1203f6384bf040074c85c8bbb5a4952aac6e64f1", "phash": "c50479a55be41fd4", "dhash": "f6e266efea668631", "phash_int": -4.250138397212664e+18, "collected_at": "2026-05-22T04:29:43.192698+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0054_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0054_IMG_2.JPG", "file_name": "100-0054_IMG_2.JPG", "file_stem": "100-0054_IMG_2", "file_ext": ".jpg", "file_size": 2303511.0, "mtime": "2002-10-26T19:31:12+00:00", "mtime_ts": 1035660672.0, "ctime": "2002-10-26T19:31:12+00:00", "sha256_file": "ef434f98b182501b1973145a8b18e8dc501d2a474f6cf32ebec8715fceaa5d56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:31:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6287", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:31:14", "EXIF DateTimeDigitized": "2002:10:26 20:31:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40b0a08d6bfa86b63f4ed924acf726365d6c047aaf05210b6778741d88c72c7e", "phash": "923b4d9e90c9d8b5", "dhash": "e8ec9898bc64e1e4", "phash_int": -7.909642977116826e+18, "collected_at": "2026-05-22T04:29:43.206816+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0056_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0056_IMG_2.JPG", "file_name": "100-0056_IMG_2.JPG", "file_stem": "100-0056_IMG_2", "file_ext": ".jpg", "file_size": 2072928.0, "mtime": "2002-10-26T19:32:12+00:00", "mtime_ts": 1035660732.0, "ctime": "2002-10-26T19:32:12+00:00", "sha256_file": "5718849c54481e98399b9144882fd5bdb5a9e2a1932c2f3de97e532453bf8c69", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:32:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5935", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:32:13", "EXIF DateTimeDigitized": "2002:10:26 20:32:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa62bb5e1581d52f06490b16097025444d68c0a744a8fd4150a57ed379b9b6d4", "phash": "c106762f52e5336e", "dhash": "eceecad2f35b0210", "phash_int": -4.537809628902903e+18, "collected_at": "2026-05-22T04:29:43.267819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0057_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0057_IMG_2.JPG", "file_name": "100-0057_IMG_2.JPG", "file_stem": "100-0057_IMG_2", "file_ext": ".jpg", "file_size": 2162867.0, "mtime": "2002-10-26T19:32:20+00:00", "mtime_ts": 1035660740.0, "ctime": "2002-10-26T19:32:20+00:00", "sha256_file": "f5b2df48a3a38c966b2e8e7a2254c984964ed7764d83b9d387ce59ced7a35331", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:32:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5257", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:32:21", "EXIF DateTimeDigitized": "2002:10:26 20:32:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bf9e39a6b847f39fd76e231978bc03c40c050a0d7c4e0632209c970ade32db7", "phash": "93da5615b9a92556", "dhash": "f8f8c83b78d854ec", "phash_int": -7.79282155390205e+18, "collected_at": "2026-05-22T04:29:43.280820+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0058_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0058_IMG_2.JPG", "file_name": "100-0058_IMG_2.JPG", "file_stem": "100-0058_IMG_2", "file_ext": ".jpg", "file_size": 2494346.0, "mtime": "2002-10-26T19:33:38+00:00", "mtime_ts": 1035660818.0, "ctime": "2002-10-26T19:33:38+00:00", "sha256_file": "cd3ff04e09824ddf1ea703893904d37bada1d8756e4ac8691e77c5d442da6864", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:33:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6319", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:33:39", "EXIF DateTimeDigitized": "2002:10:26 20:33:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 354, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a16056b095b940f21c835fd901e8a9b2818f698e03a0b47389fab04014d4e3ed", "phash": "85376a5a05795a76", "dhash": "e0e0e8faf0f0d1e2", "phash_int": -8.84748600807461e+18, "collected_at": "2026-05-22T04:29:43.364824+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 1637181.0, "mtime": "2002-10-26T19:34:12+00:00", "mtime_ts": 1035660852.0, "ctime": "2002-10-26T19:34:12+00:00", "sha256_file": "c6d480f34a8ddd77fe0cb5a851b95c4bd4423fd44840aca91a0054cc159d9aae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:34:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5728", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:34:14", "EXIF DateTimeDigitized": "2002:10:26 20:34:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ec5cf017028994487e21399e1d118ae9cf513af9421bb35f0a9d599b1dd3a54", "phash": "87c7304e798e9d32", "dhash": "e0e864646164e4f8", "phash_int": -8.662902244618888e+18, "collected_at": "2026-05-22T04:29:43.369885+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 1938057.0, "mtime": "2002-10-26T19:34:28+00:00", "mtime_ts": 1035660868.0, "ctime": "2002-10-26T19:34:28+00:00", "sha256_file": "bedf785593bc6a38bf906ffffc921b60ac5bf351b5d950b29dd8a789586a6dea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:34:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4411", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:34:30", "EXIF DateTimeDigitized": "2002:10:26 20:34:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1041/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2082"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eabd11db8398e0e2c4174dcb1fd79fecac76d8da08419d8027a2d9c8302bede2", "phash": "cecbe224b536b464", "dhash": "25c3333132262022", "phash_int": -3.5454916343371725e+18, "collected_at": "2026-05-22T04:29:43.477040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 1775333.0, "mtime": "2002-10-26T19:34:48+00:00", "mtime_ts": 1035660888.0, "ctime": "2002-10-26T19:34:48+00:00", "sha256_file": "356d1bbfc9e24fe62c831e01dfbde0ae1f7f90a8b99248f87297b86397cb429c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:34:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4728", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:34:50", "EXIF DateTimeDigitized": "2002:10:26 20:34:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1589/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1589"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47d86d28cb020ad38d848d6afa71a15841fb6c46e1e6813d6c060a076224ac73", "phash": "d88bc264e51bb3b4", "dhash": "c3313131362022a6", "phash_int": -2.84296500115802e+18, "collected_at": "2026-05-22T04:29:43.503176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 2082327.0, "mtime": "2002-10-26T19:37:28+00:00", "mtime_ts": 1035661048.0, "ctime": "2002-10-26T19:37:28+00:00", "sha256_file": "bfbfb1421629b4248c671a87342f56010ccaed664ae0f61281c7f92a4beb64b7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:37:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7310", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:37:30", "EXIF DateTimeDigitized": "2002:10:26 20:37:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b562846957f54d6c6def2c22d165d97681c4a8c199810b0ff03ec701ddbb6c8", "phash": "83bed569be45818a", "dhash": "ee3fff3b53d2d2cc", "phash_int": -8.953484359025459e+18, "collected_at": "2026-05-22T04:29:43.622606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 2057824.0, "mtime": "2002-10-26T19:37:36+00:00", "mtime_ts": 1035661056.0, "ctime": "2002-10-26T19:37:36+00:00", "sha256_file": "56e5960fddd1a4a3c23a7d7051d5893864fde0ba2ebf6cbca2bd61a9d3ccb9ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:37:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7392", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:37:38", "EXIF DateTimeDigitized": "2002:10:26 20:37:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb544fab95e7aa6710daaa0908dc368f8abeb05956ffa2f9e44713460e70b68e", "phash": "adaa97ed984185ca", "dhash": "ee3fffbb3342427c", "phash_int": -5.932762512389733e+18, "collected_at": "2026-05-22T04:29:43.635597+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 2058181.0, "mtime": "2002-10-26T19:39:28+00:00", "mtime_ts": 1035661168.0, "ctime": "2002-10-26T19:39:28+00:00", "sha256_file": "ce12dad5672688c55fda65d8eb0ecbf54d3d05098b804e88c5d01446771eecb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:39:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5386", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:39:29", "EXIF DateTimeDigitized": "2002:10:26 20:39:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c25f1b3fe00db62a591e2f089c312f82cc8cf8030db59e449380e60aa89c2e11", "phash": "c17bd9c0861f1c7c", "dhash": "e09314cce4f0f0e0", "phash_int": -4.5047675813469153e+18, "collected_at": "2026-05-22T04:29:43.752831+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 1877881.0, "mtime": "2002-10-26T19:39:38+00:00", "mtime_ts": 1035661178.0, "ctime": "2002-10-26T19:39:38+00:00", "sha256_file": "3ec3a322b6dbdb543638d0377f97979feb02ce001c94fa417841bd90fcba8659", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:39:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5214", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:39:40", "EXIF DateTimeDigitized": "2002:10:26 20:39:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e95cab8637365da8eac2cd5626bcc71d43bc901daf468c6065706b6dcb01e63", "phash": "c57fd880863e3969", "dhash": "e0c91a6ce2f0f0e0", "phash_int": -4.2154126796758564e+18, "collected_at": "2026-05-22T04:29:43.767831+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 1761301.0, "mtime": "2002-10-26T19:40:38+00:00", "mtime_ts": 1035661238.0, "ctime": "2002-10-26T19:40:38+00:00", "sha256_file": "5241d14c6f8016fdb7b9a0fee5b9b729087a2f29d77e3c4d63176c65ec05c9ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:40:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6278", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:40:39", "EXIF DateTimeDigitized": "2002:10:26 20:40:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8516e5a1d78e065b27b603fc4fd3fb587a9d16b0e326b81bdea8e12e28c3ceea", "phash": "81c29e31e34d3ee3", "dhash": "c1d9d1d3db98d2e0", "phash_int": -9.096534360230904e+18, "collected_at": "2026-05-22T04:29:43.888038+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 1628840.0, "mtime": "2002-10-26T19:40:50+00:00", "mtime_ts": 1035661250.0, "ctime": "2002-10-26T19:40:50+00:00", "sha256_file": "4efa3dfd02ae3aa22d59fd9cee3fe465e060255531dd0b2a9f14dd267b4e6e69", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 20:40:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4833", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 20:40:51", "EXIF DateTimeDigitized": "2002:10:26 20:40:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "799/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1598"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10300cb1c1c1b67e75d9063711c71e51c6cc1f24e5c164da0dcf65c4e7345276", "phash": "99ec20a1fc3197bc", "dhash": "b333313137dc59fd", "phash_int": -7.35546821130993e+18, "collected_at": "2026-05-22T04:29:43.900040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 1823973.0, "mtime": "2002-10-26T20:05:24+00:00", "mtime_ts": 1035662724.0, "ctime": "2002-10-26T20:05:24+00:00", "sha256_file": "79a89d17dffeb8bdf8a8b17f7553867b832e356762af88444064eebb8ed9e54d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:05:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5362", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:05:25", "EXIF DateTimeDigitized": "2002:10:26 21:05:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1157/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1157"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c8e1bc16c868762de6bd095b5f5bf3f40e8c11fcd3b6e0bd2d819a2b02cd3fb", "phash": "8faf8c985269922f", "dhash": "68666f6b74f0f2f4", "phash_int": -8.093095419515923e+18, "collected_at": "2026-05-22T04:29:44.048046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 2094886.0, "mtime": "2002-10-26T20:19:56+00:00", "mtime_ts": 1035663596.0, "ctime": "2002-10-26T20:19:56+00:00", "sha256_file": "962d95fcdd1f1fbf260f14ba99da572ae9cb515f814d0534e2cf9cd3e22f95d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:19:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6839", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:19:57", "EXIF DateTimeDigitized": "2002:10:26 21:19:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4fce419d2968e848273391bba089dc26a2f7c515e24d32e4f874de6e2ddfa51", "phash": "94b8ce65789634cd", "dhash": "b4f0fc9892966264", "phash_int": -7.730201825171328e+18, "collected_at": "2026-05-22T04:29:44.064045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 2103159.0, "mtime": "2002-10-26T20:20:00+00:00", "mtime_ts": 1035663600.0, "ctime": "2002-10-26T20:20:00+00:00", "sha256_file": "23bddaaa058c106ef432b991f92b07184a2a61e2ef6e27e6562089a415448757", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:20:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6579", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:20:02", "EXIF DateTimeDigitized": "2002:10:26 21:20:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88c2545dbfd68aa2ce668795f1e93df16f8b42c9f5bffde077bcfb1b2bf4e1be", "phash": "8a815f843ef187cb", "dhash": "f1c3cbaf2fe65361", "phash_int": -8.466380802883484e+18, "collected_at": "2026-05-22T04:29:44.138047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 2086837.0, "mtime": "2002-10-26T20:20:34+00:00", "mtime_ts": 1035663634.0, "ctime": "2002-10-26T20:20:34+00:00", "sha256_file": "23662acfc1093195d51b6baf059c0a8ac7b5a71abcc167a4938f92c0320f8ae5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:20:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7009", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:20:36", "EXIF DateTimeDigitized": "2002:10:26 21:20:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51d1b53ae2456264949fdb28ac82570bf97a97ebd5ac1666ed548b7b81e86e99", "phash": "8781d3727a459973", "dhash": "d8e0f26229f9c848", "phash_int": -8.682426117962492e+18, "collected_at": "2026-05-22T04:29:44.156047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 2155662.0, "mtime": "2002-10-26T20:21:08+00:00", "mtime_ts": 1035663668.0, "ctime": "2002-10-26T20:21:08+00:00", "sha256_file": "6bc3ce71dd6f4f52e94113e457f668e63d99f68c2af912440b5a301900d02b2e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:21:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7487", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:21:09", "EXIF DateTimeDigitized": "2002:10:26 21:21:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aacd2c4255d242285626c349e8cb45815eaf6e8d9808c9d0634b82bec7ce4d30", "phash": "918fc0da3f660e78", "dhash": "e0d2f26a3bd99090", "phash_int": -7.95792997294132e+18, "collected_at": "2026-05-22T04:29:44.321454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 2081082.0, "mtime": "2002-10-26T20:21:02+00:00", "mtime_ts": 1035663662.0, "ctime": "2002-10-26T20:21:02+00:00", "sha256_file": "a4ae721579d60407aab92dfc4dfa3b7b62df0cf88d0611bd5d295f17cc0dc82e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 21:21:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7223", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 21:21:03", "EXIF DateTimeDigitized": "2002:10:26 21:21:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92bc4f1e31ca5d44db6c712966a5767fe44e3b359367ea2446a1eed9f00170db", "phash": "818fc0da3ee40fb9", "dhash": "e0d0d26a39d990d0", "phash_int": -9.110851477556687e+18, "collected_at": "2026-05-22T04:29:44.349456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 1969047.0, "mtime": "2002-10-26T22:51:24+00:00", "mtime_ts": 1035672684.0, "ctime": "2002-10-26T22:51:24+00:00", "sha256_file": "05f762ae4905d9654bb0f1c33415e92220d318a1cc00122eb3a8085756a52352", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 23:51:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5029", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 23:51:26", "EXIF DateTimeDigitized": "2002:10:26 23:51:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a82014e1c1c47d4733a0d25e5ffcb3f8ad7fa323c794fd67f21d797fef0aec86", "phash": "f5cb0cd0d83e1a63", "dhash": "f1474d12c0fc1e33", "phash_int": -7.354800230242646e+17, "collected_at": "2026-05-22T04:29:44.484613+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 2045027.0, "mtime": "2002-10-26T22:51:14+00:00", "mtime_ts": 1035672674.0, "ctime": "2002-10-26T22:51:14+00:00", "sha256_file": "40c572eee998ece7ca6f3c98bca3eb600ab32d9078a7d93bf510fdc94400a5bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 23:51:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5212", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 23:51:16", "EXIF DateTimeDigitized": "2002:10:26 23:51:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a0ccb3e136fb5827ddfecfa12de78b034f5375e836fda8a8ff0003c293ba0d1", "phash": "d6cd0fc0fc3b41b0", "dhash": "60610f0b84d0792e", "phash_int": -2.9686992578274094e+18, "collected_at": "2026-05-22T04:29:44.486625+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-26\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-26\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 2038591.0, "mtime": "2002-10-26T22:51:34+00:00", "mtime_ts": 1035672694.0, "ctime": "2002-10-26T22:51:34+00:00", "sha256_file": "a495ac136d833178dc4ea2201e4b3f4076b4cbec7d9a5e39d8e3c41006ca3fce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:26 23:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7292", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:26 23:51:36", "EXIF DateTimeDigitized": "2002:10:26 23:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26e3fda64644fab3c041668b49d3b7a84eda4fc5f80e4fb8b045dd60be3ab6d3", "phash": "d12cc6a52a9637f8", "dhash": "e3b2949d9b9a88c8", "phash_int": -3.374103608120953e+18, "collected_at": "2026-05-22T04:29:44.645414+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 1751350.0, "mtime": "2002-10-27T17:15:56+00:00", "mtime_ts": 1035738956.0, "ctime": "2002-10-27T17:15:56+00:00", "sha256_file": "392f514a30379aebbb3be16ad58d118dba4a0ce089034f83a96686c28858817d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:15:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5870", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:15:58", "EXIF DateTimeDigitized": "2002:10:27 18:15:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e5aa41f02d1bc49b78e772ad02c0a5290591170af1c3a58786838bd3b609ff5", "phash": "fdb7136c2a29c486", "dhash": "3a2a2a2b2333b3a8", "phash_int": -1.646415060909577e+17, "collected_at": "2026-05-22T04:29:44.667530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 1767812.0, "mtime": "2002-10-27T17:16:08+00:00", "mtime_ts": 1035738968.0, "ctime": "2002-10-27T17:16:08+00:00", "sha256_file": "b614bc29b47bbba430db2f9f97b741836b8fc30a5ff14f0c540c353e39517981", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:16:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6338", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:16:09", "EXIF DateTimeDigitized": "2002:10:27 18:16:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "999c93d086261c4357cffce754a4731ad0d39a0ead353816c8b38632ed790425", "phash": "ca666d7b398130e6", "dhash": "cbc385d99999d3f3", "phash_int": -3.862279254410449e+18, "collected_at": "2026-05-22T04:29:44.711530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 1534138.0, "mtime": "2002-10-27T17:16:52+00:00", "mtime_ts": 1035739012.0, "ctime": "2002-10-27T17:16:52+00:00", "sha256_file": "42efd46dcd3eeb9e9880a209734f01b80ca905b0b463090cd8e5564c82572740", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:16:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:16:53", "EXIF DateTimeDigitized": "2002:10:27 18:16:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7015edb4a9004616ceb7a99979fbc71c5ce9515b99ef0e1c03671afed93ff260", "phash": "b5c84de5c7d8d818", "dhash": "e63e3f1f4f1e1e1e", "phash_int": -5.347938908206737e+18, "collected_at": "2026-05-22T04:29:44.779534+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 1835604.0, "mtime": "2002-10-27T17:17:16+00:00", "mtime_ts": 1035739036.0, "ctime": "2002-10-27T17:17:16+00:00", "sha256_file": "d19ddbcc361167a5e44e79af030323d6ca89e7f886bdf83126fe608548974cc9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:17:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5549", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:17:17", "EXIF DateTimeDigitized": "2002:10:27 18:17:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "acd3b510cdcb8def2742d1744800e2654557df337f9c9ca21f65f48df85e49ed", "phash": "899c506793e6d9c3", "dhash": "fef6f3fddf57e5f8", "phash_int": -8.530855188353329e+18, "collected_at": "2026-05-22T04:29:44.849277+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 1630435.0, "mtime": "2002-10-27T17:17:24+00:00", "mtime_ts": 1035739044.0, "ctime": "2002-10-27T17:17:24+00:00", "sha256_file": "c8cb1c66f57bf6ab43ef6110d09999bb29d89851083ad915687e0b54acd29256", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:17:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5002", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:17:25", "EXIF DateTimeDigitized": "2002:10:27 18:17:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[31, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43fc7f08c001afa9e08dd0115c4dc9634c949abff3968eb166a3f371b2941612", "phash": "9592f55f4a20a5d9", "dhash": "f8f8fcfd787eb6d6", "phash_int": -7.668797425844182e+18, "collected_at": "2026-05-22T04:29:44.926278+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 1712546.0, "mtime": "2002-10-27T17:19:04+00:00", "mtime_ts": 1035739144.0, "ctime": "2002-10-27T17:19:04+00:00", "sha256_file": "214618ba3ac2f0b5622e9151da34db0d77b4f4d62e45860d381a35c0ef380ef6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:19:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4697", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:19:05", "EXIF DateTimeDigitized": "2002:10:27 18:19:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "560dfd20a11a0fe3bf66664a4aa9e2d1addef4064a7a06774d11e7e9c54c52cf", "phash": "87878b715996a574", "dhash": "7a6c6c6c134f4d53", "phash_int": -8.680816437782732e+18, "collected_at": "2026-05-22T04:29:44.945454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 1760315.0, "mtime": "2002-10-27T17:19:14+00:00", "mtime_ts": 1035739154.0, "ctime": "2002-10-27T17:19:14+00:00", "sha256_file": "ba6ad6b167b33cca1c67a9dac545ad634b8328ef09ad9d03fbe6eec7ab2a5899", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:19:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5249", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:19:15", "EXIF DateTimeDigitized": "2002:10:27 18:19:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1792730b45b7d99b0eba1e45f99f7a525fe1c45f2e126ad4bd0a448d276addf3", "phash": "8e9f9e251096ae4d", "dhash": "6c73636cc6c7e969", "phash_int": -8.169637316997501e+18, "collected_at": "2026-05-22T04:29:45.076834+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 1813197.0, "mtime": "2002-10-27T17:28:24+00:00", "mtime_ts": 1035739704.0, "ctime": "2002-10-27T17:28:24+00:00", "sha256_file": "489783a0c397b01fa86b0e9e925005cd6b7a1c4ede853163473b8e4232e7fdb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:28:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6126", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:28:25", "EXIF DateTimeDigitized": "2002:10:27 18:28:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c72fe5caceb579563f412d161df60eeb08a4a3acb988b1f62512ac1e7959142", "phash": "d4608c77ab146b75", "dhash": "a4a4a4c4ccc4e463", "phash_int": -3.143358094305367e+18, "collected_at": "2026-05-22T04:29:45.078833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 1733475.0, "mtime": "2002-10-27T17:44:42+00:00", "mtime_ts": 1035740682.0, "ctime": "2002-10-27T17:44:42+00:00", "sha256_file": "3912e7fdaaf7c3d52e9a7f156888351c2ea08ba2c9f537932de850adc961ee58", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:44:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5015", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:44:44", "EXIF DateTimeDigitized": "2002:10:27 18:44:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "afe8966980a67b3bab8794de6f573cc91c2c2418a74aa7bea4eeecf01c3ad148", "phash": "cfcb9096373d00cb", "dhash": "e1e9614d6da978f0", "phash_int": -3.473523712739967e+18, "collected_at": "2026-05-22T04:29:45.213839+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 1731578.0, "mtime": "2002-10-27T17:44:38+00:00", "mtime_ts": 1035740678.0, "ctime": "2002-10-27T17:44:38+00:00", "sha256_file": "af205c1f623a85486f82b9999df05113fac337f36fcdf0b8a80b3ed2bd1c121d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:44:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4894", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:44:39", "EXIF DateTimeDigitized": "2002:10:27 18:44:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65497", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27318892c5f4bacad2fa9dbe417dc4e0ae4e4e38ad85857eeb4789715c0956ac", "phash": "dfc990363718c0dd", "dhash": "60c9e1454fa978f0", "phash_int": -2.3211655704057774e+18, "collected_at": "2026-05-22T04:29:45.232841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 1774305.0, "mtime": "2002-10-27T17:44:52+00:00", "mtime_ts": 1035740692.0, "ctime": "2002-10-27T17:44:52+00:00", "sha256_file": "e7d0cfc97851be7e1f9caf61663395a30c377b3c659390494d1952728145133b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 18:44:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5312", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 18:44:53", "EXIF DateTimeDigitized": "2002:10:27 18:44:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65460", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e1749bd7d740f6a056f13d4b667c767ceaaeb5fe646e941851158beb6b50e490", "phash": "d7f182165a6851cf", "dhash": "8c4c9312696864e9", "phash_int": -2.8863828536500997e+18, "collected_at": "2026-05-22T04:29:45.344546+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 1781393.0, "mtime": "2002-10-27T19:28:14+00:00", "mtime_ts": 1035746894.0, "ctime": "2002-10-27T19:28:14+00:00", "sha256_file": "9aa86860b25e552e198f63e419fd059ef5a9b5fe57094afe73ae93540b612067", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:28:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5588", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:28:16", "EXIF DateTimeDigitized": "2002:10:27 20:28:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d6f789a7f48a75ca10288482f85b5c67c02d5157d3807762174362d75394203", "phash": "abc479138a6d45ae", "dhash": "a797e7e77d5a5353", "phash_int": -6.06959327295483e+18, "collected_at": "2026-05-22T04:29:45.361662+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 1729491.0, "mtime": "2002-10-27T19:28:20+00:00", "mtime_ts": 1035746900.0, "ctime": "2002-10-27T19:28:20+00:00", "sha256_file": "e5514087c21ee3b50ba6f6f6b8ff652828ed010738cea86949f1dcd1f829cec3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:28:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4733", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:28:22", "EXIF DateTimeDigitized": "2002:10:27 20:28:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65487", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16c4e4bae03d0c4f4b71b0c4d89e56b8781e382bf558f77e15d1c5999292576f", "phash": "d2c3c82f3863d64d", "dhash": "c8d9c919554cd0b0", "phash_int": -3.259541600151022e+18, "collected_at": "2026-05-22T04:29:45.470085+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 1602862.0, "mtime": "2002-10-27T19:28:34+00:00", "mtime_ts": 1035746914.0, "ctime": "2002-10-27T19:28:34+00:00", "sha256_file": "fea51d49c045afbda87633857d0182dffe66c5548adcde861508ee0ef80a38d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:28:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4045", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:28:35", "EXIF DateTimeDigitized": "2002:10:27 20:28:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65459", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abf771c9bbf7e9a963cd7e4215d0f45148ffee4d8b1d5d71b94027ddce54f6ba", "phash": "b5d2ce0c19f6cb05", "dhash": "dc5c0c1c5636a69e", "phash_int": -5.344983256364824e+18, "collected_at": "2026-05-22T04:29:45.491085+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 1712223.0, "mtime": "2002-10-27T19:28:40+00:00", "mtime_ts": 1035746920.0, "ctime": "2002-10-27T19:28:40+00:00", "sha256_file": "e0176bac0fe3e29483a3dd8b6bd38538c0ce040b494e8e2e04d069be0c6e6121", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:28:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6500", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:28:42", "EXIF DateTimeDigitized": "2002:10:27 20:28:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "217/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65457", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "868"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca2bf977eb814b96610a4610e4dfa28bc4c8d4f2aa87558c695d77f203caaa31", "phash": "e479b2a4cbf8621a", "dhash": "13929913e6e6ae6c", "phash_int": -1.9833577400135593e+18, "collected_at": "2026-05-22T04:29:45.582844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1960265.0, "mtime": "2002-10-27T19:28:50+00:00", "mtime_ts": 1035746930.0, "ctime": "2002-10-27T19:28:50+00:00", "sha256_file": "1807fd89b88c9ee76a8612d1e701f94dda8bc897187baf3a79480fe854f4dba9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:28:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6574", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:28:52", "EXIF DateTimeDigitized": "2002:10:27 20:28:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "497/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2485"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b20fa0cd76ce4b66f6f1bd8670452ca7f11ab5e7fdb4ec5588803cf5db5ed01a", "phash": "f479b7a659b1220a", "dhash": "0312893237c6aeee", "phash_int": -8.304307311759109e+17, "collected_at": "2026-05-22T04:29:45.585842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 2084654.0, "mtime": "2002-10-27T19:29:04+00:00", "mtime_ts": 1035746944.0, "ctime": "2002-10-27T19:29:04+00:00", "sha256_file": "de7950e183bd1d84561671f3a3ccb45f91697d8f1ddd10ee87862358c17fe295", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:29:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6959", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:29:05", "EXIF DateTimeDigitized": "2002:10:27 20:29:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65453", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "172929fbdde37df44e3481212dd606608033aa855af9f1c909c42a846c425ac1", "phash": "c1d0d583373d0e97", "dhash": "d490b096dfd35246", "phash_int": -4.4808468696894633e+18, "collected_at": "2026-05-22T04:29:45.807608+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 1927865.0, "mtime": "2002-10-27T19:29:18+00:00", "mtime_ts": 1035746958.0, "ctime": "2002-10-27T19:29:18+00:00", "sha256_file": "daa476be232d8edbb7ebd98080109252ba34774498c6ef2541f67fb229ab2329", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:29:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6694", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:29:19", "EXIF DateTimeDigitized": "2002:10:27 20:29:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2859/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2859"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b1c25779a1936997735c14238c9a2867ebeae773f0217cd984d50b306c31f03", "phash": "e07bb44e5b740719", "dhash": "038b8b8153e7e6ae", "phash_int": -2.2710233384435039e+18, "collected_at": "2026-05-22T04:29:45.814606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 1584727.0, "mtime": "2002-10-27T19:29:28+00:00", "mtime_ts": 1035746968.0, "ctime": "2002-10-27T19:29:28+00:00", "sha256_file": "c20eafa5a95edde192d34592dfd892d427a50fd6ee2834e155a4554cfaff4626", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:29:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4057", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:29:30", "EXIF DateTimeDigitized": "2002:10:27 20:29:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65468", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52d59e53b9a24b1885a07ec442f0331f1697f793b638b03c8524b6259205d60d", "phash": "b5d6c91930e7d826", "dhash": "1ca42c8e9e124a92", "phash_int": -5.343862797796649e+18, "collected_at": "2026-05-22T04:29:45.908055+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 2001680.0, "mtime": "2002-10-27T19:29:38+00:00", "mtime_ts": 1035746978.0, "ctime": "2002-10-27T19:29:38+00:00", "sha256_file": "dc574e6f3935b9bf24251b50eb513495c0320a88f3e83947cfdadfb9b85a5684", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 20:29:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6287", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 20:29:40", "EXIF DateTimeDigitized": "2002:10:27 20:29:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e85ec5cd119b6f7f311125f48470de26ddbeaf44faa872c0ffe9a70b3923a2a", "phash": "9d7e23e30400df79", "dhash": "d06870f6926ad86a", "phash_int": -7.098196504757608e+18, "collected_at": "2026-05-22T04:29:45.940225+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1114603.0, "mtime": "2002-10-27T20:08:00+00:00", "mtime_ts": 1035749280.0, "ctime": "2002-10-27T20:08:00+00:00", "sha256_file": "df11ef9dc108817c272dbf95d0cd168b2e6f65942fac66995cb49da97d34c160", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:08:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4354", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:08:01", "EXIF DateTimeDigitized": "2002:10:27 21:08:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65458", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "152", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40d7bb737fae74f25c9435c7ab93facabf8ae8c7ecf26df6c685a60821dc88c0", "phash": "c92632e79cf11b64", "dhash": "e2e6faf3f2d1d9f9", "phash_int": -3.9524156526191503e+18, "collected_at": "2026-05-22T04:29:46.069043+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 916325.0, "mtime": "2002-10-27T20:08:06+00:00", "mtime_ts": 1035749286.0, "ctime": "2002-10-27T20:08:06+00:00", "sha256_file": "59ec0976c50cb5077c95832eab7d7f673707c93326c703d1c907b54eb666c7f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:08:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3670", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:08:07", "EXIF DateTimeDigitized": "2002:10:27 21:08:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65462", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "870ca3e41c38c151cbaaaa8c0c8700ecc74b657db8abb4a64b5ca870f5e2448f", "phash": "cd66319966e29e61", "dhash": "27626265f2f1d1d2", "phash_int": -3.646172313383953e+18, "collected_at": "2026-05-22T04:29:46.072164+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 1001476.0, "mtime": "2002-10-27T20:08:20+00:00", "mtime_ts": 1035749300.0, "ctime": "2002-10-27T20:08:20+00:00", "sha256_file": "fca1ca402db0dedef0035fa6323f6c76ff1af7c2d414bb7bf27122759f583640", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:08:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4164", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:08:22", "EXIF DateTimeDigitized": "2002:10:27 21:08:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "237/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "474"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a198a1a2d6554e307537ca1fdb3d8ba7d7ac1065e123bd70a8731f4b37a8d11", "phash": "c97c3666f89980e6", "dhash": "6773f1f2f0c069f1", "phash_int": -3.9282049590885417e+18, "collected_at": "2026-05-22T04:29:46.197887+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 1166295.0, "mtime": "2002-10-27T20:08:12+00:00", "mtime_ts": 1035749292.0, "ctime": "2002-10-27T20:08:12+00:00", "sha256_file": "733edf0653113d5298fc402e385d03b0958b9c042aaf4d0eeaf813990a6bea3d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:08:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3879", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:08:13", "EXIF DateTimeDigitized": "2002:10:27 21:08:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65473", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "149", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c4a9934db9f177ef1e4d7e04af9291c95581731c140bee706cdcf2c624744f7", "phash": "cc3c3399cd9ccc25", "dhash": "676262e2e2f1f168", "phash_int": -3.7300496556969953e+18, "collected_at": "2026-05-22T04:29:46.200890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 1259995.0, "mtime": "2002-10-27T20:10:14+00:00", "mtime_ts": 1035749414.0, "ctime": "2002-10-27T20:10:14+00:00", "sha256_file": "3b961a518f26cc7a077fd1247af2af72c3ef89d61a372cc17aa0dac831a5fed1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:10:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4097", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:10:15", "EXIF DateTimeDigitized": "2002:10:27 21:10:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "72/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "145", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88fdb5b9910d03d82ab545d45954e9bbdf1e727ad99784978ff7fc7efda23823", "phash": "cc786336333333c5", "dhash": "b0b2f030f0e0e0c8", "phash_int": -3.7131088083285965e+18, "collected_at": "2026-05-22T04:29:46.289612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 1210962.0, "mtime": "2002-10-27T20:09:56+00:00", "mtime_ts": 1035749396.0, "ctime": "2002-10-27T20:09:56+00:00", "sha256_file": "e3433047d08a07146d36d54756db1f4e81925a80a4cb2a9d211051373f71c5da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:09:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4029", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:09:57", "EXIF DateTimeDigitized": "2002:10:27 21:09:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65489", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "148", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "caf9c4e9754599dd5c2c8e39509bd0e7127a68d9ba6ecc70e60bf318dd882038", "phash": "99796664378ec991", "dhash": "e493f2f0f1f16060", "phash_int": -7.387761133109721e+18, "collected_at": "2026-05-22T04:29:46.305609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 2128561.0, "mtime": "2002-10-27T20:10:34+00:00", "mtime_ts": 1035749434.0, "ctime": "2002-10-27T20:10:34+00:00", "sha256_file": "b151b33356d21c9696c19e0874b12755dce249407ff6e380b5981383d681f7a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:10:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6621", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:10:35", "EXIF DateTimeDigitized": "2002:10:27 21:10:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1707/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65460", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1707"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71f73fdd07bda586cae9a855b6dcfd68a82f3397c2bbe0ed796e784d39066943", "phash": "8039e087b38f7dc5", "dhash": "bdb59098dce6e585", "phash_int": -9.207081089744537e+18, "collected_at": "2026-05-22T04:29:46.400612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 1991860.0, "mtime": "2002-10-27T20:10:40+00:00", "mtime_ts": 1035749440.0, "ctime": "2002-10-27T20:10:40+00:00", "sha256_file": "367e885ad7dd8b20ee2789b48098c56ad8528d087729ba2f387eb117251bd832", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:10:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6474", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:10:41", "EXIF DateTimeDigitized": "2002:10:27 21:10:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "313/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1565"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5589a496574a00d1ff2a42ac962cf6e1957e1264d54d7b0f74cd22cfa1885de", "phash": "b01ca2851fe7674b", "dhash": "eeb92125bac6cd9d", "phash_int": -5.756547531036727e+18, "collected_at": "2026-05-22T04:29:46.413618+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 1535603.0, "mtime": "2002-10-27T20:11:12+00:00", "mtime_ts": 1035749472.0, "ctime": "2002-10-27T20:11:12+00:00", "sha256_file": "687ac7b9563e64fdb336183c5829489af640b1ba8f7b8a75fe26e88e769a9d6f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:11:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4393", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:11:14", "EXIF DateTimeDigitized": "2002:10:27 21:11:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65d92eeb999b8710e4f1ce5e390b1b37390b8bbc617449007deb6841062159b6", "phash": "ff787e6196861848", "dhash": "2e32304c525a4222", "phash_int": -3.814163923035129e+16, "collected_at": "2026-05-22T04:29:46.481669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1856965.0, "mtime": "2002-10-27T20:11:46+00:00", "mtime_ts": 1035749506.0, "ctime": "2002-10-27T20:11:46+00:00", "sha256_file": "880b68d8af6e7c93b813e1ec673222ec9da0f0fa61fde3b396147d4819f60b30", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:11:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5728", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:11:47", "EXIF DateTimeDigitized": "2002:10:27 21:11:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65492", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb20b2718b094c7439e56b562ef8ab8629ec4630219cadea60a9dae2bc0a89ef", "phash": "d5922d68d3525ad5", "dhash": "392afcd9dc312646", "phash_int": -3.057331268785907e+18, "collected_at": "2026-05-22T04:29:46.538061+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1785955.0, "mtime": "2002-10-27T20:12:18+00:00", "mtime_ts": 1035749538.0, "ctime": "2002-10-27T20:12:18+00:00", "sha256_file": "6cdfa8e4c3edeb04b30884f7408258ff194350a1c6db90f49f2a66582ca27ea9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:12:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5294", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:12:19", "EXIF DateTimeDigitized": "2002:10:27 21:12:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65435", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f1bdd13df0964597db09960965a430ea7c360a533426ce0b558e0457d14ab4c", "phash": "e06096f68d78916f", "dhash": "949d9f97829c9ce0", "phash_int": -2.2786554257698609e+18, "collected_at": "2026-05-22T04:29:46.577284+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1702205.0, "mtime": "2002-10-27T20:12:22+00:00", "mtime_ts": 1035749542.0, "ctime": "2002-10-27T20:12:22+00:00", "sha256_file": "a360df0e85216368615aa3477293fa7489a5dfcd48e10780bd5e6d8209bbf12e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:12:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4996", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:12:24", "EXIF DateTimeDigitized": "2002:10:27 21:12:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa9e3e374e75da904c30437eaa1c34611cc49254e2dab494ee6d77e38f5cf0d6", "phash": "e06096f68d7790cd", "dhash": "949d9f978a88ccf0", "phash_int": -2.2786554257699264e+18, "collected_at": "2026-05-22T04:29:46.619452+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1639354.0, "mtime": "2002-10-27T20:12:34+00:00", "mtime_ts": 1035749554.0, "ctime": "2002-10-27T20:12:34+00:00", "sha256_file": "8e783b2940bf1f72ad7297a4b243ec280bb44b158d8683d24a5c785548298d74", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:12:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4410", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:12:35", "EXIF DateTimeDigitized": "2002:10:27 21:12:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5eeb56562ab2f38b9af37fa559cff0341d05794b937bf40cd79731ef4ed6bc79", "phash": "c6670b9cb4244bdb", "dhash": "cfcfcbc4d4f8f8f8", "phash_int": -4.1503357639335414e+18, "collected_at": "2026-05-22T04:29:46.662548+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1589515.0, "mtime": "2002-10-27T20:12:40+00:00", "mtime_ts": 1035749560.0, "ctime": "2002-10-27T20:12:40+00:00", "sha256_file": "2d00971a5ebb76c4cbebcd311d3e2bdfb3b0c5aac473a71b22e9ba7fc16c44aa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:12:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4405", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:12:41", "EXIF DateTimeDigitized": "2002:10:27 21:12:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65451", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a894e0704ddf8d33ce90ec11f7c88b28bed7dc447cc197c83a523b75c5d6b5db", "phash": "c3610b9eb42f49d3", "dhash": "cfcdc3ccacf0e9f8", "phash_int": -4.368197387316934e+18, "collected_at": "2026-05-22T04:29:46.704552+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 1692011.0, "mtime": "2002-10-27T20:13:00+00:00", "mtime_ts": 1035749580.0, "ctime": "2002-10-27T20:13:00+00:00", "sha256_file": "933134c6f0b8e50579f882e8e65529b961995cb9a48b2e530fb3450d94928ba3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:13:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4303", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:13:02", "EXIF DateTimeDigitized": "2002:10:27 21:13:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e8751e4bd83849c6710bc8e279d98e13106244aa7be9751ad3ff90fe1d00ee6", "phash": "c17025cfda93646d", "dhash": "9e9e9699b1f2f2f1", "phash_int": -4.508061652342316e+18, "collected_at": "2026-05-22T04:29:46.820611+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 1735088.0, "mtime": "2002-10-27T20:13:06+00:00", "mtime_ts": 1035749586.0, "ctime": "2002-10-27T20:13:06+00:00", "sha256_file": "c3824a8e908223c81db22e813156320f19bd5e4f41abb6e823dd0cbf0152df9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:13:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4267", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:13:07", "EXIF DateTimeDigitized": "2002:10:27 21:13:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8cc8a74e4b8e771d68d532bb4c31b7b9472ee6497c62f2b5ca4709bf7624a55a", "phash": "c17025deda136cce", "dhash": "9f9fd698b9f0f2f1", "phash_int": -4.508061587926193e+18, "collected_at": "2026-05-22T04:29:46.835702+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 1790379.0, "mtime": "2002-10-27T20:13:10+00:00", "mtime_ts": 1035749590.0, "ctime": "2002-10-27T20:13:10+00:00", "sha256_file": "84b38cc8985e686312b9fbd2416d609320dcc0aa15aedfda4d279ed2c510d25c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:13:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4551", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:13:12", "EXIF DateTimeDigitized": "2002:10:27 21:13:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65444", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "456af5d3f773fa2ce974064f5bbd4a7401861af0126caa91e0f56bef64b74ddc", "phash": "d0726487dac4676d", "dhash": "9e8e9690b8e4f6b4", "phash_int": -3.426565831821859e+18, "collected_at": "2026-05-22T04:29:46.961706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0038_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0038_IMG.JPG", "file_name": "100-0038_IMG.JPG", "file_stem": "100-0038_IMG", "file_ext": ".jpg", "file_size": 1671052.0, "mtime": "2002-10-27T20:13:16+00:00", "mtime_ts": 1035749596.0, "ctime": "2002-10-27T20:13:16+00:00", "sha256_file": "21e6cd07cc5f6a1725964cfb76a65a08f987b5b626ebf3ebe4ccbf26ded1be5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:13:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4635", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:13:17", "EXIF DateTimeDigitized": "2002:10:27 21:13:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cec013898316b19afd392d68671549dfb6fff2268aaa44095cc9e8ad721ed5e0", "phash": "c162638ed89d6c6b", "dhash": "cfcfd29490e2da5a", "phash_int": -4.5119344115011144e+18, "collected_at": "2026-05-22T04:29:46.964707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 1732866.0, "mtime": "2002-10-27T20:13:22+00:00", "mtime_ts": 1035749602.0, "ctime": "2002-10-27T20:13:22+00:00", "sha256_file": "53273a6e12eff0f8a464816b9a7a0f2e689f17e2b600898126a18a8b1dbc1481", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:13:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4819", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:13:24", "EXIF DateTimeDigitized": "2002:10:27 21:13:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82a2d80da4194abb7a18a29966d936b6472c5b4c6e77ba622f828de322ddf5b5", "phash": "85e432be5b154e36", "dhash": "dce6e6d2f2767eda", "phash_int": -8.798851978821808e+18, "collected_at": "2026-05-22T04:29:47.159900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 1828458.0, "mtime": "2002-10-27T20:14:06+00:00", "mtime_ts": 1035749646.0, "ctime": "2002-10-27T20:14:06+00:00", "sha256_file": "f254c47b265d952b442cedfab4368b3696e60cc39f5fe23a90cad885dd0c4389", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6117", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:07", "EXIF DateTimeDigitized": "2002:10:27 21:14:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af5618c0ca65d28f09337d16a58b21bd307ca5ae22b938932d456d039ba39e29", "phash": "b0fa5006cd79dd13", "dhash": "392d1b17fdef9ed2", "phash_int": -5.69415078870923e+18, "collected_at": "2026-05-22T04:29:47.166900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 1733478.0, "mtime": "2002-10-27T20:14:20+00:00", "mtime_ts": 1035749660.0, "ctime": "2002-10-27T20:14:20+00:00", "sha256_file": "23c5912c4fb61e945625a1fdb96a0120478c6969ed3f323abe89de3012deda34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5235", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:21", "EXIF DateTimeDigitized": "2002:10:27 21:14:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65a9a40fd8b4f151fd6879fdd6fb51fd03711eca9554902c53b4808e551f6b27", "phash": "fd7713965c161a12", "dhash": "481a1b3333b690b0", "phash_int": -1.8265572337424125e+17, "collected_at": "2026-05-22T04:29:47.309906+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 1819163.0, "mtime": "2002-10-27T20:14:10+00:00", "mtime_ts": 1035749650.0, "ctime": "2002-10-27T20:14:10+00:00", "sha256_file": "b28cf48de136fbc73fc5450c0c081da31b26182137f2fbbc198b4628ca15981c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6024", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:12", "EXIF DateTimeDigitized": "2002:10:27 21:14:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2740232853bfeae2dd65ed33c20a5a272cf86e178311d52dcd1e72b31eccb2f2", "phash": "b83b5832c638edd1", "dhash": "39191bf7fdbf96f2", "phash_int": -5.171442772007654e+18, "collected_at": "2026-05-22T04:29:47.329909+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 1938958.0, "mtime": "2002-10-27T20:14:32+00:00", "mtime_ts": 1035749672.0, "ctime": "2002-10-27T20:14:32+00:00", "sha256_file": "d90d6e4e5d52f761e726c4f54d6d981d1f9ae7fcf53002cde10b3fbefd485982", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6655", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:33", "EXIF DateTimeDigitized": "2002:10:27 21:14:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e85d911b4130ce3318608a03593fb37d485363fd1ca5975ada1678bb8fd4c209", "phash": "8409bdf0cd4c79f8", "dhash": "b6eeb7e0e42c2476", "phash_int": -8.932399543978527e+18, "collected_at": "2026-05-22T04:29:47.413910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 1932910.0, "mtime": "2002-10-27T20:14:38+00:00", "mtime_ts": 1035749678.0, "ctime": "2002-10-27T20:14:38+00:00", "sha256_file": "8729a090a01abd05e32f0ec21ece10161ae4a8c9962441acc5d485ea90c5445d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6555", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:39", "EXIF DateTimeDigitized": "2002:10:27 21:14:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6d67485f47d74185bb02787ded928995e3ef43ca80ebc9acdaa175aed9d82c9", "phash": "8409b9f0cd4c7ef8", "dhash": "b6eee7e2e4ac2476", "phash_int": -8.932403942025036e+18, "collected_at": "2026-05-22T04:29:47.443910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 1901647.0, "mtime": "2002-10-27T20:14:44+00:00", "mtime_ts": 1035749684.0, "ctime": "2002-10-27T20:14:44+00:00", "sha256_file": "bce1b8549f6092c5777a117f44109c2cac424cabf081b779a971af355229b917", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6583", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:45", "EXIF DateTimeDigitized": "2002:10:27 21:14:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94a85d2aaa7564250a8b09bddd40df9b272ce3696ffd8ed3c489e3d854f56e10", "phash": "8c0bf1d75970b686", "dhash": "d2d3f7b3e2e4b496", "phash_int": -8.355318776435001e+18, "collected_at": "2026-05-22T04:29:47.496914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 1913166.0, "mtime": "2002-10-27T20:14:50+00:00", "mtime_ts": 1035749690.0, "ctime": "2002-10-27T20:14:50+00:00", "sha256_file": "1d88c4311339d78b9d0b3ec0bbe16c9ec77f72c218c1e73a7aca87c7f8f59440", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:14:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6605", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:14:51", "EXIF DateTimeDigitized": "2002:10:27 21:14:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65470", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32d0912a9cd054395603d3fb104888c3bd4c658b86da65914367e3150e9a2621", "phash": "8c09f9c35972a6b6", "dhash": "b2f3efb3f2e4a496", "phash_int": -8.355873016194619e+18, "collected_at": "2026-05-22T04:29:47.519912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 2292906.0, "mtime": "2002-10-27T20:15:36+00:00", "mtime_ts": 1035749736.0, "ctime": "2002-10-27T20:15:36+00:00", "sha256_file": "819931b91a06ff7fa6a8381c00a8f00b74d2008e86dd7ca0fab2e79f99ef7d99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:15:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6795", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:15:38", "EXIF DateTimeDigitized": "2002:10:27 21:15:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6791cfcde2fe3eae8affb96b941cd6be98124e169969842d5bdfdfee61b040f7", "phash": "860c3cb1c7dc5c7c", "dhash": "a6efe5e2c82c2c76", "phash_int": -8.787582038646695e+18, "collected_at": "2026-05-22T04:29:47.643012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 2248332.0, "mtime": "2002-10-27T20:15:30+00:00", "mtime_ts": 1035749730.0, "ctime": "2002-10-27T20:15:30+00:00", "sha256_file": "a77e2b54df3327c4827e6d076252f637551833535b58f095fc8ee0545e4949f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:15:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6601", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:15:32", "EXIF DateTimeDigitized": "2002:10:27 21:15:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccdadd7935bc332f8f23ff5befb9a0b859846dd7a7f707e16efa90b58f698f54", "phash": "840ebcb6c7dc7c60", "dhash": "e6dfe5e2e8acb632", "phash_int": -8.930993517805929e+18, "collected_at": "2026-05-22T04:29:47.657016+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 2091746.0, "mtime": "2002-10-27T20:15:44+00:00", "mtime_ts": 1035749744.0, "ctime": "2002-10-27T20:15:44+00:00", "sha256_file": "44e54c626ec7bbf12c0f7b960bb91f0f21ef6c18a9fb12ad1bed5809a38574b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:15:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6774", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:15:46", "EXIF DateTimeDigitized": "2002:10:27 21:15:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65468", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4228de845e341f1c62835d5af1ef785f313733b9599aabee45533cd02975294", "phash": "8c093fb0c7c5595d", "dhash": "eeeff2e0e4b62476", "phash_int": -8.356077605110852e+18, "collected_at": "2026-05-22T04:29:47.797171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 2060944.0, "mtime": "2002-10-27T20:15:50+00:00", "mtime_ts": 1035749750.0, "ctime": "2002-10-27T20:15:50+00:00", "sha256_file": "fd83377e6ed048394ee41f00e8e988a24db35aeaeb32f4fbb3e042d456c31b52", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:15:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5874", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:15:51", "EXIF DateTimeDigitized": "2002:10:27 21:15:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0c2a279b84e07a05b6fa8da9293689d34782fa86375136018d5781ba0e4eaae", "phash": "c7463239c6d9d866", "dhash": "45e0e4e4e0dadaec", "phash_int": -4.0875243880614564e+18, "collected_at": "2026-05-22T04:29:47.804173+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 1524963.0, "mtime": "2002-10-27T20:15:54+00:00", "mtime_ts": 1035749754.0, "ctime": "2002-10-27T20:15:54+00:00", "sha256_file": "8b60612a76d38da0ac69d69e39886ea91c55678b599ff542f4cfc26bdedf2fff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:15:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4871", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:15:56", "EXIF DateTimeDigitized": "2002:10:27 21:15:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7bf8a31cd0375005bfd5ec6df33cccfa0d46fa3a6f3d2cbdfaf82f43196bbbaa", "phash": "f586957825e29e0d", "dhash": "848c0c0412110216", "phash_int": -7.547515442737567e+17, "collected_at": "2026-05-22T04:29:47.948521+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 1780797.0, "mtime": "2002-10-27T20:16:00+00:00", "mtime_ts": 1035749760.0, "ctime": "2002-10-27T20:16:00+00:00", "sha256_file": "e972b69ce3de113d270db441a51b90ebde92dbd741d33380294a478b9722c038", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:16:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5274", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:16:01", "EXIF DateTimeDigitized": "2002:10:27 21:16:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebb1fff760248c16ed08e3a763ff7d9b7c0bd89faeb72af9e417b223afe2a83f", "phash": "ddc89e23396cc513", "dhash": "3230b2125acc6854", "phash_int": -2.4655469218608727e+18, "collected_at": "2026-05-22T04:29:47.981524+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 1748440.0, "mtime": "2002-10-27T20:49:12+00:00", "mtime_ts": 1035751752.0, "ctime": "2002-10-27T20:49:12+00:00", "sha256_file": "0636a5ebba3932e6a89a3b3f8f61e02d1ad2c7a886354d1c1247515b4ceafabe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:49:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5562", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:49:14", "EXIF DateTimeDigitized": "2002:10:27 21:49:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b174bf9992e8ffb936399b0318c5fa5c69d2653af34fb5b92ba425aac5d7727d", "phash": "8ed994a2e5b538d2", "dhash": "e0a2b04245ed6dee", "phash_int": -8.153322223018101e+18, "collected_at": "2026-05-22T04:29:48.085529+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\10\\10-27\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\10\\10-27\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 2010145.0, "mtime": "2002-10-27T20:49:32+00:00", "mtime_ts": 1035751772.0, "ctime": "2002-10-27T20:49:32+00:00", "sha256_file": "4d88bc59e249f4db6718e9ee637bc7a0ead359e3154b4730a9a4802da82500f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:27 21:49:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6181", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:27 21:49:33", "EXIF DateTimeDigitized": "2002:10:27 21:49:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d11109af12a3974b8d8aaf1e43e4c98ff2753c29be7c14e61d9ebe6b57421ab", "phash": "dcc09d1aa5956e27", "dhash": "a2b0a2c0e9696a36", "phash_int": -2.5398574520642156e+18, "collected_at": "2026-05-22T04:29:48.109528+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-38.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-38.jpg", "file_name": "2002-11-13--09-21-38.jpg", "file_stem": "2002-11-13--09-21-38", "file_ext": ".jpg", "file_size": 1681855.0, "mtime": "2002-11-13T08:21:36+00:00", "mtime_ts": 1037175696.0, "ctime": "2002-11-13T08:21:36+00:00", "sha256_file": "cf663f1b843f7ac0cff603bcc17b6a2ff0894e3c33d97afce8e4b4205a714373", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:21:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4383", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:21:38", "EXIF DateTimeDigitized": "2002:11:13 09:21:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32e92a02831343455e151106ab51f03e37511ab884ada93a8ba2988ac9f2c825", "phash": "d96a285594a5736b", "dhash": "91a1919028700212", "phash_int": -2.7803654719166577e+18, "collected_at": "2026-05-22T04:29:48.230535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-23.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-23.jpg", "file_name": "2002-11-13--09-21-23.jpg", "file_stem": "2002-11-13--09-21-23", "file_ext": ".jpg", "file_size": 1899058.0, "mtime": "2002-11-13T08:21:22+00:00", "mtime_ts": 1037175682.0, "ctime": "2002-11-13T08:21:22+00:00", "sha256_file": "766a3f5760dec8186ccf0959c68b8df3d505917855b764291d705531e1194074", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:21:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4364", "EXIF ExposureTime": "1/160", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:21:23", "EXIF DateTimeDigitized": "2002:11:13 09:21:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "489/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "978"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca4ba7121598b6b3eeeb42a6202ff26001ee16c69e3c236b60abc9ef08333965", "phash": "94d5c3a3255a9b27", "dhash": "6c6c74348eabc5c6", "phash_int": -7.722050880583067e+18, "collected_at": "2026-05-22T04:29:48.237532+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-16.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-16.jpg", "file_name": "2002-11-13--09-24-16.jpg", "file_stem": "2002-11-13--09-24-16", "file_ext": ".jpg", "file_size": 1770840.0, "mtime": "2002-11-13T08:24:14+00:00", "mtime_ts": 1037175854.0, "ctime": "2002-11-13T08:24:14+00:00", "sha256_file": "bd24cc15a9c32901e468ce933ed846e0c8fba4c13b8a8492d748c1318f468199", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:24:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2463", "EXIF ExposureTime": "1/640", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:24:16", "EXIF DateTimeDigitized": "2002:11:13 09:24:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3199/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3199"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd16dd1ca02548d565027c865313e4f3d44d7baf77a66c4aec25660cfec23069", "phash": "822a783e6667d9d1", "dhash": "e1f1c8ecec70f8f8", "phash_int": -9.067302690355685e+18, "collected_at": "2026-05-22T04:29:48.392538+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-57.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-21-57.jpg", "file_name": "2002-11-13--09-21-57.jpg", "file_stem": "2002-11-13--09-21-57", "file_ext": ".jpg", "file_size": 1925212.0, "mtime": "2002-11-13T08:21:56+00:00", "mtime_ts": 1037175716.0, "ctime": "2002-11-13T08:21:56+00:00", "sha256_file": "8be40df97c0d1bd37de83826f1b4070db6d4fc725434f3296e55d90a2f2baece", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:21:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5758", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:21:57", "EXIF DateTimeDigitized": "2002:11:13 09:21:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "166", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02359c45e17b266a3bf06ed2116fe82b3ec41a9ea5b48f61bd034948ad45e278", "phash": "d7f885ae4057592c", "dhash": "f0c010c068686cea", "phash_int": -2.8844085778805325e+18, "collected_at": "2026-05-22T04:29:48.404538+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-41.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-41.jpg", "file_name": "2002-11-13--09-24-41.jpg", "file_stem": "2002-11-13--09-24-41", "file_ext": ".jpg", "file_size": 2025928.0, "mtime": "2002-11-13T08:24:40+00:00", "mtime_ts": 1037175880.0, "ctime": "2002-11-13T08:24:40+00:00", "sha256_file": "d3ffc7f335ecd07f22e3d4c679fe667594498976a947dd99c14ef03080939d48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:24:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4907", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:24:41", "EXIF DateTimeDigitized": "2002:11:13 09:24:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "206", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "315572e54de41b83f0272f5a1a0c0b7f1ff7ec28b40ac4bbeaf062dff676d5ab", "phash": "b3b28c1d7461439f", "dhash": "ccecc88e1c590b6c", "phash_int": -5.498178136931483e+18, "collected_at": "2026-05-22T04:29:48.571022+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-30.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\13\\2002-11-13--09-24-30.jpg", "file_name": "2002-11-13--09-24-30.jpg", "file_stem": "2002-11-13--09-24-30", "file_ext": ".jpg", "file_size": 1820398.0, "mtime": "2002-11-13T08:24:28+00:00", "mtime_ts": 1037175868.0, "ctime": "2002-11-13T08:24:28+00:00", "sha256_file": "d4dc184b8705a1ef5221012b15ae3d22b66af666224e76b9036e91597ce2d72b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:24:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3290", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:24:30", "EXIF DateTimeDigitized": "2002:11:13 09:24:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d387fd354f2a760364bf671cec18b4c11c09df86c91e98525fc006519664d042", "phash": "c7c75342118cbdab", "dhash": "c8c8e8f0f0c0f09c", "phash_int": -4.0511777965690885e+18, "collected_at": "2026-05-22T04:29:48.578026+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\30\\2002-11-30--09-44-18.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\30\\2002-11-30--09-44-18.jpg", "file_name": "2002-11-30--09-44-18.jpg", "file_stem": "2002-11-30--09-44-18", "file_ext": ".jpg", "file_size": 1581345.0, "mtime": "2002-12-01T11:32:22+00:00", "mtime_ts": 1038742342.0, "ctime": "2002-12-01T11:32:22+00:00", "sha256_file": "f2afaa127bcc4169f1e1a0c919ff929241db85b66a773643a0be294e9f3e2163", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:30 09:44:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3608", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:30 09:44:18", "EXIF DateTimeDigitized": "2002:11:30 09:44:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "177/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "177"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f655ee372d3c7951ed43efa0a9c119de38a21375f3b5b791716994cb3998445d", "phash": "d5e3c70e1f98c390", "dhash": "c08088183cb8bcd4", "phash_int": -3.0343628604440074e+18, "collected_at": "2026-05-22T04:29:48.757892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\11\\30\\2002-11-30--09-44-10.jpg", "file_path_relative": "HD02#FOTKY\\2002\\11\\30\\2002-11-30--09-44-10.jpg", "file_name": "2002-11-30--09-44-10.jpg", "file_stem": "2002-11-30--09-44-10", "file_ext": ".jpg", "file_size": 1663328.0, "mtime": "2002-12-01T11:32:20+00:00", "mtime_ts": 1038742340.0, "ctime": "2002-12-01T11:32:20+00:00", "sha256_file": "45546251523b807455781eb65594e9411565afedc5ab3f818420ad495518debe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:30 09:44:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3626", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:30 09:44:10", "EXIF DateTimeDigitized": "2002:11:30 09:44:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "201/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "201"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06e0fec8e58dff311384c0d0d0f1b9027e5301c901d67dd3f318fb5ad2537374", "phash": "f2c50f1e7811073f", "dhash": "c0c0c09c1c78f9cf", "phash_int": -9.533391225811745e+17, "collected_at": "2026-05-22T04:29:48.771892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0001.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0001.jpg", "file_name": "IMG_0001.jpg", "file_stem": "IMG_0001", "file_ext": ".jpg", "file_size": 1337568.0, "mtime": "2002-12-01T14:52:22+00:00", "mtime_ts": 1038754342.0, "ctime": "2002-12-01T14:52:22+00:00", "sha256_file": "3498cef2ed054171a4a58dc5b420cec4843387049f6ad40d038ad1229c7d1e60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:52:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4560", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:52:22", "EXIF DateTimeDigitized": "2002:12:01 15:52:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[82, 183, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb98594312d3b86ccd5d8f840e2b7f603ec6340aee1daf08d50494a885e174f7", "phash": "86b3f832b3052dea", "dhash": "ecede26e4ce4e4e0", "phash_int": -8.740369555160487e+18, "collected_at": "2026-05-22T04:29:48.892898+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0002.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0002.jpg", "file_name": "IMG_0002.jpg", "file_stem": "IMG_0002", "file_ext": ".jpg", "file_size": 1730555.0, "mtime": "2002-12-01T14:53:34+00:00", "mtime_ts": 1038754414.0, "ctime": "2002-12-01T14:53:34+00:00", "sha256_file": "69e2382bc2c22b88636fabf1aada23297a036bb441f73102a9be2289892cf374", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:53:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4832", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:53:33", "EXIF DateTimeDigitized": "2002:12:01 15:53:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92279863791ed3bdb1b4bb3ef006a6786aa72dace2279b03d2eef1d9cf6ed6d0", "phash": "eb9844ed33879362", "dhash": "1313191b1b0b0b0b", "phash_int": -1.470349492774006e+18, "collected_at": "2026-05-22T04:29:48.896894+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0003.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0003.jpg", "file_name": "IMG_0003.jpg", "file_stem": "IMG_0003", "file_ext": ".jpg", "file_size": 1283304.0, "mtime": "2002-12-01T14:54:20+00:00", "mtime_ts": 1038754460.0, "ctime": "2002-12-01T14:54:20+00:00", "sha256_file": "1fa546ca046096373e5fd8df3e7308521671877d7fb032123877ab410db10161", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:54:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3532", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:54:19", "EXIF DateTimeDigitized": "2002:12:01 15:54:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11a2dd7200ca96e1f6fba842e6757342d9e9a813d9570c4317919b0e1d7493b1", "phash": "d4d50b24ec8f36e2", "dhash": "f0f0f0b4a4b4e1e1", "phash_int": -3.110567714413923e+18, "collected_at": "2026-05-22T04:29:49.038900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0004.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0004.jpg", "file_name": "IMG_0004.jpg", "file_stem": "IMG_0004", "file_ext": ".jpg", "file_size": 1381855.0, "mtime": "2002-12-01T14:54:44+00:00", "mtime_ts": 1038754484.0, "ctime": "2002-12-01T14:54:44+00:00", "sha256_file": "df74414e4a295b4d617d5028090d8d57e35e969666acf12f3a15d05f53d98036", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:54:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4289", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:54:44", "EXIF DateTimeDigitized": "2002:12:01 15:54:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "103", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4af81d93083d19351106e9091a717213fbe6078f594f7ce199ad3574a584bf14", "phash": "fa96143e272f6924", "dhash": "252529292d212d0d", "phash_int": -3.901020605430228e+17, "collected_at": "2026-05-22T04:29:49.081910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0005.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0005.jpg", "file_name": "IMG_0005.jpg", "file_stem": "IMG_0005", "file_ext": ".jpg", "file_size": 1421088.0, "mtime": "2002-12-01T14:55:08+00:00", "mtime_ts": 1038754508.0, "ctime": "2002-12-01T14:55:08+00:00", "sha256_file": "72a26d447e8963fbe8a4ed0344b45e781d47a52f5fd84f7d19f5a4866c81eef2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:55:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4325", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:55:07", "EXIF DateTimeDigitized": "2002:12:01 15:55:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[77, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f2d76f42d62b6cec172ed27b6fdb0b64351b5938acb45605efa06346d826f92", "phash": "87f1550e6c6c9b0b", "dhash": "eed8d897f17de5f0", "phash_int": -8.651039888765052e+18, "collected_at": "2026-05-22T04:29:49.141905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0006.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0006.jpg", "file_name": "IMG_0006.jpg", "file_stem": "IMG_0006", "file_ext": ".jpg", "file_size": 1478253.0, "mtime": "2002-12-01T14:57:12+00:00", "mtime_ts": 1038754632.0, "ctime": "2002-12-01T14:57:12+00:00", "sha256_file": "0367a9ef7b868d49be78fa30ca844044607d19f752973debc200659b1c4597c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:57:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4601", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:57:11", "EXIF DateTimeDigitized": "2002:12:01 15:57:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[61, 205, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "100", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17b52ca1172b1ac1e6ec351e4705cf26950f88e49dd86d4703ecd8e2ed8c92d0", "phash": "cbdf166e01316e13", "dhash": "606949d3632129e8", "phash_int": -3.756258902481474e+18, "collected_at": "2026-05-22T04:29:49.190906+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0007.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0007.jpg", "file_name": "IMG_0007.jpg", "file_stem": "IMG_0007", "file_ext": ".jpg", "file_size": 1350605.0, "mtime": "2002-12-01T14:58:24+00:00", "mtime_ts": 1038754704.0, "ctime": "2002-12-01T14:58:24+00:00", "sha256_file": "b93ccd18e199b7c4fbc5e5471b6379c001dbfb612015b7482383a483a9aabf8a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:58:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4157", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:58:23", "EXIF DateTimeDigitized": "2002:12:01 15:58:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9b09e5dd9ce6cd51c3da133e39c2cf3fd89e16932f3d035147056fcc935bfcd", "phash": "cbda16ec0d33b10e", "dhash": "e1f1c9c3e3c34d66", "phash_int": -3.757665735997673e+18, "collected_at": "2026-05-22T04:29:49.232914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0008.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0008.jpg", "file_name": "IMG_0008.jpg", "file_stem": "IMG_0008", "file_ext": ".jpg", "file_size": 1294942.0, "mtime": "2002-12-01T14:59:22+00:00", "mtime_ts": 1038754762.0, "ctime": "2002-12-01T14:59:22+00:00", "sha256_file": "b5d4ae936b9456257c8d23b49d0f3b47ff9be3fa2f20904092dddc332d52f999", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:59:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3665", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:59:22", "EXIF DateTimeDigitized": "2002:12:01 15:59:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[144, 123, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "160", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abf67aefa1a58e460e8eb19772d1de1f72907aa5ca02a1fa22475e9f1be87bfb", "phash": "a3d04fb43c839b65", "dhash": "c0e0d89496584b4f", "phash_int": -6.642721814843516e+18, "collected_at": "2026-05-22T04:29:49.360917+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0009.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0009.jpg", "file_name": "IMG_0009.jpg", "file_stem": "IMG_0009", "file_ext": ".jpg", "file_size": 1327724.0, "mtime": "2002-12-01T14:59:42+00:00", "mtime_ts": 1038754782.0, "ctime": "2002-12-01T14:59:42+00:00", "sha256_file": "52b6d9c279b6623ba0787fed9f20bb987665860fb83bb0125c20404ab3cde3a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 15:59:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3483", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 15:59:42", "EXIF DateTimeDigitized": "2002:12:01 15:59:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[111, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2d415444247e19839c599fdb271a24d353d9d8b76b173cc2d4e9a42bc21fca8", "phash": "cfc04f303e36d919", "dhash": "e2d2f02c3e525f79", "phash_int": -3.4766918437092163e+18, "collected_at": "2026-05-22T04:29:49.377915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0011.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0011.jpg", "file_name": "IMG_0011.jpg", "file_stem": "IMG_0011", "file_ext": ".jpg", "file_size": 1361840.0, "mtime": "2002-12-01T15:00:32+00:00", "mtime_ts": 1038754832.0, "ctime": "2002-12-01T15:00:32+00:00", "sha256_file": "1d364e82f82f0db8c2c96273a3b9590b4e40c3e6ddd0a258b96a97d9cfbbf05e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:00:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3804", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:00:32", "EXIF DateTimeDigitized": "2002:12:01 16:00:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 287, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "102", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b693b4288bdcc3fe8abbbeb430b56c358dfa356cbb6e8dfc96959601c5f84164", "phash": "8eb3681fa10f7698", "dhash": "e0e0e0e2606060e0", "phash_int": -8.164067214437157e+18, "collected_at": "2026-05-22T04:29:49.457915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0010.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0010.jpg", "file_name": "IMG_0010.jpg", "file_stem": "IMG_0010", "file_ext": ".jpg", "file_size": 1400267.0, "mtime": "2002-12-01T15:00:08+00:00", "mtime_ts": 1038754808.0, "ctime": "2002-12-01T15:00:08+00:00", "sha256_file": "0473afb94efad91bfd458b2d7e084966cd80224656d03ec464768619bbd673da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:00:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3585", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:00:07", "EXIF DateTimeDigitized": "2002:12:01 16:00:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 236, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "94", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3126c3321dc27fb18a0e0c0cb2d9949684b864618cd14ab31a87749b99d2e1e0", "phash": "c5aa781554d52bd6", "dhash": "e0e1c1f0e0c2e0e0", "phash_int": -4.203415269184034e+18, "collected_at": "2026-05-22T04:29:49.474918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0013.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0013.jpg", "file_name": "IMG_0013.jpg", "file_stem": "IMG_0013", "file_ext": ".jpg", "file_size": 1562157.0, "mtime": "2002-12-01T15:01:06+00:00", "mtime_ts": 1038754866.0, "ctime": "2002-12-01T15:01:06+00:00", "sha256_file": "1265e76592f2f9a2d64bca0f7a9588402b4e07e9fa936e0bb4cc0a33d6f902ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4648", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:06", "EXIF DateTimeDigitized": "2002:12:01 16:01:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1cd959deaf0863ab137f97a24b579dce821a4380e9fe85959cc5eaa89cff322a", "phash": "eddd7aa303194932", "dhash": "202222c2c6c6072b", "phash_int": -1.3067534763173292e+18, "collected_at": "2026-05-22T04:29:49.595147+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0012.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0012.jpg", "file_name": "IMG_0012.jpg", "file_stem": "IMG_0012", "file_ext": ".jpg", "file_size": 1362449.0, "mtime": "2002-12-01T15:00:52+00:00", "mtime_ts": 1038754852.0, "ctime": "2002-12-01T15:00:52+00:00", "sha256_file": "c9b16d43bc04762fde146658506b97db6d90da201b73e02a751533359375fb3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:00:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2991", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:00:51", "EXIF DateTimeDigitized": "2002:12:01 16:00:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1a071f8bc8c24f7eb0b16269ab3f195b40987dc97cd5f818c1e304e3ecb3e63", "phash": "d44f3332484b6b6b", "dhash": "e4f4e4f4f4f4b4b4", "phash_int": -3.1482413234544036e+18, "collected_at": "2026-05-22T04:29:49.605149+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0015.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0015.jpg", "file_name": "IMG_0015.jpg", "file_stem": "IMG_0015", "file_ext": ".jpg", "file_size": 1405650.0, "mtime": "2002-12-01T15:01:24+00:00", "mtime_ts": 1038754884.0, "ctime": "2002-12-01T15:01:24+00:00", "sha256_file": "f9fc60bda706246e4a9add4e13deeb821e4eac1dd985d96bcc17ae3a1db7dc2e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4348", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:23", "EXIF DateTimeDigitized": "2002:12:01 16:01:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[59, 205, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79521f7097de92f8b37048e86ad10eafefb39358f5447e1fe765d5fa6f0d5b69", "phash": "d2d6461b2d1fc22d", "dhash": "ecacac725ad8d880", "phash_int": -3.2543365981934874e+18, "collected_at": "2026-05-22T04:29:49.707153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0014.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0014.jpg", "file_name": "IMG_0014.jpg", "file_stem": "IMG_0014", "file_ext": ".jpg", "file_size": 1396080.0, "mtime": "2002-12-01T15:01:14+00:00", "mtime_ts": 1038754874.0, "ctime": "2002-12-01T15:01:14+00:00", "sha256_file": "14a4a2e9c5c794431dad173e675f79732f68fc0ef8e9ade7a5d6839282ff3b70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4406", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:14", "EXIF DateTimeDigitized": "2002:12:01 16:01:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "152", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec9d7b2537e8fe2b6f8d92659ee0903149cdf6702fcd514846f30e3555b9f9ee", "phash": "94fd11076e16c97a", "dhash": "febab22565e0fccc", "phash_int": -7.710988263378991e+18, "collected_at": "2026-05-22T04:29:49.716160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0016.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0016.jpg", "file_name": "IMG_0016.jpg", "file_stem": "IMG_0016", "file_ext": ".jpg", "file_size": 1580601.0, "mtime": "2002-12-01T15:01:32+00:00", "mtime_ts": 1038754892.0, "ctime": "2002-12-01T15:01:32+00:00", "sha256_file": "6328bb160beee2dc7da6dcc50c7e18a6eff8e5ccf4c49aa69735759ad3af04e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4080", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:32", "EXIF DateTimeDigitized": "2002:12:01 16:01:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9418386f757f20a464b1536f0b5987f9a72364395b041a8e93fa4062f676dd18", "phash": "f88583f74d386c1a", "dhash": "f0e83333331399b9", "phash_int": -5.388794822252022e+17, "collected_at": "2026-05-22T04:29:49.869466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0017.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0017.jpg", "file_name": "IMG_0017.jpg", "file_stem": "IMG_0017", "file_ext": ".jpg", "file_size": 1697524.0, "mtime": "2002-12-01T15:01:42+00:00", "mtime_ts": 1038754902.0, "ctime": "2002-12-01T15:01:42+00:00", "sha256_file": "bf3478f6f10ee4ca550900c00d5e4553610df0e7e882721967f1b2685b2ea448", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5181", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:41", "EXIF DateTimeDigitized": "2002:12:01 16:01:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8f95af4e781a52627bdff8e2221086ceb6121ec488db0619f3debcce0664424", "phash": "ff9d43a43934838c", "dhash": "0646521632060649", "phash_int": -2.7791650080914548e+16, "collected_at": "2026-05-22T04:29:49.875466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0018.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0018.jpg", "file_name": "IMG_0018.jpg", "file_stem": "IMG_0018", "file_ext": ".jpg", "file_size": 1791836.0, "mtime": "2002-12-01T15:01:58+00:00", "mtime_ts": 1038754918.0, "ctime": "2002-12-01T15:01:58+00:00", "sha256_file": "69cfc02a018b18a03fe7055ecf3855400bbad15c42d73787d8a64c3a8d18c6a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:01:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4673", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:01:58", "EXIF DateTimeDigitized": "2002:12:01 16:01:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1258feec7b49fd558783efbed1142dd28843dbbce1da2d7e6c31de1bd6fcad3f", "phash": "e4d84f85b07b90bc", "dhash": "80c0888886864486", "phash_int": -1.9567266024823478e+18, "collected_at": "2026-05-22T04:29:49.976468+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0019.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0019.jpg", "file_name": "IMG_0019.jpg", "file_stem": "IMG_0019", "file_ext": ".jpg", "file_size": 1698418.0, "mtime": "2002-12-01T15:02:26+00:00", "mtime_ts": 1038754946.0, "ctime": "2002-12-01T15:02:26+00:00", "sha256_file": "a0d6d7648f1c40630b5956a91ac95a8a349c98c851123aea4198bfa2f9d7334f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:02:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4343", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:02:26", "EXIF DateTimeDigitized": "2002:12:01 16:02:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 363, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "42", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81b2c1ab4d7d669321b2599dc39b46b985cc4951f400b025826b7919ea3e6265", "phash": "c7e17962635a6962", "dhash": "c0d0f0ecccecf0f0", "phash_int": -4.043817526921369e+18, "collected_at": "2026-05-22T04:29:49.989472+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0020.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0020.jpg", "file_name": "IMG_0020.jpg", "file_stem": "IMG_0020", "file_ext": ".jpg", "file_size": 1611597.0, "mtime": "2002-12-01T15:02:40+00:00", "mtime_ts": 1038754960.0, "ctime": "2002-12-01T15:02:40+00:00", "sha256_file": "20af32b5956fcd68a260579f4d31af5e6b2712baccb436b768bc89cdf2413bf5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:02:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4143", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:02:40", "EXIF DateTimeDigitized": "2002:12:01 16:02:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "19", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a7db7190bcadb2021221446e71d23eac6f342bee2ea3f62fd6c14a8f9603cdc", "phash": "bb96148379e33b06", "dhash": "787c3b1a5ada4a1a", "phash_int": -4.929730187192223e+18, "collected_at": "2026-05-22T04:29:50.073471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0021.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0021.jpg", "file_name": "IMG_0021.jpg", "file_stem": "IMG_0021", "file_ext": ".jpg", "file_size": 1647624.0, "mtime": "2002-12-01T15:02:52+00:00", "mtime_ts": 1038754972.0, "ctime": "2002-12-01T15:02:52+00:00", "sha256_file": "89286416e894b8818ac9230df69eb4fd3d81695489349d69749290e0d7a83fc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:02:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4910", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:02:51", "EXIF DateTimeDigitized": "2002:12:01 16:02:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93c3ff61d7f8a47dcfd9966d4df0fd62e962af16f6e7632b95b9e03c942dc398", "phash": "fbbe1c6102d3036e", "dhash": "09292d090b1b1820", "phash_int": -3.067765216298262e+17, "collected_at": "2026-05-22T04:29:50.105474+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0022.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0022.jpg", "file_name": "IMG_0022.jpg", "file_stem": "IMG_0022", "file_ext": ".jpg", "file_size": 1263005.0, "mtime": "2002-12-01T15:03:04+00:00", "mtime_ts": 1038754984.0, "ctime": "2002-12-01T15:03:04+00:00", "sha256_file": "6c1fa66253ad2af4bdf9cd3611206d95d5a8667eadaa7994f423a8e2206eb40f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:03:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3684", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:03:03", "EXIF DateTimeDigitized": "2002:12:01 16:03:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[59, 206, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "145", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "956fee9b255bf5c48cdd82ce124fa2c8b2e2f0b8ba0bf282a614ec12b0743777", "phash": "c6e0a06ef0f462f6", "dhash": "82e0e0b0e1e160f8", "phash_int": -4.116113661067239e+18, "collected_at": "2026-05-22T04:29:50.217594+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0023.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0023.jpg", "file_name": "IMG_0023.jpg", "file_stem": "IMG_0023", "file_ext": ".jpg", "file_size": 2061578.0, "mtime": "2002-12-01T15:03:22+00:00", "mtime_ts": 1038755002.0, "ctime": "2002-12-01T15:03:22+00:00", "sha256_file": "4f5b2a8e3e86a65520fbd4b92e1f0d402345d7dea31f26c1f31d361de1e7ba9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:03:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4652", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:03:22", "EXIF DateTimeDigitized": "2002:12:01 16:03:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8cfcb027e0d7d727c21e31206ee57f9a8394f9a6eb8032959dbb0c8f1a11c537", "phash": "a0c05f3f7cf0503e", "dhash": "b6e7b797b7bffffe", "phash_int": -6.863381105828934e+18, "collected_at": "2026-05-22T04:29:50.234600+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0024.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0024.jpg", "file_name": "IMG_0024.jpg", "file_stem": "IMG_0024", "file_ext": ".jpg", "file_size": 1516233.0, "mtime": "2002-12-01T15:03:28+00:00", "mtime_ts": 1038755008.0, "ctime": "2002-12-01T15:03:28+00:00", "sha256_file": "cb81fce509ee755b2c2371946fedc68c7ed78759325447b32be140f4d2c2c21e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:03:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3183", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:03:28", "EXIF DateTimeDigitized": "2002:12:01 16:03:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "198", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0a1c77e212f5c906c544a582cc05473e61c69f0339c56a2e81f8f8f4cec71b1", "phash": "c5b8923549fc9593", "dhash": "f0f8fc87c296e4c0", "phash_int": -4.1994458949507753e+18, "collected_at": "2026-05-22T04:29:50.304599+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0025.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0025.jpg", "file_name": "IMG_0025.jpg", "file_stem": "IMG_0025", "file_ext": ".jpg", "file_size": 1951243.0, "mtime": "2002-12-01T15:51:58+00:00", "mtime_ts": 1038757918.0, "ctime": "2002-12-01T15:51:58+00:00", "sha256_file": "17cd8c4e3c44f74accdae21ff09d40b3b6ea388a61cdcecdecf9bb4032652bf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:51:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:51:58", "EXIF DateTimeDigitized": "2002:12:01 16:51:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7294f9f2635cbd77685573023b10286f5be8292f6a8640d7241acce1f051a807", "phash": "d5256085d29ada7b", "dhash": "cec67878e0f0f0b8", "phash_int": -3.0879558416123264e+18, "collected_at": "2026-05-22T04:29:50.380912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0026.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0026.jpg", "file_name": "IMG_0026.jpg", "file_stem": "IMG_0026", "file_ext": ".jpg", "file_size": 2091961.0, "mtime": "2002-12-01T15:52:02+00:00", "mtime_ts": 1038757922.0, "ctime": "2002-12-01T15:52:02+00:00", "sha256_file": "9b1a5fe65a4cbc10471bc2740043e0406c04a254e835345c838e76287f755bcc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:52:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6423", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:52:02", "EXIF DateTimeDigitized": "2002:12:01 16:52:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 293, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "80d5fcef2b5c59a7e30882b2c542700bfe713120179282bf3dd86781278a0969", "phash": "c12d2e969b90636f", "dhash": "c6e2c2b0f0e0f0f0", "phash_int": -4.526910826047577e+18, "collected_at": "2026-05-22T04:29:50.391743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0027.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0027.jpg", "file_name": "IMG_0027.jpg", "file_stem": "IMG_0027", "file_ext": ".jpg", "file_size": 1547025.0, "mtime": "2002-12-01T15:57:24+00:00", "mtime_ts": 1038758244.0, "ctime": "2002-12-01T15:57:24+00:00", "sha256_file": "d41bd00070473843e28867dda96e015552a90d6b94a8dc4b3985d8bcdc3478ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5468", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:24", "EXIF DateTimeDigitized": "2002:12:01 16:57:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7f3fd5e7ef31109ce58d259ff812da3b5a7a9d54b6519b731795c9174ea39d2", "phash": "8b663c13719d6e38", "dhash": "c1c5e1d0d8f8f0f2", "phash_int": -8.401962000604893e+18, "collected_at": "2026-05-22T04:29:50.498878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0028.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0028.jpg", "file_name": "IMG_0028.jpg", "file_stem": "IMG_0028", "file_ext": ".jpg", "file_size": 1761593.0, "mtime": "2002-12-01T15:57:30+00:00", "mtime_ts": 1038758250.0, "ctime": "2002-12-01T15:57:30+00:00", "sha256_file": "a6b63453cc7eec76103f0568688e0fe8cb0436a53dc14a5ba67e84b082aca5f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5552", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:29", "EXIF DateTimeDigitized": "2002:12:01 16:57:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1913f11a99eb5786314d6f7e6162e7a753f4f94a3c6eaf43bd4bbc7a5a9d6e20", "phash": "8b663d12719c3cbc", "dhash": "e1e1e5c1d0e9f8f2", "phash_int": -8.401960905388312e+18, "collected_at": "2026-05-22T04:29:50.517882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0029.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0029.jpg", "file_name": "IMG_0029.jpg", "file_stem": "IMG_0029", "file_ext": ".jpg", "file_size": 1735778.0, "mtime": "2002-12-01T15:57:36+00:00", "mtime_ts": 1038758256.0, "ctime": "2002-12-01T15:57:36+00:00", "sha256_file": "176703c8073c6eb4f6bcd0d3ed5158462d8144653d451d42c9fa75015d4d6bc4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5978", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:35", "EXIF DateTimeDigitized": "2002:12:01 16:57:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "81", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a7f2ed0a2ab222fdaddfcf04e3f7f8d25e6d8c35360ba15116642da0df29efaa", "phash": "e648942d59d26b97", "dhash": "8103c10103066cec", "phash_int": -1.8530683241615575e+18, "collected_at": "2026-05-22T04:29:50.638987+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0030.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0030.jpg", "file_name": "IMG_0030.jpg", "file_stem": "IMG_0030", "file_ext": ".jpg", "file_size": 1641550.0, "mtime": "2002-12-01T15:57:40+00:00", "mtime_ts": 1038758260.0, "ctime": "2002-12-01T15:57:40+00:00", "sha256_file": "ce7298184dde3cfc14ba70122802dd628646c3e95accc36558e879a8172569ba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5744", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:40", "EXIF DateTimeDigitized": "2002:12:01 16:57:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3431f06d346a917278ee9ce792d1731e47cfe6c61c3c161c14e8559a121c39a", "phash": "f0cd1f17258e3332", "dhash": "6a9292979c8cec8d", "phash_int": -1.0951849501063775e+18, "collected_at": "2026-05-22T04:29:50.648985+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0032.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0032.jpg", "file_name": "IMG_0032.jpg", "file_stem": "IMG_0032", "file_ext": ".jpg", "file_size": 1513297.0, "mtime": "2002-12-01T15:57:52+00:00", "mtime_ts": 1038758272.0, "ctime": "2002-12-01T15:57:52+00:00", "sha256_file": "8328606d4ae2851d495d47c827fe1d52a0e215c4abf9aa934913d11e6755bc64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6063", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:52", "EXIF DateTimeDigitized": "2002:12:01 16:57:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c860cb16bcaa710309613ea2b00b1e9641b6383098f9667c6593e8eaa9c1f1d", "phash": "f4921b774c39561a", "dhash": "9ccc8c86464696b6", "phash_int": -8.235655826614953e+17, "collected_at": "2026-05-22T04:29:50.768084+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0031.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0031.jpg", "file_name": "IMG_0031.jpg", "file_stem": "IMG_0031", "file_ext": ".jpg", "file_size": 1716645.0, "mtime": "2002-12-01T15:57:46+00:00", "mtime_ts": 1038758266.0, "ctime": "2002-12-01T15:57:46+00:00", "sha256_file": "6296943e35221f8c5f9f29265c548cf3644bdd82cb368a46227d179dcb9f3a53", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:57:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6003", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:57:46", "EXIF DateTimeDigitized": "2002:12:01 16:57:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d241ea4d1f58a50920ec767702af2ca389e3f30258e8f17bc14015a6e77aeb8", "phash": "ed979633464c33c4", "dhash": "de9ac2828213b3e3", "phash_int": -1.326426418270424e+18, "collected_at": "2026-05-22T04:29:50.771090+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0033.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0033.jpg", "file_name": "IMG_0033.jpg", "file_stem": "IMG_0033", "file_ext": ".jpg", "file_size": 1592110.0, "mtime": "2002-12-01T15:58:04+00:00", "mtime_ts": 1038758284.0, "ctime": "2002-12-01T15:58:04+00:00", "sha256_file": "1c8711037570d247af36d6bbec0cbf2802b40848b73e638590afe50eb9478a0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:58:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6213", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:58:04", "EXIF DateTimeDigitized": "2002:12:01 16:58:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "337b5447ec05d6bdd5ee6a8898c57434070a61f581a096fbcf02938120d5a89f", "phash": "a96e4f328d91a58d", "dhash": "8fb7f7bb9fdfdbe3", "phash_int": -6.237961355319467e+18, "collected_at": "2026-05-22T04:29:50.905690+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\IMG_0034.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\IMG_0034.jpg", "file_name": "IMG_0034.jpg", "file_stem": "IMG_0034", "file_ext": ".jpg", "file_size": 1671999.0, "mtime": "2002-12-01T15:58:14+00:00", "mtime_ts": 1038758294.0, "ctime": "2002-12-01T15:58:14+00:00", "sha256_file": "3ce3fc5fd7457ac1acacbb696892566a7b218447fc23e4fa9e84333e374b49dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:01 16:58:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6890", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:01 16:58:14", "EXIF DateTimeDigitized": "2002:12:01 16:58:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4f25939f9dfa529ebb6ee18493127328317291bd7c7e0770958a6f156fb581bb", "phash": "aa6966209a2bdaf9", "dhash": "87c75b79ddcfef65", "phash_int": -6.167285924495631e+18, "collected_at": "2026-05-22T04:29:50.926691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 008.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 008.jpg", "file_name": "Snímek 008.jpg", "file_stem": "Snímek 008", "file_ext": ".jpg", "file_size": 2919613.0, "mtime": "2003-01-04T10:06:22+00:00", "mtime_ts": 1041674782.0, "ctime": "2003-01-04T10:06:22+00:00", "sha256_file": "3b77d10716910e4af73ace94fd9eda214b95ad3d0de3e8455d68283274ec67dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:24 19:52:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8722", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:11:24 19:52:17", "EXIF DateTimeDigitized": "2002:11:24 19:52:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0bba0aa273f7f485cb5c6ab7e6bf0fdb5e7387506004bba478a8f6056fe3c98", "phash": "8d2d422e956bb347", "dhash": "6ab2b2b2b6f6c5fc", "phash_int": -8.273884172566941e+18, "collected_at": "2026-05-22T04:29:51.056860+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 007.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 007.jpg", "file_name": "Snímek 007.jpg", "file_stem": "Snímek 007", "file_ext": ".jpg", "file_size": 2595598.0, "mtime": "2003-01-04T10:06:20+00:00", "mtime_ts": 1041674780.0, "ctime": "2003-01-04T10:06:20+00:00", "sha256_file": "98d45902a782326639a51059950468a8c173f62a1a5b998c76ea3ddf05c5cdd5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:24 19:52:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7496", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:11:24 19:52:07", "EXIF DateTimeDigitized": "2002:11:24 19:52:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "1", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b22fc221061af6eb24a04ab0d853f2b13c7ef11beb9b134bb5072e01a07c7224", "phash": "8dad422fd16b944d", "dhash": "66a6b6b6b6b6e7e4", "phash_int": -8.237855370246385e+18, "collected_at": "2026-05-22T04:29:51.072860+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 009.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 009.jpg", "file_name": "Snímek 009.jpg", "file_stem": "Snímek 009", "file_ext": ".jpg", "file_size": 1732474.0, "mtime": "2002-12-01T11:30:10+00:00", "mtime_ts": 1038742210.0, "ctime": "2002-12-01T11:30:10+00:00", "sha256_file": "297673f201d271d690f1676a7ff0a361f98d176a50b99f6c4a3e28f93f95fb4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:24 19:52:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:24 19:52:22", "EXIF DateTimeDigitized": "2002:11:24 19:52:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2820cff91a6724302eef8be4d641556b7db5fd2fbe975868cb7ff7a43cec170e", "phash": "bda222cbc3c9a3c3", "dhash": "2636163232361636", "phash_int": -4.782221595755568e+18, "collected_at": "2026-05-22T04:29:51.170983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 010.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 010.jpg", "file_name": "Snímek 010.jpg", "file_stem": "Snímek 010", "file_ext": ".jpg", "file_size": 1919466.0, "mtime": "2002-12-01T11:30:14+00:00", "mtime_ts": 1038742214.0, "ctime": "2002-12-01T11:30:14+00:00", "sha256_file": "0f213abd62192bab9148d444aa8c8361d6f25c41c1153374294af5c738666646", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:24 19:52:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5790", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:24 19:52:28", "EXIF DateTimeDigitized": "2002:11:24 19:52:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "488548bbcda262cf10b3932635c8a6975203574aaba2312b7817cac1399d578d", "phash": "8634dc47a99b15ab", "dhash": "e4a4eceec7e06a73", "phash_int": -8.776147573491953e+18, "collected_at": "2026-05-22T04:29:51.183979+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 033.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 033.jpg", "file_name": "Snímek 033.jpg", "file_stem": "Snímek 033", "file_ext": ".jpg", "file_size": 2271938.0, "mtime": "2002-12-01T11:31:34+00:00", "mtime_ts": 1038742294.0, "ctime": "2002-12-01T11:31:34+00:00", "sha256_file": "ed2bf84eceebbc8353bb60ddebba497fe9962c09dec5d7392ef0964b30e025bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 20:19:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6387", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 20:19:05", "EXIF DateTimeDigitized": "2002:11:29 20:19:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b4b054dbab65ad057684f99e293103673bcc102b2428dedd29fd682f6dc8ecf", "phash": "c34f3a3431724bb3", "dhash": "ecf0c0c8d8f8d999", "phash_int": -4.3732127173111777e+18, "collected_at": "2026-05-22T04:29:51.297985+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 034.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 034.jpg", "file_name": "Snímek 034.jpg", "file_stem": "Snímek 034", "file_ext": ".jpg", "file_size": 2242077.0, "mtime": "2002-12-01T11:31:38+00:00", "mtime_ts": 1038742298.0, "ctime": "2002-12-01T11:31:38+00:00", "sha256_file": "31d3ee0626b3c86ac59630791decb1013e1528b4d2e2c8645ab088da638d6235", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 20:45:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6994", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 20:45:53", "EXIF DateTimeDigitized": "2002:11:29 20:45:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "623f0d9859ed85074785143fc4f313f8ddacaab87e28207cf2d0ba254be45c15", "phash": "da0d659b66373924", "dhash": "f3f1f1692999d8c4", "phash_int": -2.7344176806347914e+18, "collected_at": "2026-05-22T04:29:51.311072+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 036.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 036.jpg", "file_name": "Snímek 036.jpg", "file_stem": "Snímek 036", "file_ext": ".jpg", "file_size": 1950111.0, "mtime": "2002-12-01T11:31:46+00:00", "mtime_ts": 1038742306.0, "ctime": "2002-12-01T11:31:46+00:00", "sha256_file": "2dba96c027d4f729a40e44a8ba844c53a6de635dc588e9c05a7132bff68fe549", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 20:46:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5957", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 20:46:07", "EXIF DateTimeDigitized": "2002:11:29 20:46:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24a2c0bc016ca44558ca9b1e0e360cf609cfe3f4ec18f92c67de3d0c7966e7bf", "phash": "99e55b07083ab736", "dhash": "a2d2aa9fb67a39b1", "phash_int": -7.357374330478873e+18, "collected_at": "2026-05-22T04:29:51.422169+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 035.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 035.jpg", "file_name": "Snímek 035.jpg", "file_stem": "Snímek 035", "file_ext": ".jpg", "file_size": 2019014.0, "mtime": "2002-12-01T11:31:44+00:00", "mtime_ts": 1038742304.0, "ctime": "2002-12-01T11:31:44+00:00", "sha256_file": "1b5e7ab5855200c295cf14a814986873131581c8258998b9efa0bd9960c65aa5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 20:46:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6499", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 20:46:01", "EXIF DateTimeDigitized": "2002:11:29 20:46:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65487", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a132e2c958e513e6d4f7dec2eb1d2060315c0668bf5e2a019931e0d3f74ee00", "phash": "d2ad1c59e6b70962", "dhash": "7466df4c8dd01c24", "phash_int": -3.265922982325319e+18, "collected_at": "2026-05-22T04:29:51.451172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 037.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 037.jpg", "file_name": "Snímek 037.jpg", "file_stem": "Snímek 037", "file_ext": ".jpg", "file_size": 1804478.0, "mtime": "2002-12-01T11:31:50+00:00", "mtime_ts": 1038742310.0, "ctime": "2002-12-01T11:31:50+00:00", "sha256_file": "0c966506338081af4795182ff41cee893f60dee396dc091e5e1143a0373db19b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 20:46:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5897", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 20:46:12", "EXIF DateTimeDigitized": "2002:11:29 20:46:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65441", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5dad146c0dc31d77ce270fd29c7e52816d880f18e3fddc644f1f87121ded17b", "phash": "cf30302f0f6674d9", "dhash": "c8d8ec636363e1e0", "phash_int": -3.5172583302963886e+18, "collected_at": "2026-05-22T04:29:51.500173+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 038.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 038.jpg", "file_name": "Snímek 038.jpg", "file_stem": "Snímek 038", "file_ext": ".jpg", "file_size": 1890331.0, "mtime": "2002-12-01T11:31:54+00:00", "mtime_ts": 1038742314.0, "ctime": "2002-12-01T11:31:54+00:00", "sha256_file": "9a2b9ee30adc6be60f361b571993fddce3e5228047fa14ce02f5d3fc43756847", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 21:11:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5688", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 21:11:49", "EXIF DateTimeDigitized": "2002:11:29 21:11:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "effcb83d85481d8675a5a2830e9749290b8523257527c77280a1c5f167a97099", "phash": "dc9a842026ff87e3", "dhash": "78387939a19282a6", "phash_int": -2.550580965323864e+18, "collected_at": "2026-05-22T04:29:51.571176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 039.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 039.jpg", "file_name": "Snímek 039.jpg", "file_stem": "Snímek 039", "file_ext": ".jpg", "file_size": 2954624.0, "mtime": "2003-01-04T10:08:34+00:00", "mtime_ts": 1041674914.0, "ctime": "2003-01-04T10:08:34+00:00", "sha256_file": "3ff15cb56109c8495c5da9ec86305fc7cf7f0f09fd65f4d512f81b8b419718a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 21:12:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6680", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:11:29 21:12:02", "EXIF DateTimeDigitized": "2002:11:29 21:12:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63a1a3712f2893159995b60f1c5ab3db6047988506b6b6c971687ad3e9d61e0e", "phash": "eae30c68999cdd23", "dhash": "534d4f1b490f8ffb", "phash_int": -1.5213586057277693e+18, "collected_at": "2026-05-22T04:29:51.625178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 040.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 040.jpg", "file_name": "Snímek 040.jpg", "file_stem": "Snímek 040", "file_ext": ".jpg", "file_size": 2140251.0, "mtime": "2002-12-01T11:32:02+00:00", "mtime_ts": 1038742322.0, "ctime": "2002-12-01T11:32:02+00:00", "sha256_file": "8fe9822abca62aca5a260fa2df52419924106fbe7ca8c4c54d0a0c446fdedfbb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 21:13:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6730", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 21:13:00", "EXIF DateTimeDigitized": "2002:11:29 21:13:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "24631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65480", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "24631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be36a6e4d6f569e1799fed7be62c18e037adbc06a783f344b13b35e98a57e814", "phash": "9c998e16b5b1c95a", "dhash": "7c71329abcb02c21", "phash_int": -7.162537504167311e+18, "collected_at": "2026-05-22T04:29:51.683178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 041.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 041.jpg", "file_name": "Snímek 041.jpg", "file_stem": "Snímek 041", "file_ext": ".jpg", "file_size": 1988883.0, "mtime": "2002-12-01T11:32:06+00:00", "mtime_ts": 1038742326.0, "ctime": "2002-12-01T11:32:06+00:00", "sha256_file": "03b3288c962dcf9d52375aa790655c25e735bc4ccf86a1d8af27e516004d7048", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 22:19:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5638", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 22:19:03", "EXIF DateTimeDigitized": "2002:11:29 22:19:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65467", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02c9338efdf5b59e906b35e661eb1b0a4a10c853a415e7a3007ccc28266af338", "phash": "815a2ee7915caa6b", "dhash": "90a2dcdccace66f7", "phash_int": -9.125930122801796e+18, "collected_at": "2026-05-22T04:29:51.742189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 042.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 042.jpg", "file_name": "Snímek 042.jpg", "file_stem": "Snímek 042", "file_ext": ".jpg", "file_size": 1955109.0, "mtime": "2002-12-01T11:32:10+00:00", "mtime_ts": 1038742330.0, "ctime": "2002-12-01T11:32:10+00:00", "sha256_file": "237d16be5907dcb8729954e6c492af79f5068fa2582cc8429684d328b1ba9904", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 22:19:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4492", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 22:19:19", "EXIF DateTimeDigitized": "2002:11:29 22:19:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a4963cf8684be6d3499e20d40039ecc577b1a8c5b3c595aacc1e73711ba8744", "phash": "f11e0721fcdb4827", "dhash": "f8f830309696c686", "phash_int": -1.0724118187100549e+18, "collected_at": "2026-05-22T04:29:51.814186+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-01\\Snímek 043.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-01\\Snímek 043.jpg", "file_name": "Snímek 043.jpg", "file_stem": "Snímek 043", "file_ext": ".jpg", "file_size": 2144168.0, "mtime": "2002-12-01T11:32:14+00:00", "mtime_ts": 1038742334.0, "ctime": "2002-12-01T11:32:14+00:00", "sha256_file": "ab59da1d50dbbd42462ae053767bd4d4e552e57da8e32096ac36356f2cd9786f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:29 22:19:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6366", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:29 22:19:30", "EXIF DateTimeDigitized": "2002:11:29 22:19:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65460", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2daf3b5ee5c8d7161ebf809a0a7ee75e3878978c9d74e19f6a63e29cd57125d3", "phash": "b7406eed40d22ba7", "dhash": "c3c688985e1a5c4c", "phash_int": -5.242068000985437e+18, "collected_at": "2026-05-22T04:29:51.873198+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 1545953.0, "mtime": "2002-12-06T14:01:48+00:00", "mtime_ts": 1039183308.0, "ctime": "2002-12-06T14:01:48+00:00", "sha256_file": "3d149c547636ba6c94f02a3d76d36c02768c56e670c3d5f1b352f27cd9208a1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 15:01:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4335", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 15:01:49", "EXIF DateTimeDigitized": "2002:12:06 15:01:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "994069d04784a8053eba1712bd7f938dd38281f6d590b60da51b915db5a7573c", "phash": "99e612956b6d14da", "dhash": "12193753733c3839", "phash_int": -7.357172508301389e+18, "collected_at": "2026-05-22T04:29:51.925193+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 1729268.0, "mtime": "2002-12-06T19:19:58+00:00", "mtime_ts": 1039202398.0, "ctime": "2002-12-06T19:19:58+00:00", "sha256_file": "a3956af357daba8249242326f9050438a717bf36d9cd94d449b42dd3388ca05e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:19:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6110", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:19:59", "EXIF DateTimeDigitized": "2002:12:06 20:19:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1e0230271fc40782ae29e541979c3c94f78e9830bf5029fa01ca0be90b825df", "phash": "91609f36e150fd59", "dhash": "8e4392949efcf870", "phash_int": -7.971196282388547e+18, "collected_at": "2026-05-22T04:29:51.945187+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 1941949.0, "mtime": "2002-12-06T19:20:04+00:00", "mtime_ts": 1039202404.0, "ctime": "2002-12-06T19:20:04+00:00", "sha256_file": "93979cbb72b4923ecea4d0770cf0c477f11ac593d1ae31cda14b2568455e9358", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:06", "EXIF DateTimeDigitized": "2002:12:06 20:20:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a74dff25a4bc9debd6782f519d3e54c7d80f23f143f4b5c2f78535b7abeb2c6", "phash": "d875eb18e19a142f", "dhash": "90111c9891b171d1", "phash_int": -2.849112697145257e+18, "collected_at": "2026-05-22T04:29:52.029192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 2022688.0, "mtime": "2002-12-06T19:20:12+00:00", "mtime_ts": 1039202412.0, "ctime": "2002-12-06T19:20:12+00:00", "sha256_file": "5c2353fe8e2050eb414f2d638a5bee364b94ac7b02d109bd1788993c70416d8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6849", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:13", "EXIF DateTimeDigitized": "2002:12:06 20:20:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12b37fe2352530cf7170d2b0fcf48e02deb7208eb37905a531db78d9126df814", "phash": "c13e5fe3411c8d72", "dhash": "40413494dbd694c0", "phash_int": -4.522071546178794e+18, "collected_at": "2026-05-22T04:29:52.053193+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 1940556.0, "mtime": "2002-12-06T19:20:18+00:00", "mtime_ts": 1039202418.0, "ctime": "2002-12-06T19:20:18+00:00", "sha256_file": "8e022e25dd78925a1ece4ed4e6335f77bb8a98b9c8a9d0e9ed5daebe32b56334", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6503", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:19", "EXIF DateTimeDigitized": "2002:12:06 20:20:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc692d0c0e21670778b75fe602369dd0b9b984ce2a4ab4a9d518fc3e6c42c24b", "phash": "9165dea4619e4a76", "dhash": "c6cea9d3dbb17478", "phash_int": -7.969719167968458e+18, "collected_at": "2026-05-22T04:29:52.122531+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 2016337.0, "mtime": "2002-12-06T19:20:24+00:00", "mtime_ts": 1039202424.0, "ctime": "2002-12-06T19:20:24+00:00", "sha256_file": "fe458fa96cae6ce734fc4d7c0e98b3db39f8e395197b982983903d69e9226280", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5862", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:25", "EXIF DateTimeDigitized": "2002:12:06 20:20:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d155bae13d2a50c5b2916eb45f7d23d6957900080cdfedc7e5def5187db929f", "phash": "952f619bc87408df", "dhash": "cecef66678b85c90", "phash_int": -7.696825916442016e+18, "collected_at": "2026-05-22T04:29:52.140574+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 1920707.0, "mtime": "2002-12-06T19:20:30+00:00", "mtime_ts": 1039202430.0, "ctime": "2002-12-06T19:20:30+00:00", "sha256_file": "0179fd94a65701ca5fb646411cf3d6e11ce9640cf078e017ed600631fcb3ebb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5566", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:31", "EXIF DateTimeDigitized": "2002:12:06 20:20:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "301f84ccafdc957df4718ad4c18dbca069550f72258004be63bd09524c05d290", "phash": "d72174328d702fe6", "dhash": "9c9c6cf0e868b830", "phash_int": -2.944944920853467e+18, "collected_at": "2026-05-22T04:29:52.222530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 2013069.0, "mtime": "2002-12-06T19:20:38+00:00", "mtime_ts": 1039202438.0, "ctime": "2002-12-06T19:20:38+00:00", "sha256_file": "2f231d8e7a186ebaf5b6d330c00ac88754cf30dbc7c98ccfd01bc9b4c6434c87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:20:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:20:39", "EXIF DateTimeDigitized": "2002:12:06 20:20:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2fe7dabe0fbed3169c0928973120389b9fc8fee1b151c3664f288b1ed4dc8b4", "phash": "8c73cf30a55863cb", "dhash": "824641b4a3f5e1e3", "phash_int": -8.326083478238502e+18, "collected_at": "2026-05-22T04:29:52.243531+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 1466632.0, "mtime": "2002-12-06T19:21:44+00:00", "mtime_ts": 1039202504.0, "ctime": "2002-12-06T19:21:44+00:00", "sha256_file": "7330dd72414b00eea7da6873692ce806092b622f444ed0bc396f60ebda7515cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:21:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4541", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:21:46", "EXIF DateTimeDigitized": "2002:12:06 20:21:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "519aee19f42aa767db8bae5f1b56055003eeb1c6a066830bac8c67b00b02841f", "phash": "90638d71d2b9075f", "dhash": "e84dcc98989aba72", "phash_int": -8.042428989547411e+18, "collected_at": "2026-05-22T04:29:52.333329+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 1533152.0, "mtime": "2002-12-06T19:22:04+00:00", "mtime_ts": 1039202524.0, "ctime": "2002-12-06T19:22:04+00:00", "sha256_file": "4e52242f175580c43e7ba085c5fd326086c2ddce49e60038271f3705214ee208", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:22:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4797", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:22:06", "EXIF DateTimeDigitized": "2002:12:06 20:22:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ec1ef3a4ec352b733f5fd5f2a4c8e5d05ba8fadefe36de9a578ad1a633f563b", "phash": "cc18f133c61e8d79", "dhash": "9292b060e4410306", "phash_int": -3.7399742858616796e+18, "collected_at": "2026-05-22T04:29:52.380432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 2099577.0, "mtime": "2002-12-06T19:47:38+00:00", "mtime_ts": 1039204058.0, "ctime": "2002-12-06T19:47:38+00:00", "sha256_file": "825de6ab89f61d6a2334bc8d1a3a64568d61acd8a5bf157ea608f79a1b2ad135", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:47:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6144", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:47:40", "EXIF DateTimeDigitized": "2002:12:06 20:47:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9de0c7c341447fa12842fc3e8ace119302f81917450f3c913a3bce05937b9b45", "phash": "877976b379091926", "dhash": "d0c4e2d2e8e8ece8", "phash_int": -8.684779893205428e+18, "collected_at": "2026-05-22T04:29:52.435571+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 1831852.0, "mtime": "2002-12-06T19:48:04+00:00", "mtime_ts": 1039204084.0, "ctime": "2002-12-06T19:48:04+00:00", "sha256_file": "e238c2deecb94286fd4c5bd5ce05ea9b029d585ff0ec1019c3e1b8ace86b138d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:48:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5670", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:48:06", "EXIF DateTimeDigitized": "2002:12:06 20:48:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cb7aa13880c8d512a35d886ff192c049c06746f575d843aba3979207b97b9c0", "phash": "c94627d8afc97838", "dhash": "40c480d3b190932b", "phash_int": -3.943420612100655e+18, "collected_at": "2026-05-22T04:29:52.498575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 1639008.0, "mtime": "2002-12-06T19:50:18+00:00", "mtime_ts": 1039204218.0, "ctime": "2002-12-06T19:50:18+00:00", "sha256_file": "0dd7095112c2c11cc660d72bde6f456d3a1caa0143e5cbfccf98e9166243252c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:50:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5743", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:50:19", "EXIF DateTimeDigitized": "2002:12:06 20:50:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abbdf08ab087c19af689a03659fe5a7c89cf41cbf767d109bf64c2d96b9467b8", "phash": "a54cdbac618e3ca5", "dhash": "064ee6c6c6a6ac98", "phash_int": -6.535607425803863e+18, "collected_at": "2026-05-22T04:29:52.545574+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 2082582.0, "mtime": "2002-12-06T19:50:34+00:00", "mtime_ts": 1039204234.0, "ctime": "2002-12-06T19:50:34+00:00", "sha256_file": "548e1c7f1615a204017b1ff7cd7e65c4075269e5f8eb651426b9421b8f06904f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:50:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6581", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:50:35", "EXIF DateTimeDigitized": "2002:12:06 20:50:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ecd3eb2ee13e7044946956815cb4acc55c6ecb0dae4ea3504c19319cfedaeb20", "phash": "903b0f3659e11f6c", "dhash": "df9f97919ccc84f2", "phash_int": -8.053826782511423e+18, "collected_at": "2026-05-22T04:29:52.701577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 2136724.0, "mtime": "2002-12-06T19:50:42+00:00", "mtime_ts": 1039204242.0, "ctime": "2002-12-06T19:50:42+00:00", "sha256_file": "1696298a5a09c7e780ad1d695e0eefcad05c9fbabfa8391a2caa3fcf7453c575", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:50:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6381", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:50:44", "EXIF DateTimeDigitized": "2002:12:06 20:50:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "764f93a63632380314005c67b7831a7fec6113437448e1d1521f8ebcdbf0ee29", "phash": "937a4409b7857d56", "dhash": "b899cd4b39d3eacc", "phash_int": -7.819862994451072e+18, "collected_at": "2026-05-22T04:29:52.708578+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1725695.0, "mtime": "2002-12-06T19:51:02+00:00", "mtime_ts": 1039204262.0, "ctime": "2002-12-06T19:51:02+00:00", "sha256_file": "83b7ea5e82ac676606707153b06a01a201886a1783fe107c87457fffd3ba3144", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:51:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6216", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:51:04", "EXIF DateTimeDigitized": "2002:12:06 20:51:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "954261fd1ad1f39ab650b69815b3acdd0ff2aabd12a14a3211675b3256f3c180", "phash": "a54df3425be60963", "dhash": "c3f2e7efeba7861d", "phash_int": -6.535300017909529e+18, "collected_at": "2026-05-22T04:29:52.867179+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 1796049.0, "mtime": "2002-12-06T19:51:10+00:00", "mtime_ts": 1039204270.0, "ctime": "2002-12-06T19:51:10+00:00", "sha256_file": "13136df0ceda69f33a862a01122214cb72881128e562106c9476433ab1fc6b0a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 20:51:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6381", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 20:51:12", "EXIF DateTimeDigitized": "2002:12:06 20:51:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f47d38213e258c6a8a3aae8d442a9a5a9a6115c351129f3ae987d353bf7d2dab", "phash": "a54bf34176ed1a42", "dhash": "c1f3f3766df7c60f", "phash_int": -6.535862971704468e+18, "collected_at": "2026-05-22T04:29:52.877180+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 1788073.0, "mtime": "2002-12-06T20:35:12+00:00", "mtime_ts": 1039206912.0, "ctime": "2002-12-06T20:35:12+00:00", "sha256_file": "9950dbc4c08ae732b6dc2de790376c36adce126de5f5edd72e98e77811740ce5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 21:35:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6073", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 21:35:14", "EXIF DateTimeDigitized": "2002:12:06 21:35:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bbf95607e67a4f6c303edd892a954f4ef175994f465e895cf3e5aefbaade7a1", "phash": "932e7cac47ca23d8", "dhash": "e6acc949485c9098", "phash_int": -7.841192821824806e+18, "collected_at": "2026-05-22T04:29:53.027185+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 2229227.0, "mtime": "2002-12-06T20:55:26+00:00", "mtime_ts": 1039208126.0, "ctime": "2002-12-06T20:55:26+00:00", "sha256_file": "66dafbc98f9277c09c3640001828090a6f5242c1b7c45e6effa87e87a51f43cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 21:55:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7552", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 21:55:28", "EXIF DateTimeDigitized": "2002:12:06 21:55:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5a88320f312fcf2916ea19c05110dcfe0b42c1edf4f4f4600eef7793c0b2f0f", "phash": "b83e950936057f69", "dhash": "7c3d3dad9513d2ac", "phash_int": -5.170531455381176e+18, "collected_at": "2026-05-22T04:29:53.039182+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 2171585.0, "mtime": "2002-12-06T20:55:40+00:00", "mtime_ts": 1039208140.0, "ctime": "2002-12-06T20:55:40+00:00", "sha256_file": "6a51a649524b3fd976ce5bd47a53d391bc88937e707f22d356b694a872ffd66f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 21:55:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7649", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 21:55:42", "EXIF DateTimeDigitized": "2002:12:06 21:55:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "12c3e7ef51f598172c9e4848d85391cace755cafaa4cabb36e07ee3b07120073", "phash": "9f3fc1038c593659", "dhash": "f276743575e9dab4", "phash_int": -6.971641477162519e+18, "collected_at": "2026-05-22T04:29:53.167190+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1999530.0, "mtime": "2002-12-06T22:08:18+00:00", "mtime_ts": 1039212498.0, "ctime": "2002-12-06T22:08:18+00:00", "sha256_file": "d2b2423cbf5004068237fd83a95c7ece8c9cbb49e42ac21aca55a45c4a6c9d9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6185", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:20", "EXIF DateTimeDigitized": "2002:12:06 23:08:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b2aa08279896cfcf169770ee5f3ee63e639f37c91801ef80ea545a43d61cb74", "phash": "df63c499294724d3", "dhash": "c0404c1119326226", "phash_int": -2.3498184184556984e+18, "collected_at": "2026-05-22T04:29:53.183190+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 1964023.0, "mtime": "2002-12-06T22:08:28+00:00", "mtime_ts": 1039212508.0, "ctime": "2002-12-06T22:08:28+00:00", "sha256_file": "ec284d59c5215d9bdbdbbfef9fe4b3e50befbad7c8f94452d733520407f1abcb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5949", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:29", "EXIF DateTimeDigitized": "2002:12:06 23:08:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b2cac0331ebe9c9c3f02d7d1b58c1327729da581728823860b6acb8e86a1a89", "phash": "dc6b72c611a9136e", "dhash": "404413323238a6b8", "phash_int": -2.563829367831981e+18, "collected_at": "2026-05-22T04:29:53.277195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 1970678.0, "mtime": "2002-12-06T22:08:34+00:00", "mtime_ts": 1039212514.0, "ctime": "2002-12-06T22:08:34+00:00", "sha256_file": "a59a7b8c60b5883094642440746f177759d3580125e41b34db82e4a90bf46ae0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6568", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:35", "EXIF DateTimeDigitized": "2002:12:06 23:08:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3ae7da05134ea15351a8299fa77a38ab466af16711e7c3603011d72b0199d1e", "phash": "bc154a5aa5ad1c4f", "dhash": "b5f97eae0e393327", "phash_int": -4.893923666881078e+18, "collected_at": "2026-05-22T04:29:53.292191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 1998623.0, "mtime": "2002-12-06T22:08:38+00:00", "mtime_ts": 1039212518.0, "ctime": "2002-12-06T22:08:38+00:00", "sha256_file": "2628c295c11837bf6850fd3d399b2542615599f321c03405c6ab3e27c50fda47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6564", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:40", "EXIF DateTimeDigitized": "2002:12:06 23:08:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "178b5d2f3f8f0d92f0102593a5d147bbcd4e5697c428018a4c146c6eba9c58a2", "phash": "b16f342408d1df9b", "dhash": "03030a9bd19c9c99", "phash_int": -5.661248877209985e+18, "collected_at": "2026-05-22T04:29:53.423481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 1941051.0, "mtime": "2002-12-06T22:08:46+00:00", "mtime_ts": 1039212526.0, "ctime": "2002-12-06T22:08:46+00:00", "sha256_file": "cb930b79683be6dd7998490f23ff505df1d8ae7bae9b30744ca1f8241681893f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6932", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:47", "EXIF DateTimeDigitized": "2002:12:06 23:08:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8d98a52411fd13c7bf5443a61fe38b58621dd849f5b86d6bc2062bc862e3185", "phash": "8331963cd229e75d", "dhash": "5c584bd3e9eaf1e4", "phash_int": -8.993241792914004e+18, "collected_at": "2026-05-22T04:29:53.432480+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 1973232.0, "mtime": "2002-12-06T22:08:56+00:00", "mtime_ts": 1039212536.0, "ctime": "2002-12-06T22:08:56+00:00", "sha256_file": "7867f02107274a8ef156b364de6de721d0fac205ea1e5048df808292bd5bf15d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:08:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7158", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:08:58", "EXIF DateTimeDigitized": "2002:12:06 23:08:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3751e4528ecfb57fc940c7987bf6d15a371a65472d65cefeaa70a70e81f612c", "phash": "c83d8607feac750c", "dhash": "dd58923333cae1a5", "phash_int": -4.017907923649006e+18, "collected_at": "2026-05-22T04:29:53.590487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 1873942.0, "mtime": "2002-12-06T22:45:42+00:00", "mtime_ts": 1039214742.0, "ctime": "2002-12-06T22:45:42+00:00", "sha256_file": "082754c4ac94e092847c45bd6f8196e74ac02fb57201a5ac3ca173293b3f35a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:45:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6581", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:45:44", "EXIF DateTimeDigitized": "2002:12:06 23:45:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8988addabcb6e85b878268010214c060927c343aa9c879416c271b818048d934", "phash": "c269942ae51bb96e", "dhash": "1104a8c9c3d9ecac", "phash_int": -4.4378530458435763e+18, "collected_at": "2026-05-22T04:29:53.603487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 1900339.0, "mtime": "2002-12-06T22:45:48+00:00", "mtime_ts": 1039214748.0, "ctime": "2002-12-06T22:45:48+00:00", "sha256_file": "93b2381912cb6c8105a03b4a803d185fd3e528c8fb9e461a3d03020162885484", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:45:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5113", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:45:49", "EXIF DateTimeDigitized": "2002:12:06 23:45:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e581e133e3b36418b3cd271145e124642400eab73821c2e8a7d94777dc5b244", "phash": "d82966b61dd9c1cc", "dhash": "e2e1d251b1b83034", "phash_int": -2.8706503551010893e+18, "collected_at": "2026-05-22T04:29:53.746496+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 3208854.0, "mtime": "2003-01-04T10:28:36+00:00", "mtime_ts": 1041676116.0, "ctime": "2003-01-04T10:28:36+00:00", "sha256_file": "29f5a92c98eccfb8e296067a9067348b263f245e2e5d1bed47c99353ddd3b5c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:45:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9053", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:06 23:45:56", "EXIF DateTimeDigitized": "2002:12:06 23:45:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18c82f51b46ca1f9b23edd66e5326f82f8e14870d0f34984f6ba5b68e9487398", "phash": "86592ee3395e6398", "dhash": "f0e0e1b69accefb7", "phash_int": -8.765923646245019e+18, "collected_at": "2026-05-22T04:29:53.787498+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1654732.0, "mtime": "2002-12-06T22:46:22+00:00", "mtime_ts": 1039214782.0, "ctime": "2002-12-06T22:46:22+00:00", "sha256_file": "86703e06fb5384f4f095bfd11499954b6b3122a084066a2f7b7241c96d82b339", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5249", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:23", "EXIF DateTimeDigitized": "2002:12:06 23:46:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6675c907c92531dea6f044d7f15ecaba8d211f2199b6100dd0b1c1aca8a249e4", "phash": "854832679b6d7267", "dhash": "f0f1f0f34bceb6fc", "phash_int": -8.842762447771307e+18, "collected_at": "2026-05-22T04:29:53.971074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1954033.0, "mtime": "2002-12-06T22:46:10+00:00", "mtime_ts": 1039214770.0, "ctime": "2002-12-06T22:46:10+00:00", "sha256_file": "5ab15daf04227e5e3a8b1c4bdff95acb4f28e0a3cea8c13d07452f1f379fd023", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6511", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:12", "EXIF DateTimeDigitized": "2002:12:06 23:46:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b86fc497eb9d243ba5bc3b66532ec737c479bbebe1ee1d2c3952d3a1e7e79ef7", "phash": "966a3cb748ed1e60", "dhash": "3c5c22b1d86c76b0", "phash_int": -7.60820186258885e+18, "collected_at": "2026-05-22T04:29:53.982072+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1670943.0, "mtime": "2002-12-06T22:46:34+00:00", "mtime_ts": 1039214794.0, "ctime": "2002-12-06T22:46:34+00:00", "sha256_file": "9f414e37a28d6cda0d1761c43029421b6695700ee0d58084ea21424c688cc935", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5327", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:36", "EXIF DateTimeDigitized": "2002:12:06 23:46:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a28f77d3e8246f2db0eceeebb97afa7a87a296a61d35ac180b682d621371ee9d", "phash": "854a75aa996552ed", "dhash": "f0f1e0f2f3edf6fe", "phash_int": -8.842125542810103e+18, "collected_at": "2026-05-22T04:29:54.124078+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1936772.0, "mtime": "2002-12-06T22:46:40+00:00", "mtime_ts": 1039214800.0, "ctime": "2002-12-06T22:46:40+00:00", "sha256_file": "0319e18aa3d7eb3d52f8fd5f0ce0b89b515b29f8da5e95d54675c351614c13d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5929", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:42", "EXIF DateTimeDigitized": "2002:12:06 23:46:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7afd2f6144927b5ed987dfa75e60185d751937fea2d96a1b64378b1be5e8e9c", "phash": "91675baac4735c38", "dhash": "c3c7a2cebfbfd9f0", "phash_int": -7.969300226610341e+18, "collected_at": "2026-05-22T04:29:54.142079+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1965544.0, "mtime": "2002-12-06T22:46:46+00:00", "mtime_ts": 1039214806.0, "ctime": "2002-12-06T22:46:46+00:00", "sha256_file": "c74e60f7290db93b8237e2c7c0a02441622240b7442d8a915ecd784dd166adfb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6572", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:47", "EXIF DateTimeDigitized": "2002:12:06 23:46:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "600038eec729ed196bb9766472c10d13b0abd6080c2c327d71a0ebeae5b915bf", "phash": "d9765aa159669a29", "dhash": "00060786d2d2d2b1", "phash_int": -2.7769324711912013e+18, "collected_at": "2026-05-22T04:29:54.310082+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 2107787.0, "mtime": "2002-12-06T22:46:52+00:00", "mtime_ts": 1039214812.0, "ctime": "2002-12-06T22:46:52+00:00", "sha256_file": "cd051e5670bb36d079bb73170f6155329aae8a3fa98d07207580a41e1d4915c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:46:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6114", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:46:54", "EXIF DateTimeDigitized": "2002:12:06 23:46:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d156c57601ccbfb00e58fa041ae8ca6b5f4c563374a83ddbad56242a64ddb2ad", "phash": "8bb4578a6d47aa98", "dhash": "485ddddbbbe9e9db", "phash_int": -8.379976754579133e+18, "collected_at": "2026-05-22T04:29:54.521380+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-06\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-06\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 2145146.0, "mtime": "2002-12-06T22:47:02+00:00", "mtime_ts": 1039214822.0, "ctime": "2002-12-06T22:47:02+00:00", "sha256_file": "69e4c532e53263c9c5dad6fcf180163e04d67f0f3e8c1292421e0ef198fefe0a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:06 23:47:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6759", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:06 23:47:04", "EXIF DateTimeDigitized": "2002:12:06 23:47:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84b3544187800fff2a571d5dbe0a04333c6f4bd22c92fe17c0abb3a64d870953", "phash": "f4fe0b080576dac9", "dhash": "0a820484b2b68eca", "phash_int": -7.931843552913093e+17, "collected_at": "2026-05-22T04:29:54.546475+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-07\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-07\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 1736487.0, "mtime": "2002-12-07T13:40:20+00:00", "mtime_ts": 1039268420.0, "ctime": "2002-12-07T13:40:20+00:00", "sha256_file": "cd608c8fce5e700a4fcf74b9d225ba0cbf12ea089659eddd1b8382138a56d31d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:07 14:40:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4069", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:07 14:40:22", "EXIF DateTimeDigitized": "2002:12:07 14:40:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18446bf2f1f4539fc902b23982af1d68145e224edaf1535701b806424a89898a", "phash": "fc53a46e65994a34", "dhash": "0c0c181c04252626", "phash_int": -2.6468715902682464e+17, "collected_at": "2026-05-22T04:29:54.656566+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-07\\100-0038_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-07\\100-0038_IMG.JPG", "file_name": "100-0038_IMG.JPG", "file_stem": "100-0038_IMG", "file_ext": ".jpg", "file_size": 1777559.0, "mtime": "2002-12-07T13:40:26+00:00", "mtime_ts": 1039268426.0, "ctime": "2002-12-07T13:40:26+00:00", "sha256_file": "68220d2706ee736fa261918bdb2ff94351ecd8f90d689b4e37998308dcf90342", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:07 14:40:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4066", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:07 14:40:28", "EXIF DateTimeDigitized": "2002:12:07 14:40:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05caef5b3301c82cd7b8f23e846528278870281f770d28cd8847d11daa4868c8", "phash": "fe53a66b14996234", "dhash": "0c0c181814052e2e", "phash_int": -1.2056978617156347e+17, "collected_at": "2026-05-22T04:29:54.669564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0003_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0003_IMG_2.JPG", "file_name": "100-0003_IMG_2.JPG", "file_stem": "100-0003_IMG_2", "file_ext": ".jpg", "file_size": 1515993.0, "mtime": "2002-12-10T16:33:10+00:00", "mtime_ts": 1039537990.0, "ctime": "2002-12-10T16:33:10+00:00", "sha256_file": "8925d0e11b71b1d988074026ffb5aec4b5e5d40e7ef9f258f66c299855add227", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:33:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5912", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:33:11", "EXIF DateTimeDigitized": "2002:12:10 17:33:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be0184c4a9b6eb7238442b69b1747fe5813c7174b12d69c810129f2f4afc655c", "phash": "d9c0c7b730f8d846", "dhash": "8041919145594110", "phash_int": -2.7559833823361864e+18, "collected_at": "2026-05-22T04:29:54.719566+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0004_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0004_IMG_2.JPG", "file_name": "100-0004_IMG_2.JPG", "file_stem": "100-0004_IMG_2", "file_ext": ".jpg", "file_size": 1778132.0, "mtime": "2002-12-10T16:33:16+00:00", "mtime_ts": 1039537996.0, "ctime": "2002-12-10T16:33:16+00:00", "sha256_file": "efbeee6d9b6fa6d5bfad4d5a15da9485ba55abbb491ae7a58066ce6df7c5ae4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:33:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5235", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:33:17", "EXIF DateTimeDigitized": "2002:12:10 17:33:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9ca3cc9f3c2452ea6675b8dfa373ad6eeb17a2c928c2d762eeae9b3b281935e", "phash": "b4af5bd080a1fe68", "dhash": "7e2626a6a424f6b0", "phash_int": -5.427018074888733e+18, "collected_at": "2026-05-22T04:29:54.840789+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0005_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0005_IMG_2.JPG", "file_name": "100-0005_IMG_2.JPG", "file_stem": "100-0005_IMG_2", "file_ext": ".jpg", "file_size": 1431819.0, "mtime": "2002-12-10T16:33:26+00:00", "mtime_ts": 1039538006.0, "ctime": "2002-12-10T16:33:26+00:00", "sha256_file": "e4853c681638036b21e688ad5976be206d3e5eeb77415b681c221f1463626fd7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:33:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:33:28", "EXIF DateTimeDigitized": "2002:12:10 17:33:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9fc5907e5b234b6e066049c9605ce1670723c90a7295895e603f716c55e4014", "phash": "8fd96052ac6f338c", "dhash": "f0f06074646869e7", "phash_int": -8.081322148143091e+18, "collected_at": "2026-05-22T04:29:54.854788+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0006_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0006_IMG_2.JPG", "file_name": "100-0006_IMG_2.JPG", "file_stem": "100-0006_IMG_2", "file_ext": ".jpg", "file_size": 1367489.0, "mtime": "2002-12-10T16:33:44+00:00", "mtime_ts": 1039538024.0, "ctime": "2002-12-10T16:33:44+00:00", "sha256_file": "6a600dc08a9a70f8d0058bd499b7508a30d3e3586516ed5bd3553002d493ea2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:33:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5460", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:33:45", "EXIF DateTimeDigitized": "2002:12:10 17:33:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c5ac1e1707e25e48266139207f8d6896f82b94f997ac6583c58b156c88ad91e", "phash": "976a708d775c4a68", "dhash": "aa5a397cdcf07cdc", "phash_int": -7.536087273555867e+18, "collected_at": "2026-05-22T04:29:54.919795+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0007_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0007_IMG_2.JPG", "file_name": "100-0007_IMG_2.JPG", "file_stem": "100-0007_IMG_2", "file_ext": ".jpg", "file_size": 1449960.0, "mtime": "2002-12-10T16:33:56+00:00", "mtime_ts": 1039538036.0, "ctime": "2002-12-10T16:33:56+00:00", "sha256_file": "680f33ae59967fb41fd8a69db436abacfeaaaceb69c3e26d888f7cbb25fd9fb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:33:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6041", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:33:58", "EXIF DateTimeDigitized": "2002:12:10 17:33:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2358236b38e2d2372e425eb3f01078b212bba6135664a09a258cc8c834636dff", "phash": "9fee4061b5d94869", "dhash": "556d34781e50381c", "phash_int": -6.922524788814952e+18, "collected_at": "2026-05-22T04:29:54.944792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0009_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0009_IMG_2.JPG", "file_name": "100-0009_IMG_2.JPG", "file_stem": "100-0009_IMG_2", "file_ext": ".jpg", "file_size": 1425682.0, "mtime": "2002-12-10T16:34:12+00:00", "mtime_ts": 1039538052.0, "ctime": "2002-12-10T16:34:12+00:00", "sha256_file": "1f18336d53d71864e214c4ac17e7efe279aefc081147f0d28f3ea41f1dd720e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:34:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4626", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:34:13", "EXIF DateTimeDigitized": "2002:12:10 17:34:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3828f6609f9253aaad8696e8443d5808d676ca46d92a450cd5466d123fc1f9a", "phash": "d3e117cc126ba55c", "dhash": "e1e0c8c9a0616828", "phash_int": -3.1792336966970476e+18, "collected_at": "2026-05-22T04:29:55.038797+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\100-0008_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\100-0008_IMG_2.JPG", "file_name": "100-0008_IMG_2.JPG", "file_stem": "100-0008_IMG_2", "file_ext": ".jpg", "file_size": 1356963.0, "mtime": "2002-12-10T16:34:04+00:00", "mtime_ts": 1039538044.0, "ctime": "2002-12-10T16:34:04+00:00", "sha256_file": "42a175b3d307f64a03c313329b48088ea9e679b1eda7fc3dcb7dde3c865648d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 17:34:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4839", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:10 17:34:06", "EXIF DateTimeDigitized": "2002:12:10 17:34:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a1355070f00b39c5208cf2b27683ba23b9f6f5bc24e76d1683092a4ba9d33ed", "phash": "dd8137ae1a4ba172", "dhash": "f0f2d2b13171600c", "phash_int": -2.4856442984268017e+18, "collected_at": "2026-05-22T04:29:55.054926+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\2002-12-10--08-10-16.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\2002-12-10--08-10-16.jpg", "file_name": "2002-12-10--08-10-16.jpg", "file_stem": "2002-12-10--08-10-16", "file_ext": ".jpg", "file_size": 2885340.0, "mtime": "2003-01-04T10:29:12+00:00", "mtime_ts": 1041676152.0, "ctime": "2003-01-04T10:29:12+00:00", "sha256_file": "0e188e9a57d5755a95c1e50c0a0a99c852b9fb06277f9fe40d9c0232dd0acf87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 08:10:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5705", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:10 08:10:16", "EXIF DateTimeDigitized": "2002:12:10 08:10:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0758da542759d31295696fa8a6a3667d4d094409e39f30176e56e95dbc09f575", "phash": "f0985f874ccc5c9c", "dhash": "c8cc949494ccccc8", "phash_int": -1.1100322734331421e+18, "collected_at": "2026-05-22T04:29:55.224341+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-10\\2002-12-10--08-10-21.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-10\\2002-12-10--08-10-21.jpg", "file_name": "2002-12-10--08-10-21.jpg", "file_stem": "2002-12-10--08-10-21", "file_ext": ".jpg", "file_size": 2798950.0, "mtime": "2003-01-04T10:29:14+00:00", "mtime_ts": 1041676154.0, "ctime": "2003-01-04T10:29:14+00:00", "sha256_file": "5c4d44eb096b8535bd6897ffbfc7422634e330402b77f4f238e556a6185c8cd9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:10 08:10:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5421", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:10 08:10:21", "EXIF DateTimeDigitized": "2002:12:10 08:10:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "100f28b2935683d4c42d650604a83acbdc34ecc69cb46721c3d3eebd5d968260", "phash": "d3b35b9349816ed0", "dhash": "c8ccccccccccc8d8", "phash_int": -3.1921070227240105e+18, "collected_at": "2026-05-22T04:29:55.233337+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-21\\2002-12-21--22-36-53.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-21\\2002-12-21--22-36-53.jpg", "file_name": "2002-12-21--22-36-53.jpg", "file_stem": "2002-12-21--22-36-53", "file_ext": ".jpg", "file_size": 2826866.0, "mtime": "2002-12-22T14:39:34+00:00", "mtime_ts": 1040567974.0, "ctime": "2002-12-22T14:39:34+00:00", "sha256_file": "2f3d7fdc0c3e47bf44801c4dc9f97fd00c1bed3291943733104f70a3690d67fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 22:36:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5743", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 22:36:53", "EXIF DateTimeDigitized": "2002:12:21 22:36:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88a585c1e21f13726b4e60ae86ac7e710bb9da1aaa3bb5932ce8feb3c440cd8b", "phash": "c1d95f094cfc498d", "dhash": "e8c8cc96968ecccc", "phash_int": -4.478443860892301e+18, "collected_at": "2026-05-22T04:29:55.391109+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-21\\2002-12-21--22-37-01.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-21\\2002-12-21--22-37-01.jpg", "file_name": "2002-12-21--22-37-01.jpg", "file_stem": "2002-12-21--22-37-01", "file_ext": ".jpg", "file_size": 2786933.0, "mtime": "2002-12-22T14:39:28+00:00", "mtime_ts": 1040567968.0, "ctime": "2002-12-22T14:39:28+00:00", "sha256_file": "46fd7f7436b2c68c0ce10b783b8c825b9c1e82581f95b6c2b9b01aaa06c607e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 22:37:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5611", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 22:37:01", "EXIF DateTimeDigitized": "2002:12:21 22:37:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdb85e688850e3a193a49e32f06f2cccba492e109892e99a5c0b2babadd536c4", "phash": "c6a45eb359915b89", "dhash": "ece4c4ccceccece4", "phash_int": -4.1330744336244173e+18, "collected_at": "2026-05-22T04:29:55.394112+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0007_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0007_IMG_2.JPG", "file_name": "100-0007_IMG_2.JPG", "file_stem": "100-0007_IMG_2", "file_ext": ".jpg", "file_size": 1610417.0, "mtime": "2002-12-23T11:48:00+00:00", "mtime_ts": 1040644080.0, "ctime": "2002-12-23T11:48:00+00:00", "sha256_file": "04ba312faca06530ee67c2ff7f1136ecf26185c861ef6351661998d0ba75bb84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:48:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4761", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:48:02", "EXIF DateTimeDigitized": "2002:12:23 12:48:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "8", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a5c6c79132f8bde9761c1ec3bb181ee895ff998c101d39971a50329543d9cb7", "phash": "b4994f2d46f26e42", "dhash": "beb6be1d0e168444", "phash_int": -5.433224419563377e+18, "collected_at": "2026-05-22T04:29:55.543912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0006_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0006_IMG_2.JPG", "file_name": "100-0006_IMG_2.JPG", "file_stem": "100-0006_IMG_2", "file_ext": ".jpg", "file_size": 1876443.0, "mtime": "2002-12-23T11:47:52+00:00", "mtime_ts": 1040644072.0, "ctime": "2002-12-23T11:47:52+00:00", "sha256_file": "99286fd66b661d5fb84ded6f6014241c30a810618af59306682899344ec3eefe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:47:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6284", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:47:53", "EXIF DateTimeDigitized": "2002:12:23 12:47:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f85beb930405feeb36f0ed144f6ef8f0a5106cf4a63c7b15a7768e7d796b65aa", "phash": "e5bada64f7c52210", "dhash": "28585e5e0e46c2c0", "phash_int": -1.8929605661673958e+18, "collected_at": "2026-05-22T04:29:55.551912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0008_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0008_IMG_2.JPG", "file_name": "100-0008_IMG_2.JPG", "file_stem": "100-0008_IMG_2", "file_ext": ".jpg", "file_size": 1573642.0, "mtime": "2002-12-23T11:48:08+00:00", "mtime_ts": 1040644088.0, "ctime": "2002-12-23T11:48:08+00:00", "sha256_file": "01b41ee51420021167d22ed28609dc8a2de5c8267c1fe195d20c422c7d31dc7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:48:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4482", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:48:09", "EXIF DateTimeDigitized": "2002:12:23 12:48:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b433033893551385b9585ba337a21d07fafd5a1dadd9cc9d46d4ded6b029220f", "phash": "a39559a9661e6969", "dhash": "7c5a6acdcf8babc3", "phash_int": -6.659317889899796e+18, "collected_at": "2026-05-22T04:29:55.679583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0009_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0009_IMG_2.JPG", "file_name": "100-0009_IMG_2.JPG", "file_stem": "100-0009_IMG_2", "file_ext": ".jpg", "file_size": 1781804.0, "mtime": "2002-12-23T11:48:36+00:00", "mtime_ts": 1040644116.0, "ctime": "2002-12-23T11:48:36+00:00", "sha256_file": "ca0ce95eaabcbf6c30c3a0530e607ee1047747328c138e394a54944ec3908b22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:48:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5996", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:48:38", "EXIF DateTimeDigitized": "2002:12:23 12:48:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff17246524e1314bddb6f968f75b114098842f2de722f86b1ca09f348ab02745", "phash": "ea5c916363cde223", "dhash": "c02021694d8933bb", "phash_int": -1.5592115149148073e+18, "collected_at": "2026-05-22T04:29:55.682582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0011_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0011_IMG_2.JPG", "file_name": "100-0011_IMG_2.JPG", "file_stem": "100-0011_IMG_2", "file_ext": ".jpg", "file_size": 1782459.0, "mtime": "2002-12-23T11:49:14+00:00", "mtime_ts": 1040644154.0, "ctime": "2002-12-23T11:49:14+00:00", "sha256_file": "53414484c51dad5f1ba80da1548e2021f146eabff9d4971c3a3440861bf87bea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6079", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:15", "EXIF DateTimeDigitized": "2002:12:23 12:49:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f921f05c4b1ccc94fff738a7970719a8511ee4e35b431adfc14ba66dac64d32b", "phash": "d3a74c903727b4c9", "dhash": "cc82114d98b8f131", "phash_int": -3.195501228311727e+18, "collected_at": "2026-05-22T04:29:55.829040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0010_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0010_IMG_2.JPG", "file_name": "100-0010_IMG_2.JPG", "file_stem": "100-0010_IMG_2", "file_ext": ".jpg", "file_size": 1801187.0, "mtime": "2002-12-23T11:49:08+00:00", "mtime_ts": 1040644148.0, "ctime": "2002-12-23T11:49:08+00:00", "sha256_file": "1f7cc1e78c0c4f8c1cfec9f1d5793c38f6c159c15fe5ec94b8f27d9466097ff0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6020", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:09", "EXIF DateTimeDigitized": "2002:12:23 12:49:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74b8510ea26532a07bf33feeb4aca168ee5a0f2562147f8c30e078ef43686545", "phash": "d7e54d94362fb090", "dhash": "c682514d8c987131", "phash_int": -2.8898182869287117e+18, "collected_at": "2026-05-22T04:29:55.841040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0012_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0012_IMG_2.JPG", "file_name": "100-0012_IMG_2.JPG", "file_stem": "100-0012_IMG_2", "file_ext": ".jpg", "file_size": 1879290.0, "mtime": "2002-12-23T11:49:20+00:00", "mtime_ts": 1040644160.0, "ctime": "2002-12-23T11:49:20+00:00", "sha256_file": "6b16c1897bed4861fff138f28091eeb96d92f254f3d83655b73fd520d0c604a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6616", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:22", "EXIF DateTimeDigitized": "2002:12:23 12:49:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "609f2cd8dd1e108571426fb4a286b31c49f8ce1408f8b7542879ab710e0125ef", "phash": "e2bfd14e24f043b1", "dhash": "9c3a5d4dc5e5a18a", "phash_int": -2.1077359670287227e+18, "collected_at": "2026-05-22T04:29:55.972131+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0013_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0013_IMG_2.JPG", "file_name": "100-0013_IMG_2.JPG", "file_stem": "100-0013_IMG_2", "file_ext": ".jpg", "file_size": 1861848.0, "mtime": "2002-12-23T11:49:28+00:00", "mtime_ts": 1040644168.0, "ctime": "2002-12-23T11:49:28+00:00", "sha256_file": "1d566ae2d12e161eb4857a207712a50e03d9a91c5b9c626ed1e6595194ace93b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6538", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:30", "EXIF DateTimeDigitized": "2002:12:23 12:49:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "303eacd39234cd53d2e1afc662751ead22a4b6491d7c12ff1a5071cd108bc5e1", "phash": "cab1d74168a75f06", "dhash": "8c99aba3e3e0e065", "phash_int": -3.841052331241677e+18, "collected_at": "2026-05-22T04:29:55.975133+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0014_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0014_IMG_2.JPG", "file_name": "100-0014_IMG_2.JPG", "file_stem": "100-0014_IMG_2", "file_ext": ".jpg", "file_size": 1717555.0, "mtime": "2002-12-23T11:49:36+00:00", "mtime_ts": 1040644176.0, "ctime": "2002-12-23T11:49:36+00:00", "sha256_file": "8ca1e782c4ecf8f3ae0bf30d55b69c52b937a1701f6069b5af0182c3246ccb5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4487", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:38", "EXIF DateTimeDigitized": "2002:12:23 12:49:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edf2978cf2830f0d608107a90a4156911b1e5ee04e5c408b042ff800b83bcb4f", "phash": "91836c787a67f44c", "dhash": "f8f8c8dc989cbe36", "phash_int": -7.961400451555397e+18, "collected_at": "2026-05-22T04:29:56.149063+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0015_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0015_IMG_2.JPG", "file_name": "100-0015_IMG_2.JPG", "file_stem": "100-0015_IMG_2", "file_ext": ".jpg", "file_size": 1795516.0, "mtime": "2002-12-23T11:49:44+00:00", "mtime_ts": 1040644184.0, "ctime": "2002-12-23T11:49:44+00:00", "sha256_file": "1284d4c9a36f5c27bfddf05b49bdd09d3b41138f3a01b14978cc9c168771fd54", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5256", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:45", "EXIF DateTimeDigitized": "2002:12:23 12:49:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "307f9043c8a766c7b7611e75448fd567c0a7e983c1343adfe4a7fd3c7a9a9c13", "phash": "9b9937f60c25691a", "dhash": "79793bb333534eee", "phash_int": -7.234689796488731e+18, "collected_at": "2026-05-22T04:29:56.162065+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0017_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0017_IMG_2.JPG", "file_name": "100-0017_IMG_2.JPG", "file_stem": "100-0017_IMG_2", "file_ext": ".jpg", "file_size": 1800696.0, "mtime": "2002-12-23T11:49:58+00:00", "mtime_ts": 1040644198.0, "ctime": "2002-12-23T11:49:58+00:00", "sha256_file": "20f069c0b49e92caa1669b99e342671190c48d8b5a6c8b36a47e2b95b5f3bf7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5508", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:59", "EXIF DateTimeDigitized": "2002:12:23 12:49:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04a3ea2abee261cb20cd876a4f849ba0e9b63d3a24d4c7fa0ddf5a56d58ca192", "phash": "c7d2b0780f738d38", "dhash": "c0e04a4862529ce6", "phash_int": -4.0479790853508593e+18, "collected_at": "2026-05-22T04:29:56.241070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0016_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0016_IMG_2.JPG", "file_name": "100-0016_IMG_2.JPG", "file_stem": "100-0016_IMG_2", "file_ext": ".jpg", "file_size": 1723435.0, "mtime": "2002-12-23T11:49:50+00:00", "mtime_ts": 1040644190.0, "ctime": "2002-12-23T11:49:50+00:00", "sha256_file": "43bf63fc9b8cd46b5db27a5314d62c1919065588b88aa4c10e001caf388346ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:49:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4817", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:49:52", "EXIF DateTimeDigitized": "2002:12:23 12:49:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "29", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e207754dc54c2bc8ca7320d5174d848c09ec6576491461aba08b7c9be8963151", "phash": "86f2991d65734e16", "dhash": "e0e0ed4de263f0f4", "phash_int": -8.722741176728072e+18, "collected_at": "2026-05-22T04:29:56.257068+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0018_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0018_IMG_2.JPG", "file_name": "100-0018_IMG_2.JPG", "file_stem": "100-0018_IMG_2", "file_ext": ".jpg", "file_size": 1980811.0, "mtime": "2002-12-23T11:50:06+00:00", "mtime_ts": 1040644206.0, "ctime": "2002-12-23T11:50:06+00:00", "sha256_file": "8805cee9dbe1852bc57fc88030348bea1097ab384b8aafb9401fc46804673663", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:50:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6152", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:50:07", "EXIF DateTimeDigitized": "2002:12:23 12:50:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dcc48f53c1997579b94eda6107226154b22a43868f67573aff26e3e4488e85ff", "phash": "f5ec8a312f2c21ad", "dhash": "c3c0122656dc5c6c", "phash_int": -7.260534960640406e+17, "collected_at": "2026-05-22T04:29:56.327711+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0019_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0019_IMG_2.JPG", "file_name": "100-0019_IMG_2.JPG", "file_stem": "100-0019_IMG_2", "file_ext": ".jpg", "file_size": 1655824.0, "mtime": "2002-12-23T11:50:18+00:00", "mtime_ts": 1040644218.0, "ctime": "2002-12-23T11:50:18+00:00", "sha256_file": "24f975e8e833953a29dc092a7fcc6dbd90ecdb2c7dd9619a1ae3b2bb36c550c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:50:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5605", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:50:19", "EXIF DateTimeDigitized": "2002:12:23 12:50:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f0540e73bcea6fb722bc57910870c147c0f7c9ec8b8d36e88dd3dc8f58ac0a8", "phash": "ab94cc68345b696b", "dhash": "eefc7b1b8b8bcbd3", "phash_int": -6.083012448743627e+18, "collected_at": "2026-05-22T04:29:56.388721+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-23\\100-0020_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-23\\100-0020_IMG_2.JPG", "file_name": "100-0020_IMG_2.JPG", "file_stem": "100-0020_IMG_2", "file_ext": ".jpg", "file_size": 1923611.0, "mtime": "2002-12-23T11:50:28+00:00", "mtime_ts": 1040644228.0, "ctime": "2002-12-23T11:50:28+00:00", "sha256_file": "376a9a389dbac40cd882ffad5613675909a2652e93385021a8d048039176359f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:50:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5737", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:50:29", "EXIF DateTimeDigitized": "2002:12:23 12:50:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5519822136702834869009cb59f6d97d2cce7ae04756e93e99fd955dcf71558a", "phash": "87b0557ac0cd6a37", "dhash": "a6decbc7656560c4", "phash_int": -8.669335296979146e+18, "collected_at": "2026-05-22T04:29:56.520432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0023_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0023_IMG_2.JPG", "file_name": "100-0023_IMG_2.JPG", "file_stem": "100-0023_IMG_2", "file_ext": ".jpg", "file_size": 1539086.0, "mtime": "2002-12-24T15:33:28+00:00", "mtime_ts": 1040744008.0, "ctime": "2002-12-24T15:33:28+00:00", "sha256_file": "933eb337735db05c8c1c8b28742e09fcae9e3d2c33f91dfa4397901ffed01623", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5355", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:30", "EXIF DateTimeDigitized": "2002:12:24 16:33:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fac50ff51b5bce131f9d2f7222e228d6dd8e71f4b51c38fd488617fe3223f14e", "phash": "ae0f0226c8d8773f", "dhash": "6d656333332f2f3b", "phash_int": -5.904498220857788e+18, "collected_at": "2026-05-22T04:29:56.524488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0024_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0024_IMG_2.JPG", "file_name": "100-0024_IMG_2.JPG", "file_stem": "100-0024_IMG_2", "file_ext": ".jpg", "file_size": 1934358.0, "mtime": "2002-12-24T15:33:36+00:00", "mtime_ts": 1040744016.0, "ctime": "2002-12-24T15:33:36+00:00", "sha256_file": "8d1fa49771f1265832925cc522856ca90479fe15a0f219bc17bddae71280636d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:37", "EXIF DateTimeDigitized": "2002:12:24 16:33:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b81b69deb9123bd2ca0b89071b5e86948f7dc93f93cd3eb1ca48de7a197df0d8", "phash": "9c4f2798576605dc", "dhash": "66727230b8bab7fe", "phash_int": -7.183479345377836e+18, "collected_at": "2026-05-22T04:29:56.631066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0025_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0025_IMG_2.JPG", "file_name": "100-0025_IMG_2.JPG", "file_stem": "100-0025_IMG_2", "file_ext": ".jpg", "file_size": 1999526.0, "mtime": "2002-12-24T15:33:40+00:00", "mtime_ts": 1040744020.0, "ctime": "2002-12-24T15:33:40+00:00", "sha256_file": "33317f1214f5171dc89e7611974ac849d0d4d6fd6f79e2bb041e18d2dc01442a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5396", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:42", "EXIF DateTimeDigitized": "2002:12:24 16:33:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4553ef19a97b7820a83d7d91cd2b16db3dd1ee930337fbbb3a9d966504d7b6a2", "phash": "d0c7c01e3be209df", "dhash": "c0e0c0983830b092", "phash_int": -3.402539757368899e+18, "collected_at": "2026-05-22T04:29:56.634066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0026_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0026_IMG_2.JPG", "file_name": "100-0026_IMG_2.JPG", "file_stem": "100-0026_IMG_2", "file_ext": ".jpg", "file_size": 1558384.0, "mtime": "2002-12-24T15:33:44+00:00", "mtime_ts": 1040744024.0, "ctime": "2002-12-24T15:33:44+00:00", "sha256_file": "7f5f8960fc3ac04576cf2168a7ef1a13c1a6242c25f15ef4ed7876cff5eb0b02", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4590", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:46", "EXIF DateTimeDigitized": "2002:12:24 16:33:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 302, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2802b5a6b0c9e0c6d2ef900a365dcb8cb1bed5fcf5aec4886c74a1bfdd7a9525", "phash": "986567c626933bd1", "dhash": "e4e2b2b1b979d9f8", "phash_int": -7.46544670654836e+18, "collected_at": "2026-05-22T04:29:56.735154+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0027_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0027_IMG_2.JPG", "file_name": "100-0027_IMG_2.JPG", "file_stem": "100-0027_IMG_2", "file_ext": ".jpg", "file_size": 1633422.0, "mtime": "2002-12-24T15:33:50+00:00", "mtime_ts": 1040744030.0, "ctime": "2002-12-24T15:33:50+00:00", "sha256_file": "c221b308e0b202df6f1d03d4d454589980d414b094a26242ab36922e9e8048d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6179", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:52", "EXIF DateTimeDigitized": "2002:12:24 16:33:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06f6d1524f33a95e2bfd264c168cc8d09a6b00cb534b2c8eb87f93a6f3945720", "phash": "a83d1ceb630f6718", "dhash": "b3bab7cfcbc7f5f5", "phash_int": -6.323866504453462e+18, "collected_at": "2026-05-22T04:29:56.741153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0029_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0029_IMG_2.JPG", "file_name": "100-0029_IMG_2.JPG", "file_stem": "100-0029_IMG_2", "file_ext": ".jpg", "file_size": 1557428.0, "mtime": "2002-12-24T15:34:00+00:00", "mtime_ts": 1040744040.0, "ctime": "2002-12-24T15:34:00+00:00", "sha256_file": "2f94394a6cd8c558353da2ce277c9631fb4cf6ce0d7bb15d05e0ac0345cfd62a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:34:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:34:01", "EXIF DateTimeDigitized": "2002:12:24 16:34:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c64117781b617ed6f24733b28c6dc41780aa239cf511ba7222f9d33347ae9b85", "phash": "f681504f3c334bcd", "dhash": "d0e0da1c640d0c24", "phash_int": -6.841773671409715e+17, "collected_at": "2026-05-22T04:29:56.874183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0028_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0028_IMG_2.JPG", "file_name": "100-0028_IMG_2.JPG", "file_stem": "100-0028_IMG_2", "file_ext": ".jpg", "file_size": 1670388.0, "mtime": "2002-12-24T15:33:56+00:00", "mtime_ts": 1040744036.0, "ctime": "2002-12-24T15:33:56+00:00", "sha256_file": "7a2193240e8c727c7f6ed5d8061497281493d91325327868398a8f5d59f32d49", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 16:33:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6058", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 16:33:57", "EXIF DateTimeDigitized": "2002:12:24 16:33:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c13b49868e4303a10ac1b9712d19cfa42bb9f45473d3ab9fdda6490ae7384400", "phash": "d3c68c7d157b8065", "dhash": "d0c1d9999a9b19a0", "phash_int": -3.1867052174588314e+18, "collected_at": "2026-05-22T04:29:56.886183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0031_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0031_IMG_2.JPG", "file_name": "100-0031_IMG_2.JPG", "file_stem": "100-0031_IMG_2", "file_ext": ".jpg", "file_size": 2018685.0, "mtime": "2002-12-24T17:55:44+00:00", "mtime_ts": 1040752544.0, "ctime": "2002-12-24T17:55:44+00:00", "sha256_file": "79b104f8f2dea784e2eb7ac1097d25e19f8d2f050523646a1a1574dc20edfd1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:55:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7023", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:55:45", "EXIF DateTimeDigitized": "2002:12:24 18:55:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ecbc6aac4ea1d7eba607b9623cc52be1763e59e766ee0268af21faccd6ebb5b0", "phash": "9e822767f80c1ecb", "dhash": "71d9f1b1992c663a", "phash_int": -7.025009141247894e+18, "collected_at": "2026-05-22T04:29:57.008438+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0030_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0030_IMG_2.JPG", "file_name": "100-0030_IMG_2.JPG", "file_stem": "100-0030_IMG_2", "file_ext": ".jpg", "file_size": 2263422.0, "mtime": "2002-12-24T17:55:38+00:00", "mtime_ts": 1040752538.0, "ctime": "2002-12-24T17:55:38+00:00", "sha256_file": "6c6ee9205731e8146ea2da4fd5c0c32ae0f2d9af01f2ad6b8de941db593c28a1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:55:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6570", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:55:39", "EXIF DateTimeDigitized": "2002:12:24 18:55:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65489", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43e5023cb8be8e9544113e2dc5616fdc604375bcb7fc69078e5a501848f74218", "phash": "a5ce1a6da050bf53", "dhash": "ccec44c6c6669c9c", "phash_int": -6.499228154105643e+18, "collected_at": "2026-05-22T04:29:57.014437+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0033_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0033_IMG_2.JPG", "file_name": "100-0033_IMG_2.JPG", "file_stem": "100-0033_IMG_2", "file_ext": ".jpg", "file_size": 1042256.0, "mtime": "2002-12-24T17:56:02+00:00", "mtime_ts": 1040752562.0, "ctime": "2002-12-24T17:56:02+00:00", "sha256_file": "78f319f2384213c377c4e18836e51efb6679848e6202d5d35167dccda6100995", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:56:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4587", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:56:03", "EXIF DateTimeDigitized": "2002:12:24 18:56:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be6129cfea1a509fe62efdce8499b0a2ca0b4eb5b764f82e37ee6d6810f18f29", "phash": "97976869fdfe0200", "dhash": "dcfcec7c5cec34d8", "phash_int": -7.523429848056988e+18, "collected_at": "2026-05-22T04:29:57.123868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0032_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0032_IMG_2.JPG", "file_name": "100-0032_IMG_2.JPG", "file_stem": "100-0032_IMG_2", "file_ext": ".jpg", "file_size": 1894313.0, "mtime": "2002-12-24T17:55:48+00:00", "mtime_ts": 1040752548.0, "ctime": "2002-12-24T17:55:48+00:00", "sha256_file": "89e17b98aed8aaaceee805179914e96e0825ec7d2c5544d7a793025cd2be05e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:55:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7419", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:55:50", "EXIF DateTimeDigitized": "2002:12:24 18:55:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65403", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "212c1ab9abc2e7f35dab4eab163be3d1e7712b71389b17f3d5177374b6893767", "phash": "91129739190ce7fe", "dhash": "785ccc9293d7d5da", "phash_int": -7.993160117140003e+18, "collected_at": "2026-05-22T04:29:57.128870+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0034_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0034_IMG_2.JPG", "file_name": "100-0034_IMG_2.JPG", "file_stem": "100-0034_IMG_2", "file_ext": ".jpg", "file_size": 1101919.0, "mtime": "2002-12-24T17:56:08+00:00", "mtime_ts": 1040752568.0, "ctime": "2002-12-24T17:56:08+00:00", "sha256_file": "1305beb2c6ffc17884d306d6b7b87e7aa30bf80687b4d59ce48eb6482251a914", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:56:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4669", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:56:09", "EXIF DateTimeDigitized": "2002:12:24 18:56:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92e0f83e4bf463efe48671f85b63296a6f8c6a53caa04d1be28fd1355eaf24a7", "phash": "95936869b5fe2232", "dhash": "d8f8ecfcdce434d8", "phash_int": -7.668670937247636e+18, "collected_at": "2026-05-22T04:29:57.234874+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0035_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0035_IMG_2.JPG", "file_name": "100-0035_IMG_2.JPG", "file_stem": "100-0035_IMG_2", "file_ext": ".jpg", "file_size": 1579932.0, "mtime": "2002-12-24T17:56:58+00:00", "mtime_ts": 1040752618.0, "ctime": "2002-12-24T17:56:58+00:00", "sha256_file": "56ede1e62331358b0a6e302717595adce4aaf01085e988ffa4e7a9938ff60e30", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:57:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5588", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:57:00", "EXIF DateTimeDigitized": "2002:12:24 18:57:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b76bfab74b8c68ced63cdf8f78f9afba5796903cdb615b085678af2690656354", "phash": "b496536bad0ec89c", "dhash": "9c5cb4662617dde9", "phash_int": -5.434064178445892e+18, "collected_at": "2026-05-22T04:29:57.245934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0036_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0036_IMG_2.JPG", "file_name": "100-0036_IMG_2.JPG", "file_stem": "100-0036_IMG_2", "file_ext": ".jpg", "file_size": 1644514.0, "mtime": "2002-12-24T17:57:20+00:00", "mtime_ts": 1040752640.0, "ctime": "2002-12-24T17:57:20+00:00", "sha256_file": "1d25eeccb48abc3f0309035ddafcec9f435c3cc7bbded16258502d4b995db784", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 18:57:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6218", "EXIF ExposureTime": "3/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 18:57:22", "EXIF DateTimeDigitized": "2002:12:24 18:57:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "24", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f590eefc9af4cfd47bec1b9f39ccadfd9e8f0b5f8420e758a7e84ea365eccea9", "phash": "ac81117a7ae7c63c", "dhash": "9ef6e6cf23270e6e", "phash_int": -6.016508409444579e+18, "collected_at": "2026-05-22T04:29:57.335095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0037_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0037_IMG_2.JPG", "file_name": "100-0037_IMG_2.JPG", "file_stem": "100-0037_IMG_2", "file_ext": ".jpg", "file_size": 1421542.0, "mtime": "2002-12-24T18:22:10+00:00", "mtime_ts": 1040754130.0, "ctime": "2002-12-24T18:22:10+00:00", "sha256_file": "411b610358796c30ab9cb2bcd2cdaf6ab81debd3e903654728b4784652def964", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:22:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5855", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:22:11", "EXIF DateTimeDigitized": "2002:12:24 19:22:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[75, 188, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "881076251ea299a9ef39bc9ef7a27ce3a493cca5de88fcb24e5c4a4ca19ab269", "phash": "d1dde606185923fc", "dhash": "c0e01293b0c9d0c4", "phash_int": -3.3242480360768707e+18, "collected_at": "2026-05-22T04:29:57.355098+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0039_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0039_IMG_2.JPG", "file_name": "100-0039_IMG_2.JPG", "file_stem": "100-0039_IMG_2", "file_ext": ".jpg", "file_size": 1815568.0, "mtime": "2002-12-24T18:46:10+00:00", "mtime_ts": 1040755570.0, "ctime": "2002-12-24T18:46:10+00:00", "sha256_file": "b0e20e48d53a8caa8cb7aeb554929229775dac3baac9288b573a20c27bc4cb35", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:46:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6100", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:46:11", "EXIF DateTimeDigitized": "2002:12:24 19:46:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65467", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8dfb6cb0d49fc86320981e780d79a10ec12541b4cea32abe4582f82eae4ce455", "phash": "ff4e586f80631469", "dhash": "62626e4e6b6e02b4", "phash_int": -5.000530993590569e+16, "collected_at": "2026-05-22T04:29:57.469100+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0038_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0038_IMG_2.JPG", "file_name": "100-0038_IMG_2.JPG", "file_stem": "100-0038_IMG_2", "file_ext": ".jpg", "file_size": 1389612.0, "mtime": "2002-12-24T18:22:52+00:00", "mtime_ts": 1040754172.0, "ctime": "2002-12-24T18:22:52+00:00", "sha256_file": "631340a341c232ccd99d9b53fb2d9a1265bf90d26fc6097cb78df752556e19ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:22:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5872", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:22:53", "EXIF DateTimeDigitized": "2002:12:24 19:22:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[89, 178, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Continuous", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4768f638e2f98186f33e20a8532a9ef6f4c3d42efd731b7a8db46afc4e610c68", "phash": "eff6780177304172", "dhash": "0d05454c4dc11929", "phash_int": -1.155604306684002e+18, "collected_at": "2026-05-22T04:29:57.481100+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0040_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0040_IMG_2.JPG", "file_name": "100-0040_IMG_2.JPG", "file_stem": "100-0040_IMG_2", "file_ext": ".jpg", "file_size": 2008994.0, "mtime": "2002-12-24T18:46:50+00:00", "mtime_ts": 1040755610.0, "ctime": "2002-12-24T18:46:50+00:00", "sha256_file": "a3cfcf9c9c9234593e0b0754aea2ee521761addc2b2d34791aee9112301ee887", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:46:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5683", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:46:51", "EXIF DateTimeDigitized": "2002:12:24 19:46:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf282604aa421f35b3a54c6009516926c6794194edd4c16e4d5aee466c1a30ec", "phash": "bdfa403348355ea5", "dhash": "367674727776d6d6", "phash_int": -4.75741946736454e+18, "collected_at": "2026-05-22T04:29:57.587475+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0041_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0041_IMG_2.JPG", "file_name": "100-0041_IMG_2.JPG", "file_stem": "100-0041_IMG_2", "file_ext": ".jpg", "file_size": 1996743.0, "mtime": "2002-12-24T18:48:28+00:00", "mtime_ts": 1040755708.0, "ctime": "2002-12-24T18:48:28+00:00", "sha256_file": "d532bec4de19eba2a32e21498375515af9a19557ca5251f650889c5dda79a439", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:48:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6337", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:48:30", "EXIF DateTimeDigitized": "2002:12:24 19:48:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65470", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57b1a4c261a2971be4bdacff3bfd594a0fad2befbf8c54b331d6a16bb1a47f38", "phash": "a3f6083cd32c1ee3", "dhash": "1ace4c4e4d1ed3d3", "phash_int": -6.632104343922532e+18, "collected_at": "2026-05-22T04:29:57.590477+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0043_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0043_IMG_2.JPG", "file_name": "100-0043_IMG_2.JPG", "file_stem": "100-0043_IMG_2", "file_ext": ".jpg", "file_size": 1991378.0, "mtime": "2002-12-24T18:53:10+00:00", "mtime_ts": 1040755990.0, "ctime": "2002-12-24T18:53:10+00:00", "sha256_file": "49301294c9b201560e679864f932f75f12a54ed2390fbe7c155d233eff1c952c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:53:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6259", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:53:12", "EXIF DateTimeDigitized": "2002:12:24 19:53:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65480", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cce0cf60816c3db1058c1af087df7845a8db440b8ad7ecacb37edce0a750fd2", "phash": "e8341be1463b74ea", "dhash": "98babaaac3c34b79", "phash_int": -1.714714903761423e+18, "collected_at": "2026-05-22T04:29:57.710882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0042_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0042_IMG_2.JPG", "file_name": "100-0042_IMG_2.JPG", "file_stem": "100-0042_IMG_2", "file_ext": ".jpg", "file_size": 1887553.0, "mtime": "2002-12-24T18:50:26+00:00", "mtime_ts": 1040755826.0, "ctime": "2002-12-24T18:50:26+00:00", "sha256_file": "252a447ccd04ffe7f620dabb8f540457d14bb3806da3d2aadbca8b324d7f40e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:50:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6065", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 19:50:28", "EXIF DateTimeDigitized": "2002:12:24 19:50:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65476", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72fd09084e2f39e91c0a4ff581f67029e0061c98c26f818d90052f4a748a00cf", "phash": "c1a376c9dc7223cc", "dhash": "ccdddd55f3c3a42c", "phash_int": -4.493617393826651e+18, "collected_at": "2026-05-22T04:29:57.729968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0044_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0044_IMG_2.JPG", "file_name": "100-0044_IMG_2.JPG", "file_stem": "100-0044_IMG_2", "file_ext": ".jpg", "file_size": 1977141.0, "mtime": "2002-12-24T19:10:12+00:00", "mtime_ts": 1040757012.0, "ctime": "2002-12-24T19:10:12+00:00", "sha256_file": "fcb9e71d08d371cc5b3be570d24c11ade18f87d3468a7d2c5f917b225ab2b275", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:10:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6675", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 20:10:14", "EXIF DateTimeDigitized": "2002:12:24 20:10:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e148e2d8010a6f832e6731adb814d8b5960531c7eddc97c4420b89fb148380a", "phash": "a8f4036050b77dfa", "dhash": "98ba3abab3b3ebf9", "phash_int": -6.272384668814312e+18, "collected_at": "2026-05-22T04:29:57.860303+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0045_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0045_IMG_2.JPG", "file_name": "100-0045_IMG_2.JPG", "file_stem": "100-0045_IMG_2", "file_ext": ".jpg", "file_size": 2902500.0, "mtime": "2003-01-04T10:23:28+00:00", "mtime_ts": 1041675808.0, "ctime": "2003-01-04T10:23:28+00:00", "sha256_file": "2b575df2156debcdf00a6939bf545533beda18c2855dfd138d0a411a6f2e9b71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6735", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:24 20:50:22", "EXIF DateTimeDigitized": "2002:12:24 20:50:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8acdc48beb5b3d54c7c0288018b227577c1a56d17daa86d0ea11919d610981d0", "phash": "f0bc1e69346316cb", "dhash": "32320e8e9f9490bc", "phash_int": -1.0999707717859351e+18, "collected_at": "2026-05-22T04:29:57.879305+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0046_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0046_IMG_2.JPG", "file_name": "100-0046_IMG_2.JPG", "file_stem": "100-0046_IMG_2", "file_ext": ".jpg", "file_size": 2798247.0, "mtime": "2003-01-04T10:23:30+00:00", "mtime_ts": 1041675810.0, "ctime": "2003-01-04T10:23:30+00:00", "sha256_file": "6dced105e861a1c95d31ea8dabf3a2f9d60fad2444b12445a5607e99a30a236b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6328", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:24 20:50:27", "EXIF DateTimeDigitized": "2002:12:24 20:50:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a9793530286c9df44b9e6767e65c7f7f61dbeb61e6669d60905d753da8f0820", "phash": "f0bc9e693473026b", "dhash": "32329e8e979410d0", "phash_int": -1.0998300342965364e+18, "collected_at": "2026-05-22T04:29:57.996309+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0047_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0047_IMG_2.JPG", "file_name": "100-0047_IMG_2.JPG", "file_stem": "100-0047_IMG_2", "file_ext": ".jpg", "file_size": 1876451.0, "mtime": "2002-12-24T19:50:32+00:00", "mtime_ts": 1040759432.0, "ctime": "2002-12-24T19:50:32+00:00", "sha256_file": "e00bc87b2bce226b83604581c8d2e2488e293915b7d3a8e7815968f06824fe6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5232", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 20:50:34", "EXIF DateTimeDigitized": "2002:12:24 20:50:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65492", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1951c7a4488aa09c7a34340e3e97f708f1de0701f2680c46e95f9eb8a833a93", "phash": "bc8d093e59e4db24", "dhash": "726eee161e2ea699", "phash_int": -4.860218259462104e+18, "collected_at": "2026-05-22T04:29:58.001313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0049_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0049_IMG_2.JPG", "file_name": "100-0049_IMG_2.JPG", "file_stem": "100-0049_IMG_2", "file_ext": ".jpg", "file_size": 1989117.0, "mtime": "2002-12-24T19:50:46+00:00", "mtime_ts": 1040759446.0, "ctime": "2002-12-24T19:50:46+00:00", "sha256_file": "191eacae6052b9ce2dc9a1222d80aad7861aac9470d6bb12fa0c9c440274443a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6853", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 20:50:48", "EXIF DateTimeDigitized": "2002:12:24 20:50:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "059f4e48bad312eb90257759db670ab1bd11b510d1ef1c8a8d9c5419441424df", "phash": "aa744daa696599b4", "dhash": "8620989b9dc95972", "phash_int": -6.164216595655322e+18, "collected_at": "2026-05-22T04:29:58.177317+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0048_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0048_IMG_2.JPG", "file_name": "100-0048_IMG_2.JPG", "file_stem": "100-0048_IMG_2", "file_ext": ".jpg", "file_size": 3367782.0, "mtime": "2003-01-04T10:23:34+00:00", "mtime_ts": 1041675814.0, "ctime": "2003-01-04T10:23:34+00:00", "sha256_file": "43bbbd0ba6ab15064d03fcb174e9965002b1cbbb931238ac856f4fecc8b8e0eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7541", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:24 20:50:38", "EXIF DateTimeDigitized": "2002:12:24 20:50:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ea187539df5b031659839a38c86e084bab8d71171a4891be2f059320e3cc107", "phash": "aeaa8cc2331cdce9", "dhash": "e14d175f4f24b2a2", "phash_int": -5.860717199360206e+18, "collected_at": "2026-05-22T04:29:58.193426+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0050_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0050_IMG_2.JPG", "file_name": "100-0050_IMG_2.JPG", "file_stem": "100-0050_IMG_2", "file_ext": ".jpg", "file_size": 1727110.0, "mtime": "2002-12-24T19:50:52+00:00", "mtime_ts": 1040759452.0, "ctime": "2002-12-24T19:50:52+00:00", "sha256_file": "7e9b86dee368eba840fda24965e18a60cc95fddc4664f08ee6c39eeb93a0d2d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:50:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7226", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 20:50:54", "EXIF DateTimeDigitized": "2002:12:24 20:50:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "231f5eb90a2a402f0187ee35aef18c664f7d699ed50a040ca7d801b8146a6deb", "phash": "855a6a75af7a841a", "dhash": "8d713c7676b62ae3", "phash_int": -8.837634265073417e+18, "collected_at": "2026-05-22T04:29:58.316530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0051_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0051_IMG_2.JPG", "file_name": "100-0051_IMG_2.JPG", "file_stem": "100-0051_IMG_2", "file_ext": ".jpg", "file_size": 1917417.0, "mtime": "2002-12-24T20:04:52+00:00", "mtime_ts": 1040760292.0, "ctime": "2002-12-24T20:04:52+00:00", "sha256_file": "64be971d8eb88f3e1c0cfd477a18516a94908347ddd6c64bf26f521aef4fa37b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 21:04:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6427", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 21:04:54", "EXIF DateTimeDigitized": "2002:12:24 21:04:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d670dad08f0a79738c26a280175e227d9f5296f746f532d403c8dce5a3bafe52", "phash": "c32bb4888ff6323c", "dhash": "d9d14cc052d95464", "phash_int": -4.3832113136912174e+18, "collected_at": "2026-05-22T04:29:58.322528+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\2002-12-24--10-50-12.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\2002-12-24--10-50-12.jpg", "file_name": "2002-12-24--10-50-12.jpg", "file_stem": "2002-12-24--10-50-12", "file_ext": ".jpg", "file_size": 2699827.0, "mtime": "2003-01-04T10:24:50+00:00", "mtime_ts": 1041675890.0, "ctime": "2003-01-04T10:24:50+00:00", "sha256_file": "d5a1fc84b7e253379a60d6ae1e562640cae279a7236a90a9010f8326f06320b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 10:50:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6073", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:24 10:50:12", "EXIF DateTimeDigitized": "2002:12:24 10:50:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2ad2a86541ad1268ecca6fe298fd6f2f3b07f8ce6dff081659918e5666f741a", "phash": "c2bb57b349c95494", "dhash": "c8cc94939accccec", "phash_int": -4.414838582157946e+18, "collected_at": "2026-05-22T04:29:58.477588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\100-0052_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\100-0052_IMG_2.JPG", "file_name": "100-0052_IMG_2.JPG", "file_stem": "100-0052_IMG_2", "file_ext": ".jpg", "file_size": 1931528.0, "mtime": "2002-12-24T20:04:58+00:00", "mtime_ts": 1040760298.0, "ctime": "2002-12-24T20:04:58+00:00", "sha256_file": "89b065a8b91146d6ad866037096d787c48e8a01241e29c73cfdbae7dd7017ffc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 21:05:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6784", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:24 21:05:00", "EXIF DateTimeDigitized": "2002:12:24 21:05:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "617cf3dca2b102f2b15cbba4062a104e310814d9a997f4e469b064998621f02d", "phash": "f8e81e5f3040ed3a", "dhash": "3333b3933962cc2c", "phash_int": -5.111251635262635e+17, "collected_at": "2026-05-22T04:29:58.484584+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\IMG_1332.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\IMG_1332.JPG", "file_name": "IMG_1332.JPG", "file_stem": "IMG_1332", "file_ext": ".jpg", "file_size": 493982.0, "mtime": "2002-12-24T18:54:38+00:00", "mtime_ts": 1040756078.0, "ctime": "2002-12-24T18:54:38+00:00", "sha256_file": "0ecb3933c4e90612c28cedcc32f8b78d0e297803f6437d267ff498af3250a18c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:54:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5299", "EXIF ExposureTime": "1/160", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 19:54:40", "EXIF DateTimeDigitized": "2002:12:24 19:54:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 573, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131332", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0fb25287bd75f5975cd33db40e0dcfd5e0688633c3137ef634cb90743d212801", "phash": "94e96235db6c9d90", "dhash": "189d30347c5c64fc", "phash_int": -7.716528503068517e+18, "collected_at": "2026-05-22T04:29:58.612587+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 01.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 01.JPG", "file_name": "Mamka Vianoce 01.JPG", "file_stem": "Mamka Vianoce 01", "file_ext": ".jpg", "file_size": 574613.0, "mtime": "2002-12-24T17:54:10+00:00", "mtime_ts": 1040752450.0, "ctime": "2002-12-24T17:54:10+00:00", "sha256_file": "304d125ad609f72355f2832be2f240f22f3043428005535ff40adf68ea3b3042", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:54:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5542", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 19:54:12", "EXIF DateTimeDigitized": "2002:12:24 19:54:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1314, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131330", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dd0493a7849d6c043f97260eced59ccc83c4e8d33c768d44c2dee3bc2a59a06", "phash": "d3f5c42c963944ce", "dhash": "e40858182ca620a8", "phash_int": -3.173414666634706e+18, "collected_at": "2026-05-22T04:29:58.655752+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\2002-12-24--10-50-17.jpg", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\2002-12-24--10-50-17.jpg", "file_name": "2002-12-24--10-50-17.jpg", "file_stem": "2002-12-24--10-50-17", "file_ext": ".jpg", "file_size": 2559224.0, "mtime": "2003-01-04T10:24:52+00:00", "mtime_ts": 1041675892.0, "ctime": "2003-01-04T10:24:52+00:00", "sha256_file": "211e92636f1ea62b1ee3342ba213f4daeca4ad8f7e7530df00a9d801f055b863", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 10:50:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5537", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:24 10:50:17", "EXIF DateTimeDigitized": "2002:12:24 10:50:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f02f06aba8b8fd7dd575985141f27e9fe2906e3827b30ddac124e3e3f3c1c85e", "phash": "913856a369e356bc", "dhash": "d998b89a9ac8d8d8", "phash_int": -7.982535079658039e+18, "collected_at": "2026-05-22T04:29:58.661746+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 02.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 02.JPG", "file_name": "Mamka Vianoce 02.JPG", "file_stem": "Mamka Vianoce 02", "file_ext": ".jpg", "file_size": 412670.0, "mtime": "2002-12-24T17:54:24+00:00", "mtime_ts": 1040752464.0, "ctime": "2002-12-24T17:54:24+00:00", "sha256_file": "4df07d811a3caf415ab4c3e7561069225ec02e0d499867cdfe6ef20bd7aa87f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:54:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5046", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 19:54:26", "EXIF DateTimeDigitized": "2002:12:24 19:54:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1728, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131331", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "363c631c6af82856c101dba85774131d616348f8cd98367cb452096f939acf79", "phash": "966a6e9372ab4895", "dhash": "c9f5b268ccf06222", "phash_int": -7.608147040925956e+18, "collected_at": "2026-05-22T04:29:58.741180+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 03.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 03.JPG", "file_name": "Mamka Vianoce 03.JPG", "file_stem": "Mamka Vianoce 03", "file_ext": ".jpg", "file_size": 546136.0, "mtime": "2002-12-24T17:54:50+00:00", "mtime_ts": 1040752490.0, "ctime": "2002-12-24T17:54:50+00:00", "sha256_file": "d87c0b1d31a520fddc880ccf7559aaf52a54b02bfe920e15f7d4f9404ce6c526", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 19:54:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5490", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 19:54:52", "EXIF DateTimeDigitized": "2002:12:24 19:54:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 317, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131333", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cc2291db71c0dcf4d6946bdd4b357122d4570dcd2bacef73a4780e1d023125a", "phash": "92ed4932cc6b9c99", "dhash": "b93b3035bcccfdf9", "phash_int": -7.859545292164851e+18, "collected_at": "2026-05-22T04:29:58.751165+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 04.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 04.JPG", "file_name": "Mamka Vianoce 04.JPG", "file_stem": "Mamka Vianoce 04", "file_ext": ".jpg", "file_size": 547479.0, "mtime": "2002-12-24T18:51:22+00:00", "mtime_ts": 1040755882.0, "ctime": "2002-12-24T18:51:22+00:00", "sha256_file": "0fcb6f998ebf64a56441fc138e183a1294bc1debd84fd0742bef26f4fbb81126", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:51:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4985", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:51:23", "EXIF DateTimeDigitized": "2002:12:24 20:51:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 498, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131334", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2136"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8133082cb9427f7c53942e0d9416c69cbbe917fced31f06f29dfc1c722844f12", "phash": "ccb83163734e662d", "dhash": "18b8f470d4e4605a", "phash_int": -3.695149191051451e+18, "collected_at": "2026-05-22T04:29:58.810320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 05.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 05.JPG", "file_name": "Mamka Vianoce 05.JPG", "file_stem": "Mamka Vianoce 05", "file_ext": ".jpg", "file_size": 568208.0, "mtime": "2002-12-24T18:51:34+00:00", "mtime_ts": 1040755894.0, "ctime": "2002-12-24T18:51:34+00:00", "sha256_file": "fd94181dc7634bba1d64a3e72c6b56599b1ae9f33320c3709f472dda1280a421", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6072", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:51:36", "EXIF DateTimeDigitized": "2002:12:24 20:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 144, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131335", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5852"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5164b6e298aee23a53e5a8d6e28d3eddaca8f8dcceced121ca5a49353bacaa5", "phash": "ff47239e84354474", "dhash": "6d6d4c5625311b1b", "phash_int": -5.203370696158299e+16, "collected_at": "2026-05-22T04:29:58.816320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 06.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 06.JPG", "file_name": "Mamka Vianoce 06.JPG", "file_stem": "Mamka Vianoce 06", "file_ext": ".jpg", "file_size": 432257.0, "mtime": "2002-12-24T18:51:52+00:00", "mtime_ts": 1040755912.0, "ctime": "2002-12-24T18:51:52+00:00", "sha256_file": "dc84dffa3a3050631704bfe85a5f2a3f93615d37ddbe4b360a1e0969cc1378bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:51:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4441", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:51:53", "EXIF DateTimeDigitized": "2002:12:24 20:51:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1229, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131336", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "123", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54e5d8bbc8fb8222da3bb97fbc7065e049d19b67b2160d4a15cd7ec30db3e0c2", "phash": "980f70f027d77e0a", "dhash": "97b3f1f1d090909b", "phash_int": -7.489643478530949e+18, "collected_at": "2026-05-22T04:29:58.885487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 07.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 07.JPG", "file_name": "Mamka Vianoce 07.JPG", "file_stem": "Mamka Vianoce 07", "file_ext": ".jpg", "file_size": 508193.0, "mtime": "2002-12-24T18:52:06+00:00", "mtime_ts": 1040755926.0, "ctime": "2002-12-24T18:52:06+00:00", "sha256_file": "02ffc7e5512a2a4bd3f3deb4f60e7903423ecf8848b183cde1b5c9d14da81b88", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:52:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5047", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:52:07", "EXIF DateTimeDigitized": "2002:12:24 20:52:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 428, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131337", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "115", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2075"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0269ddc48902ac9648981d11091b23c02a21569adf2cc23ba658c301dc405049", "phash": "c20d38ff01c4e3cf", "dhash": "72e6e2e4c20ca5c9", "phash_int": -4.463848987756797e+18, "collected_at": "2026-05-22T04:29:58.888488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 08.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 08.JPG", "file_name": "Mamka Vianoce 08.JPG", "file_stem": "Mamka Vianoce 08", "file_ext": ".jpg", "file_size": 480754.0, "mtime": "2002-12-24T18:52:34+00:00", "mtime_ts": 1040755954.0, "ctime": "2002-12-24T18:52:34+00:00", "sha256_file": "3a2a5084bd4f04fc0590ddb73e95fe98def096353e49295ccf129e00fc2d734d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:52:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4872", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:52:35", "EXIF DateTimeDigitized": "2002:12:24 20:52:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 334, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131338", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "120", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1722"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "115340f3672ee56981c7a1f58bafb4f8d1959a31efab94daa8405a72df61bd07", "phash": "cd3877e00e816a9f", "dhash": "b01871716184c264", "phash_int": -3.659042893038786e+18, "collected_at": "2026-05-22T04:29:58.926606+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 09.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 09.JPG", "file_name": "Mamka Vianoce 09.JPG", "file_stem": "Mamka Vianoce 09", "file_ext": ".jpg", "file_size": 624117.0, "mtime": "2002-12-24T18:53:36+00:00", "mtime_ts": 1040756016.0, "ctime": "2002-12-24T18:53:36+00:00", "sha256_file": "0097fd12862d46dc6a3cabc8a372bae78e79a2371ea590e03afa08d4fd7f48e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:53:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6358", "EXIF ExposureTime": "1/125", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:53:38", "EXIF DateTimeDigitized": "2002:12:24 20:53:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 65, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131340", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb582d2b73355a616bbd00742fb218d3e73901ef4aa33ebe5364ff63ec5ab35e", "phash": "d6d21a2ddf6f00e0", "dhash": "549c8864c6d76631", "phash_int": -2.9672804201592914e+18, "collected_at": "2026-05-22T04:29:58.932604+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 10.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 10.JPG", "file_name": "Mamka Vianoce 10.JPG", "file_stem": "Mamka Vianoce 10", "file_ext": ".jpg", "file_size": 613890.0, "mtime": "2002-12-24T18:53:50+00:00", "mtime_ts": 1040756030.0, "ctime": "2002-12-24T18:53:50+00:00", "sha256_file": "99a1c44f9b317cea5f3eb80ae2e9a4c307432632edd548f1904015da564f2cc0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:53:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6668", "EXIF ExposureTime": "1/160", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:53:52", "EXIF DateTimeDigitized": "2002:12:24 20:53:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 61, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131341", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2075"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81713c99b53b2946374153428a8f4275b0863d7fdfa9082e4dcd3bcedf2fc46e", "phash": "cada5ba492ce11e5", "dhash": "b939d9c986e66679", "phash_int": -3.829647770729443e+18, "collected_at": "2026-05-22T04:29:58.982892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 11.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 11.JPG", "file_name": "Mamka Vianoce 11.JPG", "file_stem": "Mamka Vianoce 11", "file_ext": ".jpg", "file_size": 511742.0, "mtime": "2002-12-24T18:54:14+00:00", "mtime_ts": 1040756054.0, "ctime": "2002-12-24T18:54:14+00:00", "sha256_file": "a9c99f061a09ab411c872268a5d17d2d435391f6913c935ebefe9758b0de46a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:54:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5250", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:54:15", "EXIF DateTimeDigitized": "2002:12:24 20:54:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 566, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131342", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "935"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17ceb4c105d6c7f3c0ab8c8095d671d6732e8148cd9d8e01e49a9acaf9851ea4", "phash": "8c06b273735a7353", "dhash": "bdf670b0b0f4702a", "phash_int": -8.356795849613086e+18, "collected_at": "2026-05-22T04:29:58.990895+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 12.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 12.JPG", "file_name": "Mamka Vianoce 12.JPG", "file_stem": "Mamka Vianoce 12", "file_ext": ".jpg", "file_size": 500391.0, "mtime": "2002-12-24T18:54:40+00:00", "mtime_ts": 1040756080.0, "ctime": "2002-12-24T18:54:40+00:00", "sha256_file": "fa3a48630e75032850cc319004aa790a576fd64fc9f57900cc28e81730e1ff98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:54:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4263", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:54:42", "EXIF DateTimeDigitized": "2002:12:24 20:54:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 898, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131343", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "113", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "858"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "888332d0dcb75b9b118fd9d480b4e71f33cd842aeffa61f9a60da3d659e3d0d6", "phash": "cece3338597330a9", "dhash": "6960e4e0e0e0f0e0", "phash_int": -3.5448395395820954e+18, "collected_at": "2026-05-22T04:29:59.024894+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 13.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 13.JPG", "file_name": "Mamka Vianoce 13.JPG", "file_stem": "Mamka Vianoce 13", "file_ext": ".jpg", "file_size": 613214.0, "mtime": "2002-12-24T18:58:50+00:00", "mtime_ts": 1040756330.0, "ctime": "2002-12-24T18:58:50+00:00", "sha256_file": "bfe48ed5399be836c91467a3ed24a9db981c3ed7b38beeabe3a0732842445998", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:58:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6191", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:58:51", "EXIF DateTimeDigitized": "2002:12:24 20:58:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 42, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131344", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5297"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c1ef09c8274d8ce4587d49eafcf59c4ffb7ead4bcefa964eb304891c5333581", "phash": "f561a3707c9d960a", "dhash": "06c64222260c7a1c", "phash_int": -7.651507581539067e+17, "collected_at": "2026-05-22T04:29:59.051895+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 14.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-24\\Mamka Vianoce 14.JPG", "file_name": "Mamka Vianoce 14.JPG", "file_stem": "Mamka Vianoce 14", "file_ext": ".jpg", "file_size": 425952.0, "mtime": "2002-12-24T18:59:04+00:00", "mtime_ts": 1040756344.0, "ctime": "2002-12-24T18:59:04+00:00", "sha256_file": "095e76078eb7dd6e3306e7d526219e8d72555ff49c0250cfe35d32e4b6177f53", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:24 20:59:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4699", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:24 20:59:05", "EXIF DateTimeDigitized": "2002:12:24 20:59:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131345", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2964"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7530c3aa246514a6cf3c34b93c0738dc86cae2347d05f31a97d43cf18b0658af", "phash": "ff40a39168b8bcb2", "dhash": "ce4a6233044e5c5c", "phash_int": -5.386335060592315e+16, "collected_at": "2026-05-22T04:29:59.062040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\Canon PowerShot A40 27.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\Canon PowerShot A40 27.JPG", "file_name": "Canon PowerShot A40 27.JPG", "file_stem": "Canon PowerShot A40 27", "file_ext": ".jpg", "file_size": 474233.0, "mtime": "2002-12-25T20:22:42+00:00", "mtime_ts": 1040847762.0, "ctime": "2002-12-25T20:22:42+00:00", "sha256_file": "3d729b461751b33239873f8bbaf61b08acfb30917c7244c0852f6bf8d3d4facb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:22:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4634", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 22:22:44", "EXIF DateTimeDigitized": "2002:12:25 22:22:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 155, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131373", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5758c118e13115327d38ed0ef990999db984ddbb331967cd5f1deb9301539dc8", "phash": "e19cda5f30294e56", "dhash": "00e06f96c6c1c28f", "phash_int": -2.189635216444142e+18, "collected_at": "2026-05-22T04:29:59.089128+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\Canon PowerShot A40 28.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\Canon PowerShot A40 28.JPG", "file_name": "Canon PowerShot A40 28.JPG", "file_stem": "Canon PowerShot A40 28", "file_ext": ".jpg", "file_size": 520247.0, "mtime": "2002-12-25T20:23:00+00:00", "mtime_ts": 1040847780.0, "ctime": "2002-12-25T20:23:00+00:00", "sha256_file": "959bac0615a8e2adf2b07750d32fc9c1e021ef9619ce9eb4d488b3d944f8c52c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:23:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4453", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 22:23:02", "EXIF DateTimeDigitized": "2002:12:25 22:23:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 117, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131374", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4471eed497e88c1f7e8824ca4bead0227ee4819b9528d0aac956c347a024efd9", "phash": "f09fc9433a2a6b62", "dhash": "00c29c2c0cc4849f", "phash_int": -1.1079456927340023e+18, "collected_at": "2026-05-22T04:29:59.099128+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1346.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1346.JPG", "file_name": "IMG_1346.JPG", "file_stem": "IMG_1346", "file_ext": ".jpg", "file_size": 548776.0, "mtime": "2002-12-25T09:29:02+00:00", "mtime_ts": 1040808542.0, "ctime": "2002-12-25T09:29:02+00:00", "sha256_file": "98ea570ca794355dc88beccbbdfd9382a95a56235b7bae919f055b73c612a355", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 10:29:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6242", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 10:29:04", "EXIF DateTimeDigitized": "2002:12:25 10:29:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 28, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131346", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2178"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39e1b8cf07eb320a40ec77f19f0f6526ab39e19d32fd530b47b4b4eb87580735", "phash": "aa9e5ee029578f18", "dhash": "a929395b9b87898b", "phash_int": -6.152375724082229e+18, "collected_at": "2026-05-22T04:29:59.151208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1347.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1347.JPG", "file_name": "IMG_1347.JPG", "file_stem": "IMG_1347", "file_ext": ".jpg", "file_size": 559696.0, "mtime": "2002-12-25T10:56:26+00:00", "mtime_ts": 1040813786.0, "ctime": "2002-12-25T10:56:26+00:00", "sha256_file": "688142f3bb1a9d3df6f5ce15fa528119124b1e19b1a87e13f340cbbd4f7c8862", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:56:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:56:28", "EXIF DateTimeDigitized": "2002:12:25 11:56:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 74, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131347", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1885855decc2d8e963cf857dcd619958a554a1edaaa72dc9cbf1fe198eedfed7", "phash": "b4f62448b972d3ac", "dhash": "1c0c8c1cbb50fcde", "phash_int": -5.407094407844146e+18, "collected_at": "2026-05-22T04:29:59.162323+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1348.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1348.JPG", "file_name": "IMG_1348.JPG", "file_stem": "IMG_1348", "file_ext": ".jpg", "file_size": 550162.0, "mtime": "2002-12-25T10:56:36+00:00", "mtime_ts": 1040813796.0, "ctime": "2002-12-25T10:56:36+00:00", "sha256_file": "0fe11bff81cb7386c7ecee020e11707e3af37161701bfac8cf56e349da6dc7ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:56:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5861", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:56:38", "EXIF DateTimeDigitized": "2002:12:25 11:56:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 56, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131348", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "131", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1632"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cd88005d88709e7880fc87bbc30d989e2882dd08d6ddf80865a4e57a1be54c1", "phash": "97b32a6cad62d035", "dhash": "2e0848487664e4de", "phash_int": -7.515616706897457e+18, "collected_at": "2026-05-22T04:29:59.208332+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1349.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1349.JPG", "file_name": "IMG_1349.JPG", "file_stem": "IMG_1349", "file_ext": ".jpg", "file_size": 567242.0, "mtime": "2002-12-25T10:56:54+00:00", "mtime_ts": 1040813814.0, "ctime": "2002-12-25T10:56:54+00:00", "sha256_file": "7ae6da93de576aa8e69a2b466352df5260f2360c0431c02bc1df3e5d30feaca9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:56:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6198", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:56:56", "EXIF DateTimeDigitized": "2002:12:25 11:56:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 55, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131349", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2621"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9146283a4a1c73379d81d92fbd69a6c2e267b0f813570ecd29b30d739b1522a", "phash": "b2f404583857e7ba", "dhash": "2c0c4c1c39199ccc", "phash_int": -5.551807663692061e+18, "collected_at": "2026-05-22T04:29:59.212461+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1350.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1350.JPG", "file_name": "IMG_1350.JPG", "file_stem": "IMG_1350", "file_ext": ".jpg", "file_size": 558191.0, "mtime": "2002-12-25T10:57:08+00:00", "mtime_ts": 1040813828.0, "ctime": "2002-12-25T10:57:08+00:00", "sha256_file": "455efe9e0492962a3171b5d6adace3d0c22ff590a5b5a0b0a7fee3cac75a936d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:57:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6049", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:57:10", "EXIF DateTimeDigitized": "2002:12:25 11:57:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 96, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131350", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "231", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3560"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c3b204c6d683a15b611c1a01cf6431fccd09884229fe92df5a6eade70964ef2", "phash": "b4f62668a85de3a8", "dhash": "2c0c4c1c391194de", "phash_int": -5.407092071668522e+18, "collected_at": "2026-05-22T04:29:59.254831+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1351.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1351.JPG", "file_name": "IMG_1351.JPG", "file_stem": "IMG_1351", "file_ext": ".jpg", "file_size": 530092.0, "mtime": "2002-12-25T10:57:20+00:00", "mtime_ts": 1040813840.0, "ctime": "2002-12-25T10:57:20+00:00", "sha256_file": "d6ce7378b3644928b0a82b2f19e68a67f65601ccec8599818319564184ec9851", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:57:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5916", "EXIF ExposureTime": "1/80", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:57:21", "EXIF DateTimeDigitized": "2002:12:25 11:57:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 127, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131351", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1285"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59b44c8ee5160bc947e7edaae978afba825035b6a1e37a0e501e725914f2802f", "phash": "adc4da23b3c1c89e", "dhash": "c626a68656466bab", "phash_int": -5.925371362838198e+18, "collected_at": "2026-05-22T04:29:59.256832+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1353.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1353.JPG", "file_name": "IMG_1353.JPG", "file_stem": "IMG_1353", "file_ext": ".jpg", "file_size": 598534.0, "mtime": "2002-12-25T10:57:44+00:00", "mtime_ts": 1040813864.0, "ctime": "2002-12-25T10:57:44+00:00", "sha256_file": "4e6f252fee909d260f81887c9656cfb6daeb165eef5744f7423ae759f9f2c211", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:57:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6375", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:57:46", "EXIF DateTimeDigitized": "2002:12:25 11:57:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 75, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131353", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "95", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1d82ea26bd2a9668d163f3cc0bbbb0f4aa61c368d15278167f25fe4db3445d2", "phash": "caee11846edbb162", "dhash": "4545cb63e7dad3d3", "phash_int": -3.8240997730977254e+18, "collected_at": "2026-05-22T04:29:59.302185+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1352.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1352.JPG", "file_name": "IMG_1352.JPG", "file_stem": "IMG_1352", "file_ext": ".jpg", "file_size": 605049.0, "mtime": "2002-12-25T10:57:32+00:00", "mtime_ts": 1040813852.0, "ctime": "2002-12-25T10:57:32+00:00", "sha256_file": "2c9831f46b13044a96b68b5fb8005aa23033460218856177aa2d6da5c342eaa8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:57:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5891", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:57:33", "EXIF DateTimeDigitized": "2002:12:25 11:57:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131352", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "91", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1029"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c406db9cd6d7e59e2f00584b8468bd610c48edee5158fe1529ebe604fd03ceb", "phash": "826866d1d32b7575", "dhash": "81b7277be8d8ecec", "phash_int": -9.049870399823973e+18, "collected_at": "2026-05-22T04:29:59.317183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1355.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1355.JPG", "file_name": "IMG_1355.JPG", "file_stem": "IMG_1355", "file_ext": ".jpg", "file_size": 509193.0, "mtime": "2002-12-25T10:58:04+00:00", "mtime_ts": 1040813884.0, "ctime": "2002-12-25T10:58:04+00:00", "sha256_file": "53640456850d95e363491ffc4ac12677a583c87d47fc97885a59a76b141dab5f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:58:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5541", "EXIF ExposureTime": "1/40", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:58:06", "EXIF DateTimeDigitized": "2002:12:25 11:58:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131355", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "151", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9db7628185137d62a1d185615516382a1b14419cb6742cdcfd6a3bc858a7009d", "phash": "94b67266ad29dac4", "dhash": "ccbcbc32f6bdbcba", "phash_int": -7.730865925017445e+18, "collected_at": "2026-05-22T04:29:59.346657+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1354.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1354.JPG", "file_name": "IMG_1354.JPG", "file_stem": "IMG_1354", "file_ext": ".jpg", "file_size": 599114.0, "mtime": "2002-12-25T10:57:58+00:00", "mtime_ts": 1040813878.0, "ctime": "2002-12-25T10:57:58+00:00", "sha256_file": "8305eacba7be257ceec5e5b3d8b5a6f4ba669ca237c7e5da0124c0b88ca96d24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:58:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5877", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:58:00", "EXIF DateTimeDigitized": "2002:12:25 11:58:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 59, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131354", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "12660"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c640deb01d930698282b64de9be6612d19db20402e8365c015102e27ce45de1", "phash": "b5e40d4bda3551aa", "dhash": "06ae0e9c39589ef8", "phash_int": -5.34012863871993e+18, "collected_at": "2026-05-22T04:29:59.349741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1356.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1356.JPG", "file_name": "IMG_1356.JPG", "file_stem": "IMG_1356", "file_ext": ".jpg", "file_size": 457446.0, "mtime": "2002-12-25T10:58:14+00:00", "mtime_ts": 1040813894.0, "ctime": "2002-12-25T10:58:14+00:00", "sha256_file": "2d8936dc5d430f5ef36aeddf99b621dca317baeab45e3d65e05f0901cda93937", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:58:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5000", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:58:16", "EXIF DateTimeDigitized": "2002:12:25 11:58:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131356", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1285"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e8af9c2e332afe74180ba27da7b113ff40f3dbce5a45a33fd649f8d9a8a4245", "phash": "add92626d1d89e1c", "dhash": "df569292d66f4646", "phash_int": -5.919658287030559e+18, "collected_at": "2026-05-22T04:29:59.392746+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1357.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1357.JPG", "file_name": "IMG_1357.JPG", "file_stem": "IMG_1357", "file_ext": ".jpg", "file_size": 515179.0, "mtime": "2002-12-25T10:58:24+00:00", "mtime_ts": 1040813904.0, "ctime": "2002-12-25T10:58:24+00:00", "sha256_file": "8d9ad2959d66d6e2ac91d8a411b0172ae7fd5b9a2b26c74301f55c65ab105f34", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 11:58:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5147", "EXIF ExposureTime": "1/50", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 11:58:26", "EXIF DateTimeDigitized": "2002:12:25 11:58:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131357", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b2a927fdfbc5192388285896e62d1f82ef12ac3386024f79a558fa2f8fd1d9f", "phash": "9d993963a638c9c3", "dhash": "d0507074ece27b75", "phash_int": -7.090573038164851e+18, "collected_at": "2026-05-22T04:29:59.395747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1358.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1358.JPG", "file_name": "IMG_1358.JPG", "file_stem": "IMG_1358", "file_ext": ".jpg", "file_size": 569185.0, "mtime": "2002-12-25T14:35:22+00:00", "mtime_ts": 1040826922.0, "ctime": "2002-12-25T14:35:22+00:00", "sha256_file": "348f5448e24c44ebb2ecbdd9cd64b72c6fa4922747f31b2bd1916123cc3bc717", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:35:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4851", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:35:24", "EXIF DateTimeDigitized": "2002:12:25 15:35:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131358", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2136"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c680e26a9593f2d4beb7a08f98b5ef9ee9c72bc9fd0cf5966a7e06692a921557", "phash": "8962858cfae9b393", "dhash": "d5e2cb9179f2f2d8", "phash_int": -8.547122302244244e+18, "collected_at": "2026-05-22T04:29:59.439928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1359.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1359.JPG", "file_name": "IMG_1359.JPG", "file_stem": "IMG_1359", "file_ext": ".jpg", "file_size": 556349.0, "mtime": "2002-12-25T14:35:36+00:00", "mtime_ts": 1040826936.0, "ctime": "2002-12-25T14:35:36+00:00", "sha256_file": "f5998b15a01873c1cbecaa814c49b5e62d8d07b757d11ebdcce7cdaf2fbdc961", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:35:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5016", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:35:37", "EXIF DateTimeDigitized": "2002:12:25 15:35:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 161, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131359", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1110"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed9b99d117c29019348beb5c5c2dc5ffa70ab71bbc2ce7e798e215516c6246db", "phash": "89628d8cb2eea397", "dhash": "d1e2cb8d7cf2f6f8", "phash_int": -8.547113507358858e+18, "collected_at": "2026-05-22T04:29:59.441933+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1360.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1360.JPG", "file_name": "IMG_1360.JPG", "file_stem": "IMG_1360", "file_ext": ".jpg", "file_size": 550352.0, "mtime": "2002-12-25T14:35:54+00:00", "mtime_ts": 1040826954.0, "ctime": "2002-12-25T14:35:54+00:00", "sha256_file": "b633a87f5316fa62506e10080fb8b0250d7c157e124fa382e09df1e747bd6f8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:35:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4519", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:35:56", "EXIF DateTimeDigitized": "2002:12:25 15:35:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1030, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131360", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f679a18cd8371911be3f753f0d1303cbbf1a30397d2424d1ecf9c8d0f72b6d8e", "phash": "c5db641907edb621", "dhash": "d2e0e062f872d2e6", "phash_int": -4.1896449696681354e+18, "collected_at": "2026-05-22T04:29:59.498931+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1361.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1361.JPG", "file_name": "IMG_1361.JPG", "file_stem": "IMG_1361", "file_ext": ".jpg", "file_size": 601973.0, "mtime": "2002-12-25T14:38:56+00:00", "mtime_ts": 1040827136.0, "ctime": "2002-12-25T14:38:56+00:00", "sha256_file": "dd7553dfe5362b6d830471d80a31fcd576a0592effb863bb13efa60064f20553", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:38:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5481", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:38:57", "EXIF DateTimeDigitized": "2002:12:25 15:38:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 76, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131361", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5852"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a187adc375b6d29d854784bb90fdc1594efb3758d4ea9dbacaebb5c9d43f6c4f", "phash": "cdcfb742e0819c74", "dhash": "636173b3b1b4f4d6", "phash_int": -3.616470477892904e+18, "collected_at": "2026-05-22T04:29:59.503933+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1363.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1363.JPG", "file_name": "IMG_1363.JPG", "file_stem": "IMG_1363", "file_ext": ".jpg", "file_size": 455098.0, "mtime": "2002-12-25T14:41:56+00:00", "mtime_ts": 1040827316.0, "ctime": "2002-12-25T14:41:56+00:00", "sha256_file": "b2bfd7cef37f163bea577adc67830444a4395db1e954def0bfbcc02d3f994617", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:41:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4341", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:41:57", "EXIF DateTimeDigitized": "2002:12:25 15:41:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 484, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131363", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "113", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7f5568bf698ed8d32e1fae798c433e2ec4651d502742ca8c38c4b01da1850c9", "phash": "83c17a27366b9559", "dhash": "ccc0d0e8eee6e9f9", "phash_int": -8.952740275400502e+18, "collected_at": "2026-05-22T04:29:59.585907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1362.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1362.JPG", "file_name": "IMG_1362.JPG", "file_stem": "IMG_1362", "file_ext": ".jpg", "file_size": 567686.0, "mtime": "2002-12-25T14:39:12+00:00", "mtime_ts": 1040827152.0, "ctime": "2002-12-25T14:39:12+00:00", "sha256_file": "763dd44503f8aa77ec652d734b18cdaa68a622743df807681cb7cc2f3f7bc187", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:39:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5214", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:39:13", "EXIF DateTimeDigitized": "2002:12:25 15:39:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131362", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2136"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1bc48cc2f0cfeb8c6000bb33085af28b1f4f7312cea150f0831072507cd7b90", "phash": "8f4f871668e88d95", "dhash": "6341733329f4fcfc", "phash_int": -8.120123072806614e+18, "collected_at": "2026-05-22T04:29:59.587940+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1364.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1364.JPG", "file_name": "IMG_1364.JPG", "file_stem": "IMG_1364", "file_ext": ".jpg", "file_size": 611007.0, "mtime": "2002-12-25T14:42:10+00:00", "mtime_ts": 1040827330.0, "ctime": "2002-12-25T14:42:10+00:00", "sha256_file": "e058a8bace25382fd92b828549644ced985744fb165d8909bc081c570dae0dc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:42:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4702", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:42:11", "EXIF DateTimeDigitized": "2002:12:25 15:42:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 753, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131364", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1101"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83fef5211b9e13e0765fb2a774ba0c1b95ca702d968c692c3cefe33f831d0a4a", "phash": "83567d7a46a5266a", "dhash": "70f8fcf2e9edf2fb", "phash_int": -8.982854442619165e+18, "collected_at": "2026-05-22T04:29:59.633051+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1365.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1365.JPG", "file_name": "IMG_1365.JPG", "file_stem": "IMG_1365", "file_ext": ".jpg", "file_size": 484576.0, "mtime": "2002-12-25T14:42:54+00:00", "mtime_ts": 1040827374.0, "ctime": "2002-12-25T14:42:54+00:00", "sha256_file": "fae446f68063a8b8339eed19f8ee5081264d3f28aed810d940a1dbd3eda734f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:42:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4127", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:42:56", "EXIF DateTimeDigitized": "2002:12:25 15:42:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 392, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131365", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "752"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92ad01bfba089d5130603b2013f9962dfabba327bb15189188e206e8685522d1", "phash": "946b7bc3d8a9a2b0", "dhash": "1970ecb0b8f8fab0", "phash_int": -7.751966252504342e+18, "collected_at": "2026-05-22T04:29:59.638049+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1367.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1367.JPG", "file_name": "IMG_1367.JPG", "file_stem": "IMG_1367", "file_ext": ".jpg", "file_size": 610728.0, "mtime": "2002-12-25T14:43:16+00:00", "mtime_ts": 1040827396.0, "ctime": "2002-12-25T14:43:16+00:00", "sha256_file": "21fe0d27e0d75baa74abde7fac0af0469ccfeeabe9370b1c872af8aeb44bdee4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:43:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4529", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:43:18", "EXIF DateTimeDigitized": "2002:12:25 15:43:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 339, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131367", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fcf278dcee8779a7ccb97f5f1c6bbbf5a26ec3bf8ace4ea26aeb172d260bdacf", "phash": "80593e1fcff6a0a4", "dhash": "18989494cecce4e6", "phash_int": -9.198252457573573e+18, "collected_at": "2026-05-22T04:29:59.693962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1366.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1366.JPG", "file_name": "IMG_1366.JPG", "file_stem": "IMG_1366", "file_ext": ".jpg", "file_size": 574338.0, "mtime": "2002-12-25T14:43:06+00:00", "mtime_ts": 1040827386.0, "ctime": "2002-12-25T14:43:06+00:00", "sha256_file": "5b54b924d44ef3c853ff418e83f6a361daba9898d47db825783bf7fc2508a38e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 15:43:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4565", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 15:43:07", "EXIF DateTimeDigitized": "2002:12:25 15:43:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 422, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131366", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1101"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f55a97bd85ffdb8478332c7ad8c8dd3c16e19ab78df2d02462535c176f30917", "phash": "85537d70d894e1a7", "dhash": "9448cec4c4d6e6f6", "phash_int": -8.839583719974707e+18, "collected_at": "2026-05-22T04:29:59.702932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1368.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1368.JPG", "file_name": "IMG_1368.JPG", "file_stem": "IMG_1368", "file_ext": ".jpg", "file_size": 489974.0, "mtime": "2002-12-25T15:48:20+00:00", "mtime_ts": 1040831300.0, "ctime": "2002-12-25T15:48:20+00:00", "sha256_file": "b2559e25dfa980c14916a08bf16fc21a61bcbb12ca588bb1d88d60cbc9999f83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 16:48:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4504", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 16:48:22", "EXIF DateTimeDigitized": "2002:12:25 16:48:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 901, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131368", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7cfc67e88c58aeea671ddc5012093de1b349cfe8c6b72d4d91b54c5e879a20ad", "phash": "c9e34c9b630ef4c2", "dhash": "93939151d838f0a2", "phash_int": -3.8991886221071514e+18, "collected_at": "2026-05-22T04:29:59.740932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1369.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1369.JPG", "file_name": "IMG_1369.JPG", "file_stem": "IMG_1369", "file_ext": ".jpg", "file_size": 394844.0, "mtime": "2002-12-25T15:49:00+00:00", "mtime_ts": 1040831340.0, "ctime": "2002-12-25T15:49:00+00:00", "sha256_file": "472eb61dea98728945333884e8f403d04516dfe53468ad9a102aebc9ad175b6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 16:49:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3960", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 16:49:02", "EXIF DateTimeDigitized": "2002:12:25 16:49:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131369", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26054bf4c43def183395a0dede83d55c0117b1c208eff2fa7089376dd22cc346", "phash": "b093b3734c0d8ea7", "dhash": "d98ccdb796979686", "phash_int": -5.7230333936792e+18, "collected_at": "2026-05-22T04:29:59.772937+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1370.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1370.JPG", "file_name": "IMG_1370.JPG", "file_stem": "IMG_1370", "file_ext": ".jpg", "file_size": 441881.0, "mtime": "2002-12-25T21:22:02+00:00", "mtime_ts": 1040851322.0, "ctime": "2002-12-25T21:22:02+00:00", "sha256_file": "3c83b6752326bbd3e673fac092a742555c686a9b51af1a8ba6d3bdb5c94f1b46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:22:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4291", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 22:22:03", "EXIF DateTimeDigitized": "2002:12:25 22:22:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 509, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131370", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2d4a0fc49514e045ac4c6c8e7d57a48d8764bfa059694c8fe1ca675d8a1b804", "phash": "aad4d4b3c6cf2c60", "dhash": "ece3f3e3c3dbe3e3", "phash_int": -6.137046523599443e+18, "collected_at": "2026-05-22T04:29:59.803110+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1371.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1371.JPG", "file_name": "IMG_1371.JPG", "file_stem": "IMG_1371", "file_ext": ".jpg", "file_size": 497718.0, "mtime": "2002-12-25T21:22:16+00:00", "mtime_ts": 1040851336.0, "ctime": "2002-12-25T21:22:16+00:00", "sha256_file": "c6017938f7dd148d3347cb6e89949935d1d8c8135602326b95cfb3af1e2b9526", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:22:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4844", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 22:22:18", "EXIF DateTimeDigitized": "2002:12:25 22:22:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 634, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131371", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2158"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1be8d5848b47a21f94c5fa8b55e23ea55428742de6b92173b5f94d229d32fc06", "phash": "c6cd79b0d3cf1e00", "dhash": "90e3e4c4cdb537f3", "phash_int": -4.1215042835993646e+18, "collected_at": "2026-05-22T04:29:59.814204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1372.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1372.JPG", "file_name": "IMG_1372.JPG", "file_stem": "IMG_1372", "file_ext": ".jpg", "file_size": 537110.0, "mtime": "2002-12-25T21:22:30+00:00", "mtime_ts": 1040851350.0, "ctime": "2002-12-25T21:22:30+00:00", "sha256_file": "1a0db1bb7325e7e6f6628f75cbba2102b2458763f2b71e0017e56c5c2fe69d9f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:22:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5076", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:25 22:22:31", "EXIF DateTimeDigitized": "2002:12:25 22:22:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 308, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131372", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1790"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a9b4dbf3a40f7163740d2a62ec49881371046d6f39aeac4f13b2cec53cfd25d", "phash": "c4cd7978c2cf5f00", "dhash": "92f3e0c4cd3797e3", "phash_int": -4.265619712478585e+18, "collected_at": "2026-05-22T04:29:59.857452+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1373.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1373.JPG", "file_name": "IMG_1373.JPG", "file_stem": "IMG_1373", "file_ext": ".jpg", "file_size": 414193.0, "mtime": "2003-01-04T10:58:32+00:00", "mtime_ts": 1041677912.0, "ctime": "2003-01-04T10:58:32+00:00", "sha256_file": "3266510b99093794a341cb4048c58e31909877bc54def4fb887ee91ab7bac3f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:22:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6658", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:25 22:22:44", "EXIF DateTimeDigitized": "2002:12:25 22:22:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131373", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be2cc149bf68cbd503528d749e25cbd970490de26f99939a5b144dbfa7a8cda2", "phash": "b5e69b2e2386268b", "dhash": "66364ecece46b616", "phash_int": -5.339409685734349e+18, "collected_at": "2026-05-22T04:29:59.859454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-25\\IMG_1374.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-25\\IMG_1374.JPG", "file_name": "IMG_1374.JPG", "file_stem": "IMG_1374", "file_ext": ".jpg", "file_size": 455284.0, "mtime": "2003-01-04T10:58:34+00:00", "mtime_ts": 1041677914.0, "ctime": "2003-01-04T10:58:34+00:00", "sha256_file": "96132ecf44b2f49525ca2c45053704f12ddd1b585cf1b683712801c2281b5853", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:25 22:23:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6482", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:25 22:23:02", "EXIF DateTimeDigitized": "2002:12:25 22:23:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1131374", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09a02214b60756844121a34bc74cb0cde50c3f61dda1b3f67143652612c3bd4d", "phash": "b5e6da9c3b150a25", "dhash": "3646c6c65696161a", "phash_int": -5.339339943660156e+18, "collected_at": "2026-05-22T04:29:59.938810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1375.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1375.JPG", "file_name": "IMG_1375.JPG", "file_stem": "IMG_1375", "file_ext": ".jpg", "file_size": 1200842.0, "mtime": "2002-12-26T11:24:24+00:00", "mtime_ts": 1040901864.0, "ctime": "2002-12-26T11:24:24+00:00", "sha256_file": "80fa55f2a194eaefec9119dbc4f08d3cd31b65c6a96230418711fe44f03d2884", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:24:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5774", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:24:25", "EXIF DateTimeDigitized": "2002:12:26 12:24:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131375", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e4a5d60fc608a33273074fbc8f9fdeb5b7d1412c4eee2b71615fb931606cdd8", "phash": "b588e3586d56b14e", "dhash": "fefce646a69ccc4e", "phash_int": -5.365788987080921e+18, "collected_at": "2026-05-22T04:29:59.945908+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1377.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1377.JPG", "file_name": "IMG_1377.JPG", "file_stem": "IMG_1377", "file_ext": ".jpg", "file_size": 582151.0, "mtime": "2002-12-26T11:24:34+00:00", "mtime_ts": 1040901874.0, "ctime": "2002-12-26T11:24:34+00:00", "sha256_file": "f04f1e19436faaf02ed03cf1225f8f6c565ce75388bbf1ade28d9e9114d73549", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:24:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4073", "EXIF ExposureTime": "1/400", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:24:36", "EXIF DateTimeDigitized": "2002:12:26 12:24:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131377", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "345", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fbd98543ec7c2f6948fb08b9d5f1ec1341567c9abfa7b58f0478a4ec6965594", "phash": "c029bddf2a70d4c9", "dhash": "80e09085e1e880a4", "phash_int": -4.599936778194857e+18, "collected_at": "2026-05-22T04:30:00.040697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1376.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1376.JPG", "file_name": "IMG_1376.JPG", "file_stem": "IMG_1376", "file_ext": ".jpg", "file_size": 1194295.0, "mtime": "2002-12-26T11:24:26+00:00", "mtime_ts": 1040901866.0, "ctime": "2002-12-26T11:24:26+00:00", "sha256_file": "dd8ecbdcf349f1c699f50fb9362ae332ed6239eb5007439ce7ac52dd0782121c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:24:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5792", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:24:28", "EXIF DateTimeDigitized": "2002:12:26 12:24:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131376", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "7915"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51a497d53858c77bea6a1f724cc008895c6a728a99deaa73bfef106222767cd4", "phash": "b58ae3582d56b14e", "dhash": "eeece646a69ccc4e", "phash_int": -5.365226038201242e+18, "collected_at": "2026-05-22T04:30:00.059795+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1378.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1378.JPG", "file_name": "IMG_1378.JPG", "file_stem": "IMG_1378", "file_ext": ".jpg", "file_size": 420787.0, "mtime": "2002-12-26T11:26:22+00:00", "mtime_ts": 1040901982.0, "ctime": "2002-12-26T11:26:22+00:00", "sha256_file": "05c57442f457c083137670c4dc9624aa659eb44406495b55d7fce33b407d4ae2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:26:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2928", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:26:23", "EXIF DateTimeDigitized": "2002:12:26 12:26:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131378", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8f2ffa9137d10cb7bd12c83ebf1e4b71e51677aef28fd4d0182cb154efb1bc3", "phash": "8670f90f56e08d5b", "dhash": "d0f0a2c56969d5e3", "phash_int": -8.759227430958233e+18, "collected_at": "2026-05-22T04:30:00.089795+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1379.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1379.JPG", "file_name": "IMG_1379.JPG", "file_stem": "IMG_1379", "file_ext": ".jpg", "file_size": 429957.0, "mtime": "2002-12-26T11:26:42+00:00", "mtime_ts": 1040902002.0, "ctime": "2002-12-26T11:26:42+00:00", "sha256_file": "4e8aeade54e1142a17b3227cac5c9ec689f554a8d749f43a4dc13e497ee191e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:26:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3037", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:26:44", "EXIF DateTimeDigitized": "2002:12:26 12:26:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131379", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "346", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da62e42820b4c275683e5792b9428046af9da19134cd799dda7f9e744d27ea93", "phash": "c171beae4875b780", "dhash": "d0e5d892d3fe8cf9", "phash_int": -4.5076120962718945e+18, "collected_at": "2026-05-22T04:30:00.157798+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1380.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1380.JPG", "file_name": "IMG_1380.JPG", "file_stem": "IMG_1380", "file_ext": ".jpg", "file_size": 788543.0, "mtime": "2002-12-26T11:28:10+00:00", "mtime_ts": 1040902090.0, "ctime": "2002-12-26T11:28:10+00:00", "sha256_file": "e10ed5f1e1b4e0ee92a17b89a3adbe79ccd982a6400b735ec6fc7f94c1e74ea4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:28:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5434", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:28:12", "EXIF DateTimeDigitized": "2002:12:26 12:28:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "1623/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131380", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "203", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "14528"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ccfe2aa45d8005bd234fe826c70041fda9e816f1e6e97249e22eca80f3787c6", "phash": "a956f229d6b04b36", "dhash": "1c050b8eb7b39f0d", "phash_int": -6.244537571793155e+18, "collected_at": "2026-05-22T04:30:00.165800+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1381.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1381.JPG", "file_name": "IMG_1381.JPG", "file_stem": "IMG_1381", "file_ext": ".jpg", "file_size": 549140.0, "mtime": "2002-12-26T11:30:44+00:00", "mtime_ts": 1040902244.0, "ctime": "2002-12-26T11:30:44+00:00", "sha256_file": "0646238c99e342c2811c900aa4a166186d674a9377f11264c5179de13c3c37b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:30:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3402", "EXIF ExposureTime": "1/320", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:30:45", "EXIF DateTimeDigitized": "2002:12:26 12:30:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131381", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "165f258698f28c13f4f23d1c03a93404725bc31c559df9110e8737cc12c23333", "phash": "f21bad5852a6f912", "dhash": "fcf2edcd9914e50c", "phash_int": -1.0010158973044017e+18, "collected_at": "2026-05-22T04:30:00.240802+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1382.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1382.JPG", "file_name": "IMG_1382.JPG", "file_stem": "IMG_1382", "file_ext": ".jpg", "file_size": 796223.0, "mtime": "2002-12-26T11:30:54+00:00", "mtime_ts": 1040902254.0, "ctime": "2002-12-26T11:30:54+00:00", "sha256_file": "f064697a1286e279e51add0a8ca4bedf8d155551175d9e4f1f6398c74d8e3f8a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:30:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5118", "EXIF ExposureTime": "1/640", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:30:56", "EXIF DateTimeDigitized": "2002:12:26 12:30:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131382", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1785585280d640e582e523aa369611e3f9bb9a5a634f3780867a488eed5a3624", "phash": "a0759847dbcc0ddc", "dhash": "cc8c160f8fcfabbb", "phash_int": -6.884429020968252e+18, "collected_at": "2026-05-22T04:30:00.247882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1383.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1383.JPG", "file_name": "IMG_1383.JPG", "file_stem": "IMG_1383", "file_ext": ".jpg", "file_size": 843366.0, "mtime": "2002-12-26T11:31:26+00:00", "mtime_ts": 1040902286.0, "ctime": "2002-12-26T11:31:26+00:00", "sha256_file": "9aa5b00e36ff25a3cd38775b50ef0ad6f0ceb54fcc843c11ad5362a6464b0ff3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:31:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5491", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:31:28", "EXIF DateTimeDigitized": "2002:12:26 12:31:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131383", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "15c6fde5ec5b08f45130055e23ac5c433bf1a2bd1ee36a0095315b6533a65ccd", "phash": "b86066790b249ff3", "dhash": "1797f9333b3b3f3b", "phash_int": -5.161012502902563e+18, "collected_at": "2026-05-22T04:30:00.303111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1384.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1384.JPG", "file_name": "IMG_1384.JPG", "file_stem": "IMG_1384", "file_ext": ".jpg", "file_size": 556169.0, "mtime": "2002-12-26T11:31:36+00:00", "mtime_ts": 1040902296.0, "ctime": "2002-12-26T11:31:36+00:00", "sha256_file": "fd87ee56d4ee80aa49bbc6a82d19aa35daf4d4243b654c65212857d36a439111", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:31:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4554", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:31:37", "EXIF DateTimeDigitized": "2002:12:26 12:31:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "249519/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131384", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "358", "MakerNote TargetAperture": "244", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f4df5aa7924d83a1bbe69c227bc85ff964dba7ef71ef374059571d0fcf5fc8c", "phash": "c4524d268ba5f55b", "dhash": "d8b89cfcfde666d3", "phash_int": -4.300289866238397e+18, "collected_at": "2026-05-22T04:30:00.307227+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1385.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1385.JPG", "file_name": "IMG_1385.JPG", "file_stem": "IMG_1385", "file_ext": ".jpg", "file_size": 754227.0, "mtime": "2002-12-26T11:32:18+00:00", "mtime_ts": 1040902338.0, "ctime": "2002-12-26T11:32:18+00:00", "sha256_file": "2e830d58ebe52d5ccfa17b5beb0302627515539c024a181863c0433525354ba3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:32:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5125", "EXIF ExposureTime": "1/125", "EXIF FNumber": "10", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:32:19", "EXIF DateTimeDigitized": "2002:12:26 12:32:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "108853/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131385", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "213", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed8a8f909efc5aea661f14ae98663e963c2a3411b76d3dd6cb84df1768be077f", "phash": "b1769a01ff18ef10", "dhash": "1a1e1e1fcedfb9f9", "phash_int": -5.65916654837898e+18, "collected_at": "2026-05-22T04:30:00.369409+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1386.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1386.JPG", "file_name": "IMG_1386.JPG", "file_stem": "IMG_1386", "file_ext": ".jpg", "file_size": 778164.0, "mtime": "2002-12-26T11:32:28+00:00", "mtime_ts": 1040902348.0, "ctime": "2002-12-26T11:32:28+00:00", "sha256_file": "ca5d1e31fab6f15a68a04a13ac47d6586eb743e0597a000ac7601befd1896bc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:32:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5019", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:32:30", "EXIF DateTimeDigitized": "2002:12:26 12:32:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131386", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79f65b1e6e37d897391cbc6ed6b59ad07a9c3e53bfca3d88c83ef6ed0c693e1c", "phash": "a279934ef10b6d85", "dhash": "cc8e8f8f0767eddd", "phash_int": -6.739193400122447e+18, "collected_at": "2026-05-22T04:30:00.373404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1389.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1389.JPG", "file_name": "IMG_1389.JPG", "file_stem": "IMG_1389", "file_ext": ".jpg", "file_size": 528914.0, "mtime": "2002-12-26T11:33:44+00:00", "mtime_ts": 1040902424.0, "ctime": "2002-12-26T11:33:44+00:00", "sha256_file": "15b90f987b3cbb73f096deb2bec7a4b637be5d9fbc43dc6f687669cb25b4fda5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:33:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4461", "EXIF ExposureTime": "1/250", "EXIF FNumber": "10", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:33:45", "EXIF DateTimeDigitized": "2002:12:26 12:33:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "108853/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131389", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "336", "MakerNote TargetAperture": "213", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c79d1d7521326fd945122798f63acf3d9f3150a4c844b5a3fb70975dd232a26d", "phash": "dc5dd0c2b7364626", "dhash": "30b30e1f07c08480", "phash_int": -2.5676666778152945e+18, "collected_at": "2026-05-22T04:30:00.442510+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1387.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1387.JPG", "file_name": "IMG_1387.JPG", "file_stem": "IMG_1387", "file_ext": ".jpg", "file_size": 860632.0, "mtime": "2002-12-26T11:32:52+00:00", "mtime_ts": 1040902372.0, "ctime": "2002-12-26T11:32:52+00:00", "sha256_file": "fd86858c9694fcd0abb9f8b30222312e579f0925a006dcc2b5722f2eceb8f9fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:32:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5139", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:32:53", "EXIF DateTimeDigitized": "2002:12:26 12:32:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131387", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4bb7f19b4adf83d4bacd58adaa40de982e3474b327d40382a09fc2a62e021db", "phash": "a374934ff00b6d85", "dhash": "9e8f0f0f0f6b79d9", "phash_int": -6.668543176689882e+18, "collected_at": "2026-05-22T04:30:00.450509+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1390.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1390.JPG", "file_name": "IMG_1390.JPG", "file_stem": "IMG_1390", "file_ext": ".jpg", "file_size": 377550.0, "mtime": "2002-12-26T11:33:58+00:00", "mtime_ts": 1040902438.0, "ctime": "2002-12-26T11:33:58+00:00", "sha256_file": "16dd262a2b7105f4ca43b82e9f1fc1cdd59ac66ce66b0a0ab291882ec4366579", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:33:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2970", "EXIF ExposureTime": "1/250", "EXIF FNumber": "10", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:33:59", "EXIF DateTimeDigitized": "2002:12:26 12:33:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "108853/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131390", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "213", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "135fe35f039612168b8bacba2d5d3693a9acc04ee4eaeda79d38a577ee1a4bd0", "phash": "df20b0572f904b37", "dhash": "c0d0e9b14840b817", "phash_int": -2.368699515490252e+18, "collected_at": "2026-05-22T04:30:00.496664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1402.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1402.JPG", "file_name": "IMG_1402.JPG", "file_stem": "IMG_1402", "file_ext": ".jpg", "file_size": 622192.0, "mtime": "2002-12-26T11:47:12+00:00", "mtime_ts": 1040903232.0, "ctime": "2002-12-26T11:47:12+00:00", "sha256_file": "c9667eee92312aa28637a01d6a74e4215cbdda35195e4ba1042d00ba08076924", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:47:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7354", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:47:13", "EXIF DateTimeDigitized": "2002:12:26 12:47:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141402", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2581"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d1f0cff026a30f306778e4be0d1d6cceaac5aeee63ba2c4ed39c3a09a41145f", "phash": "fad1d16a8d56a48a", "dhash": "1090b414650d0dcd", "phash_int": -3.732870385270363e+17, "collected_at": "2026-05-22T04:30:00.535959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1391.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1391.JPG", "file_name": "IMG_1391.JPG", "file_stem": "IMG_1391", "file_ext": ".jpg", "file_size": 1264276.0, "mtime": "2002-12-26T11:37:34+00:00", "mtime_ts": 1040902654.0, "ctime": "2002-12-26T11:37:34+00:00", "sha256_file": "5d4e09d3de551375de4c0b44787a88044be5467925426c8b0a7e2e83b3426b09", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:37:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "9082", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:37:36", "EXIF DateTimeDigitized": "2002:12:26 12:37:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1131391", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3889"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa8c63fb479718b37ec4deb661abdfbf5f20385b1d2d062eca5180c496a6ce0c", "phash": "b90c84abe5dd84cd", "dhash": "a3993210db99998d", "phash_int": -5.112565603141582e+18, "collected_at": "2026-05-22T04:30:00.540058+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1403.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1403.JPG", "file_name": "IMG_1403.JPG", "file_stem": "IMG_1403", "file_ext": ".jpg", "file_size": 721854.0, "mtime": "2002-12-26T11:47:20+00:00", "mtime_ts": 1040903240.0, "ctime": "2002-12-26T11:47:20+00:00", "sha256_file": "2a7beeeb197fe1c1a9418130079a7a467a66d845460a2a76d54f0296190cf5ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:47:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5816", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:47:21", "EXIF DateTimeDigitized": "2002:12:26 12:47:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141403", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d9bc668b95d477ad0f6185153bf613b554e59af0f4fff88de701ff9c6b2dde3", "phash": "d859c59c2d6855ad", "dhash": "3031909137bca9f2", "phash_int": -2.8570352140224865e+18, "collected_at": "2026-05-22T04:30:00.611062+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1404.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1404.JPG", "file_name": "IMG_1404.JPG", "file_stem": "IMG_1404", "file_ext": ".jpg", "file_size": 712613.0, "mtime": "2002-12-26T11:48:10+00:00", "mtime_ts": 1040903290.0, "ctime": "2002-12-26T11:48:10+00:00", "sha256_file": "479bf6f50b5e86d65096ad70b0e8f4b4e907c37598aa07ec6083f578b671db6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:48:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6893", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:48:11", "EXIF DateTimeDigitized": "2002:12:26 12:48:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141404", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "204", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "845"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23e1c91aa62b011b9825e1bdd1124372f754f03c0b966e4ca254f6a7320b774b", "phash": "9d14072bf66233cd", "dhash": "66f0b825333be326", "phash_int": -7.128064424822033e+18, "collected_at": "2026-05-22T04:30:00.623063+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1405.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1405.JPG", "file_name": "IMG_1405.JPG", "file_stem": "IMG_1405", "file_ext": ".jpg", "file_size": 680721.0, "mtime": "2002-12-26T11:48:20+00:00", "mtime_ts": 1040903300.0, "ctime": "2002-12-26T11:48:20+00:00", "sha256_file": "e5fbc8753d43883bb9628bba7c818bb59f5d1193a75c610695f992944f8b918f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:48:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7150", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:48:21", "EXIF DateTimeDigitized": "2002:12:26 12:48:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141405", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "711"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "daef90a9d547f832e7b0964f45232a66c595fb8f364ff1b08bbe04018511db44", "phash": "fa356d7ae04611d2", "dhash": "981e5a9199192973", "phash_int": -4.173070159457767e+17, "collected_at": "2026-05-22T04:30:00.681064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1406.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1406.JPG", "file_name": "IMG_1406.JPG", "file_stem": "IMG_1406", "file_ext": ".jpg", "file_size": 1038927.0, "mtime": "2002-12-26T11:50:48+00:00", "mtime_ts": 1040903448.0, "ctime": "2002-12-26T11:50:48+00:00", "sha256_file": "e910e1e13555917bd8dd78f982acacfb5b836d0ed3de3bf815683b2e2b0664fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:50:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7335", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:50:50", "EXIF DateTimeDigitized": "2002:12:26 12:50:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141406", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8988"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f6cc19ba8c51c373af124713bb4d5c20cd325fb7ad1b743376d776f9fbbd8b81", "phash": "ab12adea950dc61d", "dhash": "cbdbebbb03c3b357", "phash_int": -6.119637720608422e+18, "collected_at": "2026-05-22T04:30:00.702064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1409.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1409.JPG", "file_name": "IMG_1409.JPG", "file_stem": "IMG_1409", "file_ext": ".jpg", "file_size": 628437.0, "mtime": "2002-12-26T11:55:48+00:00", "mtime_ts": 1040903748.0, "ctime": "2002-12-26T11:55:48+00:00", "sha256_file": "efac21267197a501d15800fc66c500718cb5a2abf3cf91a7f0ba6e3127b55f59", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:55:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5624", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:55:50", "EXIF DateTimeDigitized": "2002:12:26 12:55:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141409", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2354"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4785b35c7e7d4cddba0f860fa1d7ff83068d14b16194c50828069f238791e459", "phash": "d51a741c166a74eb", "dhash": "94d0c0e142e686c4", "phash_int": -3.0910305302524426e+18, "collected_at": "2026-05-22T04:30:00.726067+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1412.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1412.JPG", "file_name": "IMG_1412.JPG", "file_stem": "IMG_1412", "file_ext": ".jpg", "file_size": 751739.0, "mtime": "2002-12-26T11:56:22+00:00", "mtime_ts": 1040903782.0, "ctime": "2002-12-26T11:56:22+00:00", "sha256_file": "98b889f9db2691ef121cd0491161912cbf007f39a8ea5676ba82e8a0d6d9c43a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:56:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7026", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:56:23", "EXIF DateTimeDigitized": "2002:12:26 12:56:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[6, 151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141412", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "147", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "895"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "717b256654f9ab470acc283a822025c19a3985e2f4860131fb257899f9557d6e", "phash": "87124ce54e2bd75a", "dhash": "e0ec59d8cc464b61", "phash_int": -8.71381778126577e+18, "collected_at": "2026-05-22T04:30:00.792067+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1411.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1411.JPG", "file_name": "IMG_1411.JPG", "file_stem": "IMG_1411", "file_ext": ".jpg", "file_size": 568999.0, "mtime": "2002-12-26T11:56:08+00:00", "mtime_ts": 1040903768.0, "ctime": "2002-12-26T11:56:08+00:00", "sha256_file": "589f2f85797a99ce8223c3592ecf41f619214838c39bf9944e372beb2dd911bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:56:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6036", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:56:10", "EXIF DateTimeDigitized": "2002:12:26 12:56:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141411", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2216"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98de3d2e5765c24ff55f08b6dece7c86334dae9c58967f0ebc7be18adc6487be", "phash": "e59e81780d796a27", "dhash": "31ccc12226978ac6", "phash_int": -1.9009396400816512e+18, "collected_at": "2026-05-22T04:30:00.796067+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1413.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1413.JPG", "file_name": "IMG_1413.JPG", "file_stem": "IMG_1413", "file_ext": ".jpg", "file_size": 807172.0, "mtime": "2002-12-26T11:56:34+00:00", "mtime_ts": 1040903794.0, "ctime": "2002-12-26T11:56:34+00:00", "sha256_file": "996728d46302075412ea39c189f53ee696826b68e72f3d45ff45174e8a5ee4ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 12:56:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6578", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 12:56:36", "EXIF DateTimeDigitized": "2002:12:26 12:56:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[4, 104, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141413", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1079"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5dbe07407aaa4f78561ecde4513f27f5caca5d0cfc288439d0d5533ef028e876", "phash": "93592f58d99b1c68", "dhash": "51c4b8f890ecec6a", "phash_int": -7.829174418552448e+18, "collected_at": "2026-05-22T04:30:00.831429+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1415.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1415.JPG", "file_name": "IMG_1415.JPG", "file_stem": "IMG_1415", "file_ext": ".jpg", "file_size": 539094.0, "mtime": "2002-12-26T12:02:18+00:00", "mtime_ts": 1040904138.0, "ctime": "2002-12-26T12:02:18+00:00", "sha256_file": "47b386af175dcc099e1a905e626d8bc4df96b9962d3f07de69e1090f30135cc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:02:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5299", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:02:20", "EXIF DateTimeDigitized": "2002:12:26 13:02:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141415", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "207", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "efb85944311dd99497506d0aa94986230725afe7c87343dad25f6f7b75def28d", "phash": "eab831f584c791b2", "dhash": "1f9b89c38343cdc9", "phash_int": -1.5334207425552338e+18, "collected_at": "2026-05-22T04:30:00.836430+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1416.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1416.JPG", "file_name": "IMG_1416.JPG", "file_stem": "IMG_1416", "file_ext": ".jpg", "file_size": 603668.0, "mtime": "2002-12-26T12:02:28+00:00", "mtime_ts": 1040904148.0, "ctime": "2002-12-26T12:02:28+00:00", "sha256_file": "15f7a8c2a979547644ad499428d9d0d7c6cca07142318ae1f58aa405b3b468c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:02:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5995", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:02:30", "EXIF DateTimeDigitized": "2002:12:26 13:02:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141416", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "184", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc44961c53aac766ed512c2cb2b4d5509c7d3b90471dbe7972e76d13e5c01809", "phash": "ed9f18e0e0ac3d31", "dhash": "373f37078f070717", "phash_int": -1.3243124113025114e+18, "collected_at": "2026-05-22T04:30:00.872434+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1417.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1417.JPG", "file_name": "IMG_1417.JPG", "file_stem": "IMG_1417", "file_ext": ".jpg", "file_size": 1026908.0, "mtime": "2002-12-26T12:03:58+00:00", "mtime_ts": 1040904238.0, "ctime": "2002-12-26T12:03:58+00:00", "sha256_file": "3d9c90f2b1dbb9624c7e64c4c51b973270a0720ca486c7b7cb59b3a70c312f4c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:03:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6191", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:03:59", "EXIF DateTimeDigitized": "2002:12:26 13:03:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141417", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "739"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d68851759c4f7dbd874648c0b78f770dbcd0278d4d9b31e538d036235308f153", "phash": "d1f7e19ad1125352", "dhash": "0882c0c008208082", "phash_int": -3.3169345454862285e+18, "collected_at": "2026-05-22T04:30:00.883432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1418.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1418.JPG", "file_name": "IMG_1418.JPG", "file_stem": "IMG_1418", "file_ext": ".jpg", "file_size": 483565.0, "mtime": "2002-12-26T12:04:18+00:00", "mtime_ts": 1040904258.0, "ctime": "2002-12-26T12:04:18+00:00", "sha256_file": "d19c9250c017285c0891b328fc9b2ef78d90b258f089c05deafe81e9dc650115", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:04:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5727", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:04:19", "EXIF DateTimeDigitized": "2002:12:26 13:04:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141418", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "824"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d56447330dfb9371e0cd4a8b9016a7ca1b8e389f6d5a24bfab89dab33a2be220", "phash": "b07863c915e4a7ab", "dhash": "9219ad34b9f6f6ce", "phash_int": -5.730720810522073e+18, "collected_at": "2026-05-22T04:30:00.940668+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1419.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1419.JPG", "file_name": "IMG_1419.JPG", "file_stem": "IMG_1419", "file_ext": ".jpg", "file_size": 527180.0, "mtime": "2002-12-26T12:04:28+00:00", "mtime_ts": 1040904268.0, "ctime": "2002-12-26T12:04:28+00:00", "sha256_file": "a53b4dad1a55e0d7a569e3cb353443825ed0f6c2a8e02cb0e1f5a695975ab991", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:04:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6243", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:04:30", "EXIF DateTimeDigitized": "2002:12:26 13:04:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141419", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "208", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "671"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b7b0168fb8e68b8292801e14a3ad023e37fb099ed67b0ecf5917f9f4fa39279", "phash": "9667ce5b85a5c50c", "dhash": "6d6d76de7d99b9ac", "phash_int": -7.608886152939585e+18, "collected_at": "2026-05-22T04:30:00.960669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1420.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1420.JPG", "file_name": "IMG_1420.JPG", "file_stem": "IMG_1420", "file_ext": ".jpg", "file_size": 1017381.0, "mtime": "2002-12-26T12:08:30+00:00", "mtime_ts": 1040904510.0, "ctime": "2002-12-26T12:08:30+00:00", "sha256_file": "1d86cbb51c7a4a46ae90baaeeea72e9c541435dc2f1a2218347df08ac42fd62d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:08:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6306", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:08:32", "EXIF DateTimeDigitized": "2002:12:26 13:08:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141420", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "280", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2254"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7bf287f81c33a04e09db95a8d174786c8708028618dd3f0d88cfc5dcf80cf12", "phash": "931df06c1b63634b", "dhash": "1c74dcf8f2c49c19", "phash_int": -7.845850628702903e+18, "collected_at": "2026-05-22T04:30:00.984670+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1421.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1421.JPG", "file_name": "IMG_1421.JPG", "file_stem": "IMG_1421", "file_ext": ".jpg", "file_size": 1095328.0, "mtime": "2002-12-26T12:08:38+00:00", "mtime_ts": 1040904518.0, "ctime": "2002-12-26T12:08:38+00:00", "sha256_file": "887c64e8fb913c1f34cb9d7dbd4b805a528ea5ad39fb3df20c3fc99dbab11961", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:08:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6612", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:08:39", "EXIF DateTimeDigitized": "2002:12:26 13:08:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141421", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2662"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "579d3aabc6619b7267e400bedbad6479aed568b06fb3f6d929e339c956ee90b1", "phash": "c5914f38461e3a6f", "dhash": "f0d0f0e6ca136245", "phash_int": -4.210497073501554e+18, "collected_at": "2026-05-22T04:30:01.022743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1422.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1422.JPG", "file_name": "IMG_1422.JPG", "file_stem": "IMG_1422", "file_ext": ".jpg", "file_size": 1051753.0, "mtime": "2002-12-26T12:09:26+00:00", "mtime_ts": 1040904566.0, "ctime": "2002-12-26T12:09:26+00:00", "sha256_file": "51bb3a5137d1db4e5de079f632e598c6ec2ff200596133f59e9703b7535af362", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:09:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6994", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:09:27", "EXIF DateTimeDigitized": "2002:12:26 13:09:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141422", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1572"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22048a268e9198509d33799e125eb5d2c16cd58fc8d42ecbfac66fcde337078f", "phash": "b34df083dc9d6168", "dhash": "5ccd537a8bce9c0c", "phash_int": -5.526496718581047e+18, "collected_at": "2026-05-22T04:30:01.029056+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1423.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1423.JPG", "file_name": "IMG_1423.JPG", "file_stem": "IMG_1423", "file_ext": ".jpg", "file_size": 948284.0, "mtime": "2002-12-26T12:09:36+00:00", "mtime_ts": 1040904576.0, "ctime": "2002-12-26T12:09:36+00:00", "sha256_file": "931af6dced314be8f087758205bbba3d01b2fd535e55a9b921229cadb12b786e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:09:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7032", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:09:37", "EXIF DateTimeDigitized": "2002:12:26 13:09:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141423", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "220", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1572"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e45370b8279109580cca944df4b55ccc77a0069e38e9bdfcc2d61f987d36f560", "phash": "b64bbc830cf40ff0", "dhash": "7c586765cf4f0c1e", "phash_int": -5.310944064509309e+18, "collected_at": "2026-05-22T04:30:01.096246+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1424.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1424.JPG", "file_name": "IMG_1424.JPG", "file_stem": "IMG_1424", "file_ext": ".jpg", "file_size": 569647.0, "mtime": "2002-12-26T12:18:38+00:00", "mtime_ts": 1040905118.0, "ctime": "2002-12-26T12:18:38+00:00", "sha256_file": "5138b0eafcc8f61769c95a3ecf56c541a38ee8d2e7b9dc7738be987cb916a30e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:18:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5720", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:18:39", "EXIF DateTimeDigitized": "2002:12:26 13:18:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141424", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "572"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "996a08fa9d6ead7687c7aa405699b27dc15ed30e01f59b743dcb13bc2bbf3824", "phash": "b11e0e0899c7d65f", "dhash": "d6d64c9e968d8d8e", "phash_int": -5.684090249592449e+18, "collected_at": "2026-05-22T04:30:01.098249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1426.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1426.JPG", "file_name": "IMG_1426.JPG", "file_stem": "IMG_1426", "file_ext": ".jpg", "file_size": 527313.0, "mtime": "2002-12-26T12:18:56+00:00", "mtime_ts": 1040905136.0, "ctime": "2002-12-26T12:18:56+00:00", "sha256_file": "a7781ccfa4018b15bac21ef389019c0b8be36285cc9622c41cb2b6424b946670", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:18:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5832", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:18:57", "EXIF DateTimeDigitized": "2002:12:26 13:18:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141426", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "621"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10b72d6516331d8daa7e9737386fdadb381fe80c93146682bfe2d6fe6aa59dfa", "phash": "a78d1e1a312567d3", "dhash": "fce4ce8e8c8f0e0c", "phash_int": -6.373404799816866e+18, "collected_at": "2026-05-22T04:30:01.184525+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1425.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1425.JPG", "file_name": "IMG_1425.JPG", "file_stem": "IMG_1425", "file_ext": ".jpg", "file_size": 537437.0, "mtime": "2002-12-26T12:18:48+00:00", "mtime_ts": 1040905128.0, "ctime": "2002-12-26T12:18:48+00:00", "sha256_file": "6868feca130ef69bbd81d3b465c3cdbfd2fd47d13bbd4891539c1f7b81276633", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 13:18:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5616", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 13:18:49", "EXIF DateTimeDigitized": "2002:12:26 13:18:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141425", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "531"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52ef23cf7609e5e9f2838366c13ff4eeb2a80d9c46eae8c2bcc94e32509091af", "phash": "e3969c091e2727a7", "dhash": "f8d8cecd8f0e8b0c", "phash_int": -2.0472774176187904e+18, "collected_at": "2026-05-22T04:30:01.187578+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1427.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1427.JPG", "file_name": "IMG_1427.JPG", "file_stem": "IMG_1427", "file_ext": ".jpg", "file_size": 1090742.0, "mtime": "2002-12-26T13:13:16+00:00", "mtime_ts": 1040908396.0, "ctime": "2002-12-26T13:13:16+00:00", "sha256_file": "6aee62c24adf976163e2f46b87995c70d3f0527124765b48af5d33299f5edccc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:13:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6802", "EXIF ExposureTime": "1/160", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:13:17", "EXIF DateTimeDigitized": "2002:12:26 14:13:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141427", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "207", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2490"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20c423d595296dd189b5c019b9d5190cf04ba003d4cdb7e10f338cbda6bce7f2", "phash": "ed1af3a4e318e492", "dhash": "c838b873cfa6274f", "phash_int": -1.361508047815908e+18, "collected_at": "2026-05-22T04:30:01.316276+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1428.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1428.JPG", "file_name": "IMG_1428.JPG", "file_stem": "IMG_1428", "file_ext": ".jpg", "file_size": 865139.0, "mtime": "2002-12-26T13:14:24+00:00", "mtime_ts": 1040908464.0, "ctime": "2002-12-26T13:14:24+00:00", "sha256_file": "1bedfb96662b56d4f03b251f7a0e63b69619ffa88809e1c35c3955057eab4e07", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:14:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5778", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:14:25", "EXIF DateTimeDigitized": "2002:12:26 14:14:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141428", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "215", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1712"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eae7a8a497d73665d693fc088185197c53cae36f5828845a4115cdac2707e36a", "phash": "e300c1f3fc1db0f2", "dhash": "8ed8dc2d0d89c8c8", "phash_int": -2.0894569734488922e+18, "collected_at": "2026-05-22T04:30:01.320277+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1429.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1429.JPG", "file_name": "IMG_1429.JPG", "file_stem": "IMG_1429", "file_ext": ".jpg", "file_size": 628384.0, "mtime": "2002-12-26T13:28:28+00:00", "mtime_ts": 1040909308.0, "ctime": "2002-12-26T13:28:28+00:00", "sha256_file": "4dc8de074744ab9e26610182f3e8fea3b85eaf90398c1eace0767e797292a209", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:28:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5539", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:28:29", "EXIF DateTimeDigitized": "2002:12:26 14:28:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141429", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1712"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33cb2a5f3adabd5c5a31236a53c836632a1d4c002e5296a006ebdce6db35307d", "phash": "a82ca7b951dcb4cc", "dhash": "2f27b331b333f3ef", "phash_int": -6.328498961978183e+18, "collected_at": "2026-05-22T04:30:01.384798+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1430.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1430.JPG", "file_name": "IMG_1430.JPG", "file_stem": "IMG_1430", "file_ext": ".jpg", "file_size": 348251.0, "mtime": "2002-12-26T13:28:38+00:00", "mtime_ts": 1040909318.0, "ctime": "2002-12-26T13:28:38+00:00", "sha256_file": "fc2b208ac7a664b3736310e8b191be63f973e6170d67b78c4f019d3803719d8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:28:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4238", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:28:39", "EXIF DateTimeDigitized": "2002:12:26 14:28:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141430", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1359"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae6c03c4031603fb81b5e2fe7fe2dc2f777159f1d038edf30b2d9afdf22f3399", "phash": "c1667a9d1c4ae6e1", "dhash": "cdcdc5e2f2d2d0f9", "phash_int": -4.5107831615618483e+18, "collected_at": "2026-05-22T04:30:01.387798+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1432.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1432.JPG", "file_name": "IMG_1432.JPG", "file_stem": "IMG_1432", "file_ext": ".jpg", "file_size": 670058.0, "mtime": "2002-12-26T13:32:42+00:00", "mtime_ts": 1040909562.0, "ctime": "2002-12-26T13:32:42+00:00", "sha256_file": "eaaf580687c92d034d14bd2063e26cdb2980d00fa3960eb8cdfc258148327b4c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:32:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6052", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:32:43", "EXIF DateTimeDigitized": "2002:12:26 14:32:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141432", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1929"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46a62075c807640a9b0a9d4e0a3677a493ebd6507d5ee109d4edc71e672c4c17", "phash": "e413b8ed07dfa910", "dhash": "a99989e9c7c72697", "phash_int": -2.0120612803256215e+18, "collected_at": "2026-05-22T04:30:01.487148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1434.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1434.JPG", "file_name": "IMG_1434.JPG", "file_stem": "IMG_1434", "file_ext": ".jpg", "file_size": 563640.0, "mtime": "2002-12-26T13:48:14+00:00", "mtime_ts": 1040910494.0, "ctime": "2002-12-26T13:48:14+00:00", "sha256_file": "fc6d245a6a5f15e267ff05c414593748f169dee56788ddfe2b41eb24b754ac3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:48:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4577", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:48:15", "EXIF DateTimeDigitized": "2002:12:26 14:48:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141434", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e04036e8b6f94108d3cda6725e885899bde6654331cad497129a75f7be63c492", "phash": "9083e7fc797268a8", "dhash": "e0e0d7f8b2b0b6b6", "phash_int": -8.033322238743517e+18, "collected_at": "2026-05-22T04:30:01.492149+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1435.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1435.JPG", "file_name": "IMG_1435.JPG", "file_stem": "IMG_1435", "file_ext": ".jpg", "file_size": 1041327.0, "mtime": "2002-12-26T13:55:32+00:00", "mtime_ts": 1040910932.0, "ctime": "2002-12-26T13:55:32+00:00", "sha256_file": "9ee0d55db616933bb145a07386f819e65fdb1d43756c3737a2511bfa0a1b6936", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:55:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7103", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:55:33", "EXIF DateTimeDigitized": "2002:12:26 14:55:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141435", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1325"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c43cec570d4205acd3af527e9763e82f665633f2f97dc8326fe0e7abb8755b06", "phash": "ffa08446dcdca04f", "dhash": "040d2b3127136026", "phash_int": -2.6876157876199344e+16, "collected_at": "2026-05-22T04:30:01.557349+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1436.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1436.JPG", "file_name": "IMG_1436.JPG", "file_stem": "IMG_1436", "file_ext": ".jpg", "file_size": 846391.0, "mtime": "2002-12-26T13:55:44+00:00", "mtime_ts": 1040910944.0, "ctime": "2002-12-26T13:55:44+00:00", "sha256_file": "c39798ff218a4db7b2b432e968dfa6d7625d0dc98ab586076b57dfc9eb5e63a1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 14:55:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7671", "EXIF ExposureTime": "1/160", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 14:55:46", "EXIF DateTimeDigitized": "2002:12:26 14:55:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141436", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1152"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69c820001f8ab7011b9653250dfc22813aff37e48e07d820f273488376510fb2", "phash": "d39d9b22ee4ccd10", "dhash": "ebd850608989c978", "phash_int": -3.19822958603398e+18, "collected_at": "2026-05-22T04:30:01.565416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-26\\IMG_1437.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-26\\IMG_1437.JPG", "file_name": "IMG_1437.JPG", "file_stem": "IMG_1437", "file_ext": ".jpg", "file_size": 426404.0, "mtime": "2002-12-26T18:20:26+00:00", "mtime_ts": 1040926826.0, "ctime": "2002-12-26T18:20:26+00:00", "sha256_file": "e797df364c964461fb15ac7e3462c8cd2f9b735c9710d61f6f24f603cfd863f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:26 19:20:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4407", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:26 19:20:28", "EXIF DateTimeDigitized": "2002:12:26 19:20:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 497, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141437", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1320"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47953293c34bd4afd0e1c950c1443048fcbfb3cef17a14658ce7552f87148b2c", "phash": "a088dad94bcfcea4", "dhash": "8b9fa6c68e94048d", "phash_int": -6.879007803993764e+18, "collected_at": "2026-05-22T04:30:01.656420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1438.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1438.JPG", "file_name": "IMG_1438.JPG", "file_stem": "IMG_1438", "file_ext": ".jpg", "file_size": 637172.0, "mtime": "2002-12-29T22:48:28+00:00", "mtime_ts": 1041202108.0, "ctime": "2002-12-29T22:48:28+00:00", "sha256_file": "6a66590ff350606420537460b1ae5850f1f0cfa8621777ba7a78103745524a24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:48:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6114", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:48:29", "EXIF DateTimeDigitized": "2002:12:29 23:48:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 34, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141438", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "10036"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf09c02a266b0c52f6c174d479c085f630444cbce7d2bfe6d85548682984666e", "phash": "903c8e539bd53ea4", "dhash": "bab534fa9899ece9", "phash_int": -8.053405543897416e+18, "collected_at": "2026-05-22T04:30:01.666420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1439.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1439.JPG", "file_name": "IMG_1439.JPG", "file_stem": "IMG_1439", "file_ext": ".jpg", "file_size": 467881.0, "mtime": "2002-12-29T22:48:40+00:00", "mtime_ts": 1041202120.0, "ctime": "2002-12-29T22:48:40+00:00", "sha256_file": "d5fc78c389d19a10443fedc5a886e7313f72f8cf7bf826e496ad2c39f82cc5fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:48:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4475", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:48:42", "EXIF DateTimeDigitized": "2002:12:29 23:48:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 100, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141439", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55fac877ff969a8d02bbad0620f0921435625a89d0e5473d5cb3652df0337d8b", "phash": "eda8bce74740132d", "dhash": "b636abc9434836aa", "phash_int": -1.3215987891143918e+18, "collected_at": "2026-05-22T04:30:01.755422+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1440.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1440.JPG", "file_name": "IMG_1440.JPG", "file_stem": "IMG_1440", "file_ext": ".jpg", "file_size": 563423.0, "mtime": "2002-12-29T22:48:54+00:00", "mtime_ts": 1041202134.0, "ctime": "2002-12-29T22:48:54+00:00", "sha256_file": "6dd3fb25121decc9ab513d1d8ca8041fdc8425b2d5785fd5dbbf20b48be1ac27", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:48:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5801", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:48:56", "EXIF DateTimeDigitized": "2002:12:29 23:48:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 117, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141440", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2763e201182b82448dd33817433261b872bf464b81f2c07ca1c1d45e4443889", "phash": "f863c746a592632d", "dhash": "c828133536353032", "phash_int": -5.483756233695961e+17, "collected_at": "2026-05-22T04:30:01.763423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1441.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1441.JPG", "file_name": "IMG_1441.JPG", "file_stem": "IMG_1441", "file_ext": ".jpg", "file_size": 538183.0, "mtime": "2002-12-29T22:49:08+00:00", "mtime_ts": 1041202148.0, "ctime": "2002-12-29T22:49:08+00:00", "sha256_file": "e0379c91d9b61ecc5a18430ecc0d8983c03a2d842613f9a28322ffa50548f433", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:49:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5300", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:49:09", "EXIF DateTimeDigitized": "2002:12:29 23:49:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141441", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2650"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bbfefb7b610287d0b6f53a23c09f0132acf0370eb9159cf256a63b3f103a587e", "phash": "8e292761de9b5538", "dhash": "cbc7f331b1eae9ed", "phash_int": -8.202981944978615e+18, "collected_at": "2026-05-22T04:30:01.796424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1442.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1442.JPG", "file_name": "IMG_1442.JPG", "file_stem": "IMG_1442", "file_ext": ".jpg", "file_size": 567754.0, "mtime": "2002-12-29T22:49:18+00:00", "mtime_ts": 1041202158.0, "ctime": "2002-12-29T22:49:18+00:00", "sha256_file": "0845b07b2c283b1a2a59750a0c7317176d31d0d7222af6071691c6bf1b1f3a7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:49:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6321", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:49:20", "EXIF DateTimeDigitized": "2002:12:29 23:49:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 170, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141442", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1027"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9401dc0092a171f8c514655edffaf57c6b88957d0f2ba51e78ce7fd0311186f4", "phash": "958dcf1f4e41cc64", "dhash": "76aa92d8bc3cdc24", "phash_int": -7.670246856978216e+18, "collected_at": "2026-05-22T04:30:01.829498+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1443.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1443.JPG", "file_name": "IMG_1443.JPG", "file_stem": "IMG_1443", "file_ext": ".jpg", "file_size": 656749.0, "mtime": "2002-12-29T22:49:32+00:00", "mtime_ts": 1041202172.0, "ctime": "2002-12-29T22:49:32+00:00", "sha256_file": "0067dff0c490d97c130dc17d57383bbe0754d61b3606ad50b7d8b5125bfaf140", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:49:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6671", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:49:34", "EXIF DateTimeDigitized": "2002:12:29 23:49:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 79, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141443", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2520"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0793dbd3f50219e9d34d83c8a2c2c769aefd35d030a69dde18ef75eee9e967cb", "phash": "859e9f23f860929b", "dhash": "5a6be4b6ebcec671", "phash_int": -8.818436043505102e+18, "collected_at": "2026-05-22T04:30:01.851498+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1444.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1444.JPG", "file_name": "IMG_1444.JPG", "file_stem": "IMG_1444", "file_ext": ".jpg", "file_size": 558615.0, "mtime": "2002-12-29T22:49:46+00:00", "mtime_ts": 1041202186.0, "ctime": "2002-12-29T22:49:46+00:00", "sha256_file": "4ec8441c6238d745803dc157b280b81bbebaa63766326dd0dfc2eb0bf4efc173", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:49:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5787", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:49:47", "EXIF DateTimeDigitized": "2002:12:29 23:49:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 114, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141444", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "10036"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a52d5b67a4dd4e25702e1d7576d6df7b9ca1cadd756bcd8785388bd7cac7cf6b", "phash": "d4deca23b11d4e0b", "dhash": "45a534149ec6f2e8", "phash_int": -3.1078244381949097e+18, "collected_at": "2026-05-22T04:30:01.873501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-29\\IMG_1445.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-29\\IMG_1445.JPG", "file_name": "IMG_1445.JPG", "file_stem": "IMG_1445", "file_ext": ".jpg", "file_size": 543996.0, "mtime": "2002-12-29T22:50:00+00:00", "mtime_ts": 1041202200.0, "ctime": "2002-12-29T22:50:00+00:00", "sha256_file": "3949603fc632302a51e9d62408e07a7ffa32d26bc71ec14c94f151477a589a5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:29 23:50:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5669", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:29 23:50:01", "EXIF DateTimeDigitized": "2002:12:29 23:50:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 40, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141445", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1788"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a32bc79cbb411b9402a9d7cbf4d0fe482d49aa105aa189527aba668d91b511dc", "phash": "f2da9beca24cf060", "dhash": "09199d0da7a6e5c9", "phash_int": -9.472733309705297e+17, "collected_at": "2026-05-22T04:30:01.927504+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0001.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0001.JPG", "file_name": "IMG_0001.JPG", "file_stem": "IMG_0001", "file_ext": ".jpg", "file_size": 2479842.0, "mtime": "2003-01-04T10:51:54+00:00", "mtime_ts": 1041677514.0, "ctime": "2003-01-04T10:51:54+00:00", "sha256_file": "396634dc5b4e7e4dcc7fdc0137bc52af672b7382a7480b291585abb73a96b07e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:20:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9761", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 20:20:23", "EXIF DateTimeDigitized": "2002:12:31 20:20:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a035934e78984fdcbf909e2ae8eb0d903a8bd807bd5f079d9c2cf491a94eadef", "phash": "85d45ceda392cc2b", "dhash": "e414b8c8d3629900", "phash_int": -8.803309195881166e+18, "collected_at": "2026-05-22T04:30:02.036681+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0002.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0002.JPG", "file_name": "IMG_0002.JPG", "file_stem": "IMG_0002", "file_ext": ".jpg", "file_size": 2515333.0, "mtime": "2003-01-04T10:51:56+00:00", "mtime_ts": 1041677516.0, "ctime": "2003-01-04T10:51:56+00:00", "sha256_file": "03d390bc0d46d50ae7b1ccfc7a01a1453ec17e8469bd45c29ffeafb048602ace", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:20:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9720", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 20:20:29", "EXIF DateTimeDigitized": "2002:12:31 20:20:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f6d594ae6f5a298b1c369acac00b7c666b3edf4bed2c4aaf3e39a0bb6f4ff25d", "phash": "85d476e5299acc47", "dhash": "440cf0bbc2664d00", "phash_int": -8.803280644984878e+18, "collected_at": "2026-05-22T04:30:02.068734+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0003.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0003.JPG", "file_name": "IMG_0003.JPG", "file_stem": "IMG_0003", "file_ext": ".jpg", "file_size": 3264055.0, "mtime": "2003-01-04T10:51:58+00:00", "mtime_ts": 1041677518.0, "ctime": "2003-01-04T10:51:58+00:00", "sha256_file": "a178cbecc712ca0ff21e5585b1b96ce2e842d366b9010879018bdf06af8d57d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:20:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9756", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 20:20:48", "EXIF DateTimeDigitized": "2002:12:31 20:20:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2eb285e152844a328381203a61a67f11792c3993aab34c2764f1f114381700b", "phash": "84851fbc19cc397d", "dhash": "f4e4e6e486a6a6d6", "phash_int": -8.89767059605342e+18, "collected_at": "2026-05-22T04:30:02.199741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0004.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0004.JPG", "file_name": "IMG_0004.JPG", "file_stem": "IMG_0004", "file_ext": ".jpg", "file_size": 2322043.0, "mtime": "2003-01-04T10:52:02+00:00", "mtime_ts": 1041677522.0, "ctime": "2003-01-04T10:52:02+00:00", "sha256_file": "e74baecdacecd36e0a1a9d3003242f2fdaae5082c1d16f69a7a7f110a2fa6f68", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:21:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8139", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 20:21:28", "EXIF DateTimeDigitized": "2002:12:31 20:21:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6324f64a98f5745ae1557790fa406d760c4015c9f379aa60991905bb7d499c4b", "phash": "99ab62d8cd65b056", "dhash": "7bfbfefaf031e200", "phash_int": -7.373691281590604e+18, "collected_at": "2026-05-22T04:30:02.206740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0005.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0005.JPG", "file_name": "IMG_0005.JPG", "file_stem": "IMG_0005", "file_ext": ".jpg", "file_size": 2417852.0, "mtime": "2002-12-31T19:22:20+00:00", "mtime_ts": 1041362540.0, "ctime": "2002-12-31T19:22:20+00:00", "sha256_file": "de6964b4b0a176aeaa6bdf45226bf9bb911401760ef78e7b28da428220cc23e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:22:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7419", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 20:22:21", "EXIF DateTimeDigitized": "2002:12:31 20:22:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19878f95b33bc66a3fb39f46a5770fbe0a1a3f4b61e74940e87ec64405e511f7", "phash": "aa0d6701dece7323", "dhash": "fbbb2b2b9b9bab2b", "phash_int": -6.193180654833864e+18, "collected_at": "2026-05-22T04:30:02.312815+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0006.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0006.JPG", "file_name": "IMG_0006.JPG", "file_stem": "IMG_0006", "file_ext": ".jpg", "file_size": 2064200.0, "mtime": "2002-12-31T19:46:46+00:00", "mtime_ts": 1041364006.0, "ctime": "2002-12-31T19:46:46+00:00", "sha256_file": "4571d0a89c27a6cbbca09a7548ca5299bac49c8c77f743b38d38577608dd2819", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:46:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 20:46:47", "EXIF DateTimeDigitized": "2002:12:31 20:46:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8472e3d73b05ebfdaa6ce1564e4522037a0b547457de602a9ffe333a359537c4", "phash": "903f85d14ae5953b", "dhash": "7cacae8e989c86a8", "phash_int": -8.052570474763939e+18, "collected_at": "2026-05-22T04:30:02.336972+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0008.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0008.JPG", "file_name": "IMG_0008.JPG", "file_stem": "IMG_0008", "file_ext": ".jpg", "file_size": 1975832.0, "mtime": "2002-12-31T19:47:00+00:00", "mtime_ts": 1041364020.0, "ctime": "2002-12-31T19:47:00+00:00", "sha256_file": "9501efc158b171170c059c48e0938394783f9a2f99ebdab75046c4c59e31aa6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:47:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7050", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 20:47:01", "EXIF DateTimeDigitized": "2002:12:31 20:47:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "352fa4e4ff47da3e74997c312a441243507c116ce77d1c3b33ad4f8892f22204", "phash": "ea211f5af3c45a85", "dhash": "787b8e8b89313579", "phash_int": -1.5759439191057134e+18, "collected_at": "2026-05-22T04:30:02.439149+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0007.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0007.JPG", "file_name": "IMG_0007.JPG", "file_stem": "IMG_0007", "file_ext": ".jpg", "file_size": 1933210.0, "mtime": "2002-12-31T19:46:50+00:00", "mtime_ts": 1041364010.0, "ctime": "2002-12-31T19:46:50+00:00", "sha256_file": "edac5cfc41bdf54fc593518735416355b5ec94674046778808e3613823836eb7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 20:46:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6640", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 20:46:52", "EXIF DateTimeDigitized": "2002:12:31 20:46:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "89f1c99d40dfc9b60b39ad153c4046d2acfa582bcb5dcbe64f0aae3fbfba6d83", "phash": "cb71974a1c5ace64", "dhash": "80cac2cbc3e14163", "phash_int": -3.7870794670827894e+18, "collected_at": "2026-05-22T04:30:02.458492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0009.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0009.JPG", "file_name": "IMG_0009.JPG", "file_stem": "IMG_0009", "file_ext": ".jpg", "file_size": 1445985.0, "mtime": "2003-03-10T18:46:26+00:00", "mtime_ts": 1047321986.0, "ctime": "2003-03-10T18:46:26+00:00", "sha256_file": "96be927916e48ae1a89708b2d303b3af593229a3c2a95935148f9d86e00d6524", "exif": {"Image ImageDescription": "", "Image Make": "OLYMPUS OPTICAL CO,.LTD.", "Image Model": "", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "CAMEDIA Master 4.0", "Image DateTime": "2003:03:10 20:46:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "232", "Thumbnail JPEGInterchangeFormat": "1140", "Thumbnail JPEGInterchangeFormatLength": "19843", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 20:47:05", "EXIF DateTimeDigitized": "2002:12:31 20:47:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[79, 76, 89, 77, 80, 0, 1, 0, 0, 0, 255]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1072", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5eea1af7b8109e2bb5cd9eb2cf7e26b8b3f531c791d3cea9eaa14d1f820c59f9", "phash": "966ba17da3644a8e", "dhash": "9bb8edeca8b2e6cd", "phash_int": -7.607809584528078e+18, "collected_at": "2026-05-22T04:30:02.564847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0010.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0010.JPG", "file_name": "IMG_0010.JPG", "file_stem": "IMG_0010", "file_ext": ".jpg", "file_size": 2109283.0, "mtime": "2002-12-31T21:23:02+00:00", "mtime_ts": 1041369782.0, "ctime": "2002-12-31T21:23:02+00:00", "sha256_file": "62298c15c923731a0795468ca4b344fc8529ec1a4c31b4f7f4cb1ac59ac193c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:23:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6279", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:23:03", "EXIF DateTimeDigitized": "2002:12:31 22:23:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdd6abfd795c0d1d3d0ac5392f7b70db58d788a1c11666b834ec13136e71d4df", "phash": "f1a3940e96d9643b", "dhash": "8096920949901188", "phash_int": -1.0348206989837998e+18, "collected_at": "2026-05-22T04:30:02.607952+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0011.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0011.JPG", "file_name": "IMG_0011.JPG", "file_stem": "IMG_0011", "file_ext": ".jpg", "file_size": 1952472.0, "mtime": "2002-12-31T21:23:08+00:00", "mtime_ts": 1041369788.0, "ctime": "2002-12-31T21:23:08+00:00", "sha256_file": "cbea6deeed13e1b35b20bf8c25fc34680286c542a4a1381f09b2b8c57a19da13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:23:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6474", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:23:10", "EXIF DateTimeDigitized": "2002:12:31 22:23:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d662f48b76ff5a29e304a1b62459f584db7358f36adf47c322180708153a3e33", "phash": "8779872e1ca93c36", "dhash": "b2c998aa29e9e9e0", "phash_int": -8.684761774288193e+18, "collected_at": "2026-05-22T04:30:02.654102+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0013.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0013.JPG", "file_name": "IMG_0013.JPG", "file_stem": "IMG_0013", "file_ext": ".jpg", "file_size": 1537254.0, "mtime": "2002-12-31T21:23:26+00:00", "mtime_ts": 1041369806.0, "ctime": "2002-12-31T21:23:26+00:00", "sha256_file": "628c9f7dfefa11a895047f296b8c69cc2113ce6d8f548816caa4822387ead92e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:23:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6864", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:23:28", "EXIF DateTimeDigitized": "2002:12:31 22:23:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "baea64733444a99ebded1f9e091e95dcdc0ba167beb38ebf0f3807ed2606009e", "phash": "dae2970793c79096", "dhash": "cc29a1a9a8f36a78", "phash_int": -2.674409169904759e+18, "collected_at": "2026-05-22T04:30:02.723364+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0017.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0017.JPG", "file_name": "IMG_0017.JPG", "file_stem": "IMG_0017", "file_ext": ".jpg", "file_size": 1319766.0, "mtime": "2002-12-31T21:24:00+00:00", "mtime_ts": 1041369840.0, "ctime": "2002-12-31T21:24:00+00:00", "sha256_file": "519e70e5871aa02af29d0f5342885b663e5f42eda5d79a5bbca77cb4188dd464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:24:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4982", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:24:01", "EXIF DateTimeDigitized": "2002:12:31 22:24:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a3a216d5db25df98d075ac3ccd9d9d87d5115124a30c69c68861a0524450c06", "phash": "8dc5933b3e8527b0", "dhash": "f2b2e2e2ababb2b2", "phash_int": -8.231010861288446e+18, "collected_at": "2026-05-22T04:30:02.783740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0018.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0018.JPG", "file_name": "IMG_0018.JPG", "file_stem": "IMG_0018", "file_ext": ".jpg", "file_size": 1887244.0, "mtime": "2002-12-31T21:33:34+00:00", "mtime_ts": 1041370414.0, "ctime": "2002-12-31T21:33:34+00:00", "sha256_file": "72acc661e336fd8ad20bfe145d9b406bc3d422ec3b0558a08dc271f3505f8d58", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:33:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5465", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:33:36", "EXIF DateTimeDigitized": "2002:12:31 22:33:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "47", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "837e3d1c7efe24d301016fc14cdec332164af89acbef66c6874edf7b803022ee", "phash": "89d523775c00b7ad", "dhash": "c2f2b2b2307bb373", "phash_int": -8.514860524922423e+18, "collected_at": "2026-05-22T04:30:02.829047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0019.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0019.JPG", "file_name": "IMG_0019.JPG", "file_stem": "IMG_0019", "file_ext": ".jpg", "file_size": 1623165.0, "mtime": "2002-12-31T21:33:48+00:00", "mtime_ts": 1041370428.0, "ctime": "2002-12-31T21:33:48+00:00", "sha256_file": "38f3ac086716d9391a39590a6422dad75267045c8734c96fe8054aaf04ca806f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:33:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5669", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:33:49", "EXIF DateTimeDigitized": "2002:12:31 22:33:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "53440eb8fb0836c64f010f00957bd71cf58d3f903a02483d2b9f11b93132bc2e", "phash": "cc60b3334fec91d8", "dhash": "4c85b57130f671d0", "phash_int": -3.719776259242422e+18, "collected_at": "2026-05-22T04:30:02.894471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0020.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0020.JPG", "file_name": "IMG_0020.JPG", "file_stem": "IMG_0020", "file_ext": ".jpg", "file_size": 1764299.0, "mtime": "2002-12-31T21:33:54+00:00", "mtime_ts": 1041370434.0, "ctime": "2002-12-31T21:33:54+00:00", "sha256_file": "0b406b0adde87acc69fea3f13d70387bd040a41a40b4e6412eb240be04f4e02c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:33:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5623", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:33:55", "EXIF DateTimeDigitized": "2002:12:31 22:33:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da64d21c44008b5aa73ff5a45ae4a267d3c6b4ef0ed7f8d53ff9297efac00542", "phash": "ccf0b233cebd9068", "dhash": "4c85b57271f675f4", "phash_int": -3.6792449599800893e+18, "collected_at": "2026-05-22T04:30:02.905473+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0021.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0021.JPG", "file_name": "IMG_0021.JPG", "file_stem": "IMG_0021", "file_ext": ".jpg", "file_size": 1874615.0, "mtime": "2002-12-31T21:41:36+00:00", "mtime_ts": 1041370896.0, "ctime": "2002-12-31T21:41:36+00:00", "sha256_file": "462fbb983d78b48ee22c9850ff4a9c9d3257635670d3bf33f563f80d110bef2a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:41:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5331", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:41:37", "EXIF DateTimeDigitized": "2002:12:31 22:41:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65497", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40b2fe17a6f922e34c9d0b6f2cb6a255278dcdf3a4a9b9e4ae30b9f10d908388", "phash": "b397f5484ec07515", "dhash": "ecfc7c6969839386", "phash_int": -5.505662328529456e+18, "collected_at": "2026-05-22T04:30:02.999706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0022.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0022.JPG", "file_name": "IMG_0022.JPG", "file_stem": "IMG_0022", "file_ext": ".jpg", "file_size": 2011592.0, "mtime": "2002-12-31T21:41:42+00:00", "mtime_ts": 1041370902.0, "ctime": "2002-12-31T21:41:42+00:00", "sha256_file": "424e7bfc414cd81f5f69bcd5caf5a1383acb109539550e565791023716db2981", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:41:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5938", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:41:43", "EXIF DateTimeDigitized": "2002:12:31 22:41:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27bbae6fc38b69cf279ae654e2e8df2c0feb39b7d1e27463a947a656e9fce35d", "phash": "c1ca3d7c4a1dd1e2", "dhash": "b2f2d9d9890a464e", "phash_int": -4.4827028750652e+18, "collected_at": "2026-05-22T04:30:03.017931+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0023.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0023.JPG", "file_name": "IMG_0023.JPG", "file_stem": "IMG_0023", "file_ext": ".jpg", "file_size": 1797616.0, "mtime": "2002-12-31T21:51:58+00:00", "mtime_ts": 1041371518.0, "ctime": "2002-12-31T21:51:58+00:00", "sha256_file": "c803f05e11de5eda007c508fa292def93f7be31be81e1c1f38fde42989f743c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5357", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:00", "EXIF DateTimeDigitized": "2002:12:31 22:52:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8edfe0aa92cd88a158e53fe7ade4dac78b9e5e3f01d16635d707a994b42d8f56", "phash": "e09f0c007ddf17f0", "dhash": "ae8f9d1b9f9b8b8d", "phash_int": -2.2610752916653937e+18, "collected_at": "2026-05-22T04:30:03.119770+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0024.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0024.JPG", "file_name": "IMG_0024.JPG", "file_stem": "IMG_0024", "file_ext": ".jpg", "file_size": 1872307.0, "mtime": "2002-12-31T21:52:06+00:00", "mtime_ts": 1041371526.0, "ctime": "2002-12-31T21:52:06+00:00", "sha256_file": "b83bc3787c2f9de61fddebc12aa8017c06d74cf4833430c802f425af31ccd55f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5295", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:07", "EXIF DateTimeDigitized": "2002:12:31 22:52:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10f6ea48d1230e3c1b5a638a04ff53c93a4cbcaa0646101895a0837a48e6ed0b", "phash": "adcb17c4d58988e3", "dhash": "e26b3b332aae9e9e", "phash_int": -5.923614750712166e+18, "collected_at": "2026-05-22T04:30:03.127944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0025.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0025.JPG", "file_name": "IMG_0025.JPG", "file_stem": "IMG_0025", "file_ext": ".jpg", "file_size": 1282607.0, "mtime": "2002-12-31T21:52:18+00:00", "mtime_ts": 1041371538.0, "ctime": "2002-12-31T21:52:18+00:00", "sha256_file": "715cf505dd4c8457487adf4b54fed838716645b97ad8208a4ec904a9668d4671", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4327", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:20", "EXIF DateTimeDigitized": "2002:12:31 22:52:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b78578303e3dba61ba4e02802b8cbbbd54f22da1228f697d6a3b93d40f2cca82", "phash": "d90726e0a99e99e9", "dhash": "ec4d707113302810", "phash_int": -2.8082330962819415e+18, "collected_at": "2026-05-22T04:30:03.219948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0026.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0026.JPG", "file_name": "IMG_0026.JPG", "file_stem": "IMG_0026", "file_ext": ".jpg", "file_size": 1614019.0, "mtime": "2002-12-31T21:52:26+00:00", "mtime_ts": 1041371546.0, "ctime": "2002-12-31T21:52:26+00:00", "sha256_file": "f64d63eef3e72459246e29215cfbb265470f4c953a9c27ccaa09de4e34d719c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5208", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:27", "EXIF DateTimeDigitized": "2002:12:31 22:52:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d92d0aca755cc8add9544bbcc3c9ca942c1f87ea7e7ea3b9f44c7b0c2e103ca", "phash": "c4e03b3fa1e4cc1e", "dhash": "9284e4c6e46466f4", "phash_int": -4.2603401030073846e+18, "collected_at": "2026-05-22T04:30:03.231949+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0027.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0027.JPG", "file_name": "IMG_0027.JPG", "file_stem": "IMG_0027", "file_ext": ".jpg", "file_size": 1719563.0, "mtime": "2002-12-31T21:52:32+00:00", "mtime_ts": 1041371552.0, "ctime": "2002-12-31T21:52:32+00:00", "sha256_file": "0d03f22ad49d0ba7cc644615633cb1d4c1f7f85bc14b481bb0e76ba32a3f2e97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5589", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:34", "EXIF DateTimeDigitized": "2002:12:31 22:52:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "420b948c30b5cac8fd221157df89b822d96fb0e90e5edde42e0a7d78a07289b1", "phash": "96f5291b42a66637", "dhash": "30302c6c6c6c7dd9", "phash_int": -7.569098401667193e+18, "collected_at": "2026-05-22T04:30:03.338083+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0028.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0028.JPG", "file_name": "IMG_0028.JPG", "file_stem": "IMG_0028", "file_ext": ".jpg", "file_size": 1815058.0, "mtime": "2002-12-31T21:52:42+00:00", "mtime_ts": 1041371562.0, "ctime": "2002-12-31T21:52:42+00:00", "sha256_file": "63023e1c725281d939e2d4f3020199ede8e95ce6feebfe3baa3445d256dbf6ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:52:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4463", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:52:44", "EXIF DateTimeDigitized": "2002:12:31 22:52:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "425146a88299152ad7e8efed1d893bd2db73ec552d3e34b71198ec2fd506aa7c", "phash": "98e2443fbec5670a", "dhash": "b0b0b8303972b0b4", "phash_int": -7.43030139463366e+18, "collected_at": "2026-05-22T04:30:03.353154+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0029.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0029.JPG", "file_name": "IMG_0029.JPG", "file_stem": "IMG_0029", "file_ext": ".jpg", "file_size": 1867079.0, "mtime": "2002-12-31T21:56:22+00:00", "mtime_ts": 1041371782.0, "ctime": "2002-12-31T21:56:22+00:00", "sha256_file": "de71b8f68257fcbba4b7f075ce7a138bf7a9fdf03cf8460bea17e00f1ca0f2b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:56:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5242", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:56:23", "EXIF DateTimeDigitized": "2002:12:31 22:56:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b196923daf7fade1d0fe2d7088f1e56bf5bb056c61f56ae91c0c7d5a85cb9232", "phash": "b48740f33f3100ff", "dhash": "cecef75535959c3c", "phash_int": -5.438306611545178e+18, "collected_at": "2026-05-22T04:30:03.468041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0030.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0030.JPG", "file_name": "IMG_0030.JPG", "file_stem": "IMG_0030", "file_ext": ".jpg", "file_size": 1954120.0, "mtime": "2002-12-31T21:56:36+00:00", "mtime_ts": 1041371796.0, "ctime": "2002-12-31T21:56:36+00:00", "sha256_file": "4d7112621b5f7279060f2579637dd0c8cc4bce995cee28085a8f3424fd500909", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:56:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5392", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:56:37", "EXIF DateTimeDigitized": "2002:12:31 22:56:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d74071c6fa834b16fcf8d535101be482a8ebc1ccf2fc93ad0701ea06a51f24b7", "phash": "a94b64f0d2df702c", "dhash": "9ef3335b99bbb2b6", "phash_int": -6.247789072553644e+18, "collected_at": "2026-05-22T04:30:03.488041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0031.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0031.JPG", "file_name": "IMG_0031.JPG", "file_stem": "IMG_0031", "file_ext": ".jpg", "file_size": 1736345.0, "mtime": "2002-12-31T21:56:44+00:00", "mtime_ts": 1041371804.0, "ctime": "2002-12-31T21:56:44+00:00", "sha256_file": "bff484d31ec763de88c6d2d88285f109a3b78c7c0fe8494dfd334de9004f2bba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:56:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5108", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:56:46", "EXIF DateTimeDigitized": "2002:12:31 22:56:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8490b6c3f2ddfd171b44d38e86bf2229998b55165c8e5dd8eb3715f3de76949", "phash": "db8204fde33f1861", "dhash": "f8c8695950123240", "phash_int": -2.6295337439451484e+18, "collected_at": "2026-05-22T04:30:03.593313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0032.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0032.JPG", "file_name": "IMG_0032.JPG", "file_stem": "IMG_0032", "file_ext": ".jpg", "file_size": 1686606.0, "mtime": "2002-12-31T21:57:14+00:00", "mtime_ts": 1041371834.0, "ctime": "2002-12-31T21:57:14+00:00", "sha256_file": "4d8894a04223a72b75f2d7f22c59445628d470c98d1fb29f19a9cc50055cc737", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:57:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:57:16", "EXIF DateTimeDigitized": "2002:12:31 22:57:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65431", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96fe5b5bef03bac69d98ac7284ba4dced2aa1ac9bfa5b7ab90447bfa5af48b4c", "phash": "de9920ee53ff0510", "dhash": "79b9f97975642dad", "phash_int": -2.406856317869292e+18, "collected_at": "2026-05-22T04:30:03.595312+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0034.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0034.JPG", "file_name": "IMG_0034.JPG", "file_stem": "IMG_0034", "file_ext": ".jpg", "file_size": 1584520.0, "mtime": "2002-12-31T21:57:32+00:00", "mtime_ts": 1041371852.0, "ctime": "2002-12-31T21:57:32+00:00", "sha256_file": "f0b7a3e474942ed75f5676d576d7163f85fb10dc14769da497f092bb5bcc9f19", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:57:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5486", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:57:33", "EXIF DateTimeDigitized": "2002:12:31 22:57:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9eb1d341a0dc4f1a5d473d91badaaf2b869e4037fde14d379e9597f9a3729b1a", "phash": "96c92926f2f3958c", "dhash": "e873f0cc646474bc", "phash_int": -7.581483250439974e+18, "collected_at": "2026-05-22T04:30:03.784342+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0033.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0033.JPG", "file_name": "IMG_0033.JPG", "file_stem": "IMG_0033", "file_ext": ".jpg", "file_size": 1772356.0, "mtime": "2002-12-31T21:57:22+00:00", "mtime_ts": 1041371842.0, "ctime": "2002-12-31T21:57:22+00:00", "sha256_file": "4aa7e1b0a661a97ece3d189932e7a22349d6fd85b6bcb3bcdb381ce75820b14d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:57:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4582", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:57:23", "EXIF DateTimeDigitized": "2002:12:31 22:57:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2d3a4bbd6f428a9928f4fa2228462e26600512a86fbb16a29ec8c60d3dcbda9", "phash": "96d979e4440ee674", "dhash": "fcdcfc6ce4ecedec", "phash_int": -7.576890876772817e+18, "collected_at": "2026-05-22T04:30:03.787343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0035.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0035.JPG", "file_name": "IMG_0035.JPG", "file_stem": "IMG_0035", "file_ext": ".jpg", "file_size": 1732544.0, "mtime": "2002-12-31T21:58:04+00:00", "mtime_ts": 1041371884.0, "ctime": "2002-12-31T21:58:04+00:00", "sha256_file": "596c7ea6921cb4c23c132075fe2bb0a630eb184d100899259ab75195a8f8558d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:58:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:58:06", "EXIF DateTimeDigitized": "2002:12:31 22:58:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f3900a972503bcec017925fba92fb8a14049e88324a45bcf59ef3272abd63a1", "phash": "c3981e27b0d99787", "dhash": "f0e5d191cbcbcbcc", "phash_int": -4.3526958840339763e+18, "collected_at": "2026-05-22T04:30:03.971899+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0036.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0036.JPG", "file_name": "IMG_0036.JPG", "file_stem": "IMG_0036", "file_ext": ".jpg", "file_size": 1784797.0, "mtime": "2002-12-31T21:58:18+00:00", "mtime_ts": 1041371898.0, "ctime": "2002-12-31T21:58:18+00:00", "sha256_file": "1b87152b9a5af6ffa87a28e7886f17d4a7d06a0f41d7767c682dc439e6e38e87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:58:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4773", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:58:19", "EXIF DateTimeDigitized": "2002:12:31 22:58:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d0bb098480ce7c7f0450ca6e1fd2d429000a5b0d35fac4b875a4b758fa3dda9", "phash": "8966669ddc929372", "dhash": "e1cfc991b3b39bb3", "phash_int": -8.546030414692445e+18, "collected_at": "2026-05-22T04:30:03.986162+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0037.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0037.JPG", "file_name": "IMG_0037.JPG", "file_stem": "IMG_0037", "file_ext": ".jpg", "file_size": 1864984.0, "mtime": "2002-12-31T21:58:46+00:00", "mtime_ts": 1041371926.0, "ctime": "2002-12-31T21:58:46+00:00", "sha256_file": "7d0c213336a4d3de3560d3bace1a888bc1013f592942859feb2f484b1e2af355", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:58:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5563", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:58:48", "EXIF DateTimeDigitized": "2002:12:31 22:58:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d4de5b4331a0c4db412ac33b27d2da4ccd98e2853138711a891d83b220c339e8", "phash": "b4cb4e949a892c6f", "dhash": "f8ce4b9d1cbc346c", "phash_int": -5.419151326455453e+18, "collected_at": "2026-05-22T04:30:04.126325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0038.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0038.JPG", "file_name": "IMG_0038.JPG", "file_stem": "IMG_0038", "file_ext": ".jpg", "file_size": 1806691.0, "mtime": "2002-12-31T21:59:16+00:00", "mtime_ts": 1041371956.0, "ctime": "2002-12-31T21:59:16+00:00", "sha256_file": "97fa1fdcd1a0c3a1e1ba98feabf4d2fb7a8bd149e00e1b6658f96af4ebc435dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:59:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5512", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:59:18", "EXIF DateTimeDigitized": "2002:12:31 22:59:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65403", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5babd2ef3a7c2d33299ba91807c4e96684c971a81189c28c5500309ab4b0e5e", "phash": "b2c5499e9688ff42", "dhash": "f8c6ded44c4cd959", "phash_int": -5.564960819067159e+18, "collected_at": "2026-05-22T04:30:04.147486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0039.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0039.JPG", "file_name": "IMG_0039.JPG", "file_stem": "IMG_0039", "file_ext": ".jpg", "file_size": 1861227.0, "mtime": "2002-12-31T21:59:28+00:00", "mtime_ts": 1041371968.0, "ctime": "2002-12-31T21:59:28+00:00", "sha256_file": "7fd0b99b443b1da54c90c5da536f5d7d0086530b525a78530d4a006ca7079ce4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:59:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5252", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:59:29", "EXIF DateTimeDigitized": "2002:12:31 22:59:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b469d25a64a058c535bf8fe01ef6c64767d16c6e728a31017e4828676132de27", "phash": "fe8a011597eac8b5", "dhash": "e06b272516b7260e", "phash_int": -1.0527044903509794e+17, "collected_at": "2026-05-22T04:30:04.273224+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0040.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0040.JPG", "file_name": "IMG_0040.JPG", "file_stem": "IMG_0040", "file_ext": ".jpg", "file_size": 1930546.0, "mtime": "2002-12-31T21:59:44+00:00", "mtime_ts": 1041371984.0, "ctime": "2002-12-31T21:59:44+00:00", "sha256_file": "de240ecf8f79f1f08daee4ce409479eee8deace43bbe028438f0a845a32ecb13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:59:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4523", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:59:45", "EXIF DateTimeDigitized": "2002:12:31 22:59:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d03687c9c6ffa745792562989045142e98978f538e3df21701480155aee4dc1", "phash": "b5eb4404c2f9df06", "dhash": "e6565a5ae67efee6", "phash_int": -5.338098146075877e+18, "collected_at": "2026-05-22T04:30:04.288219+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0042.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0042.JPG", "file_name": "IMG_0042.JPG", "file_stem": "IMG_0042", "file_ext": ".jpg", "file_size": 1762145.0, "mtime": "2002-12-31T22:00:04+00:00", "mtime_ts": 1041372004.0, "ctime": "2002-12-31T22:00:04+00:00", "sha256_file": "18738784a6f6027912b634a88488037177b6e9783d33cde7f61b465f30b9d59a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:00:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4565", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:00:06", "EXIF DateTimeDigitized": "2002:12:31 23:00:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dca9c7699af2b712511a80914c079a7af96c1f945c74dcddbeee5e02ad7947bd", "phash": "9c966331a4ccce5b", "dhash": "ecf87175743634c0", "phash_int": -7.163429092416762e+18, "collected_at": "2026-05-22T04:30:04.422481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0041.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0041.JPG", "file_name": "IMG_0041.JPG", "file_stem": "IMG_0041", "file_ext": ".jpg", "file_size": 1741049.0, "mtime": "2002-12-31T21:59:56+00:00", "mtime_ts": 1041371996.0, "ctime": "2002-12-31T21:59:56+00:00", "sha256_file": "6e7bc9a499d18efc85f9898716337f59bc3daa09289490afd30fe0d62f0e35d5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 22:59:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4930", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 22:59:57", "EXIF DateTimeDigitized": "2002:12:31 22:59:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d62e5c33ae8d272dc87397b9714facf4bb29f72c986933ee9b1a8673974325ec", "phash": "8ad6472d6c989d59", "dhash": "e9ddd5b5b1fbd9f3", "phash_int": -8.442482191038375e+18, "collected_at": "2026-05-22T04:30:04.434483+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0044.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0044.JPG", "file_name": "IMG_0044.JPG", "file_stem": "IMG_0044", "file_ext": ".jpg", "file_size": 1075693.0, "mtime": "2003-03-10T18:37:18+00:00", "mtime_ts": 1047321438.0, "ctime": "2003-03-10T18:37:18+00:00", "sha256_file": "12608940009957cc68880794d65506706835977473b3d6f3a119573577f4af41", "exif": {"Image ImageDescription": "", "Image Make": "OLYMPUS OPTICAL CO,.LTD.", "Image Model": "", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "CAMEDIA Master 4.0", "Image DateTime": "2003:03:10 20:37:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "232", "Thumbnail JPEGInterchangeFormat": "1140", "Thumbnail JPEGInterchangeFormatLength": "13628", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:00:31", "EXIF DateTimeDigitized": "2002:12:31 23:00:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[79, 76, 89, 77, 80, 0, 1, 0, 0, 0, 255]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1072", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85b56f2ce26dc1dcf54dc7c78e042a8d43a95551fd5a9f57ba21937082492f5c", "phash": "cbd0163f6721ccca", "dhash": "68b8b1d5417170e0", "phash_int": -3.7604812272853453e+18, "collected_at": "2026-05-22T04:30:04.581015+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0043.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0043.JPG", "file_name": "IMG_0043.JPG", "file_stem": "IMG_0043", "file_ext": ".jpg", "file_size": 1697787.0, "mtime": "2002-12-31T22:00:20+00:00", "mtime_ts": 1041372020.0, "ctime": "2002-12-31T22:00:20+00:00", "sha256_file": "f2ad91f5ab0832db5156de2d28c382883b05a604895cd690cc82de80d30a09c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:00:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5004", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:00:21", "EXIF DateTimeDigitized": "2002:12:31 23:00:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb6c6bbb3b6625ff0f9fee1d2ce599409b31f82db43410f3369e09d6c22f1696", "phash": "ca8c7537f6549581", "dhash": "e4f3f1e1eb4bf8c8", "phash_int": -3.851574698092227e+18, "collected_at": "2026-05-22T04:30:04.600111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0045.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0045.JPG", "file_name": "IMG_0045.JPG", "file_stem": "IMG_0045", "file_ext": ".jpg", "file_size": 1703049.0, "mtime": "2002-12-31T22:00:46+00:00", "mtime_ts": 1041372046.0, "ctime": "2002-12-31T22:00:46+00:00", "sha256_file": "a0226ae9aec0557053c35499c4ea5183a6604776f0d7e0043de167a036de71c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:00:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4620", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:00:48", "EXIF DateTimeDigitized": "2002:12:31 23:00:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35d2f387460b545e7c9c2f2e4d25937dd4a5a67d29576b7b2ad97ddbaaf13e9b", "phash": "8ae6916dd664907d", "dhash": "e4bbafe763e3a7fc", "phash_int": -8.437896950897668e+18, "collected_at": "2026-05-22T04:30:04.721115+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0046.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0046.JPG", "file_name": "IMG_0046.JPG", "file_stem": "IMG_0046", "file_ext": ".jpg", "file_size": 1605593.0, "mtime": "2002-12-31T22:01:04+00:00", "mtime_ts": 1041372064.0, "ctime": "2002-12-31T22:01:04+00:00", "sha256_file": "f3e3569356b1c27d8af0f8dfec46469d24be54f0219413c6ca44b8c173b873c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:01:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3754", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:01:05", "EXIF DateTimeDigitized": "2002:12:31 23:01:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "476e6342766c2be38dcd4604025065afbca4980d1e16eccff9ce131a111d050c", "phash": "9c6e65997a215366", "dhash": "2565607939b8b228", "phash_int": -7.174685446501215e+18, "collected_at": "2026-05-22T04:30:04.729117+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0047.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0047.JPG", "file_name": "IMG_0047.JPG", "file_stem": "IMG_0047", "file_ext": ".jpg", "file_size": 1822057.0, "mtime": "2002-12-31T22:01:14+00:00", "mtime_ts": 1041372074.0, "ctime": "2002-12-31T22:01:14+00:00", "sha256_file": "3ee24519854d7cb0c1a9dc9f134e25dd161e25120f5e034ff02d8b5c16f1f27a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:01:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4210", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:01:15", "EXIF DateTimeDigitized": "2002:12:31 23:01:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "044ec761ea1817dbc904849cd63a0f3246744bedb46588fa5fa4b35d664dd412", "phash": "a70f7839b346c469", "dhash": "1beae44c4ccc8c98", "phash_int": -6.408771555508698e+18, "collected_at": "2026-05-22T04:30:04.865330+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0048.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0048.JPG", "file_name": "IMG_0048.JPG", "file_stem": "IMG_0048", "file_ext": ".jpg", "file_size": 1708324.0, "mtime": "2002-12-31T22:01:30+00:00", "mtime_ts": 1041372090.0, "ctime": "2002-12-31T22:01:30+00:00", "sha256_file": "38f5418429fbe9d5a6b24f92ff460e0ee61a7a3e313a1d29d8cde236b00e0298", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:01:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4324", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:01:32", "EXIF DateTimeDigitized": "2002:12:31 23:01:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2421/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2421"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f356f9f6c437f40f3ec891e634645fa8c4d1ccea7d91e988bd84587fe6b7884", "phash": "a02a5b368be6f439", "dhash": "f5b3a6aaae868c9a", "phash_int": -6.905606788785704e+18, "collected_at": "2026-05-22T04:30:04.877332+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0049.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0049.JPG", "file_name": "IMG_0049.JPG", "file_stem": "IMG_0049", "file_ext": ".jpg", "file_size": 1519291.0, "mtime": "2002-12-31T22:01:58+00:00", "mtime_ts": 1041372118.0, "ctime": "2002-12-31T22:01:58+00:00", "sha256_file": "5ffc9613b10e1c28843528f03c3e728c9aefadb7b5463065e5c387105edcae38", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:01:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3992", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:01:59", "EXIF DateTimeDigitized": "2002:12:31 23:01:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65431", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71e39c1905acdd480fddadcf5ef52f8ce59086fe6f0c9d52473bde87230ef88d", "phash": "cf3930e6c7991139", "dhash": "e470fa6860e464c8", "phash_int": -3.5147242664366525e+18, "collected_at": "2026-05-22T04:30:04.928665+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0050.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0050.JPG", "file_name": "IMG_0050.JPG", "file_stem": "IMG_0050", "file_ext": ".jpg", "file_size": 1640417.0, "mtime": "2002-12-31T22:02:04+00:00", "mtime_ts": 1041372124.0, "ctime": "2002-12-31T22:02:04+00:00", "sha256_file": "6ac13e1fba15ee2c7af0ca159c57307544f8096665a5d1f1f738df676701b486", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:02:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4596", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:02:06", "EXIF DateTimeDigitized": "2002:12:31 23:02:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e07c01115b5d3345f478e1068d59b996e1aef98b5be236d53886da42c9f46ae", "phash": "9d4932b56eda8549", "dhash": "ecdb736066767c68", "phash_int": -7.113098381624704e+18, "collected_at": "2026-05-22T04:30:04.968787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0051.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0051.JPG", "file_name": "IMG_0051.JPG", "file_stem": "IMG_0051", "file_ext": ".jpg", "file_size": 1778774.0, "mtime": "2002-12-31T22:02:22+00:00", "mtime_ts": 1041372142.0, "ctime": "2002-12-31T22:02:22+00:00", "sha256_file": "bc5f2dadb459662f5b3a1743abec46a2e096635e4ca4c95da145150b7679dc51", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:02:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5171", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:02:24", "EXIF DateTimeDigitized": "2002:12:31 23:02:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "146a4b23619a6b9a276874684001e48cd69dfcf0272a596ed08aee15aa02b84e", "phash": "93c5269cdc9a3366", "dhash": "f8cecad150d8f979", "phash_int": -7.798784724564299e+18, "collected_at": "2026-05-22T04:30:05.040177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0052.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0052.JPG", "file_name": "IMG_0052.JPG", "file_stem": "IMG_0052", "file_ext": ".jpg", "file_size": 1809374.0, "mtime": "2002-12-31T22:02:36+00:00", "mtime_ts": 1041372156.0, "ctime": "2002-12-31T22:02:36+00:00", "sha256_file": "52099afd5a9c927a293e48d93774a99c3cd70c5131da18e15e36fa171975e2d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:02:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4852", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:02:37", "EXIF DateTimeDigitized": "2002:12:31 23:02:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65250", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bcc58b174d28ec16b34c16709d7d0db94ba5c480f4c2d131e8d6ac4be415a3ae", "phash": "d31b3c646347c764", "dhash": "d899d9c9c9efe4e9", "phash_int": -3.2349255054755246e+18, "collected_at": "2026-05-22T04:30:05.084525+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0053.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0053.JPG", "file_name": "IMG_0053.JPG", "file_stem": "IMG_0053", "file_ext": ".jpg", "file_size": 1625412.0, "mtime": "2002-12-31T22:02:54+00:00", "mtime_ts": 1041372174.0, "ctime": "2002-12-31T22:02:54+00:00", "sha256_file": "e659b00bcb7a989adb93719ec051adb432fadfcabd8b237e9cf6c913586bb543", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:02:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4391", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:02:56", "EXIF DateTimeDigitized": "2002:12:31 23:02:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4609/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65418", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9218"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83ae53dff749d9589f271644dcbfaa232cd0e7cf0b8ba53672c498552f6901ae", "phash": "9c266759cc99336c", "dhash": "f6e474b6b031b171", "phash_int": -7.194949719295446e+18, "collected_at": "2026-05-22T04:30:05.190532+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0054.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0054.JPG", "file_name": "IMG_0054.JPG", "file_stem": "IMG_0054", "file_ext": ".jpg", "file_size": 1506964.0, "mtime": "2002-12-31T22:03:12+00:00", "mtime_ts": 1041372192.0, "ctime": "2002-12-31T22:03:12+00:00", "sha256_file": "524740eef5cc4e74dc2bd0b7bf8d6ed87dff5ef1ab143d1ba2aaaf59a440264e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:03:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4395", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:03:14", "EXIF DateTimeDigitized": "2002:12:31 23:03:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "88/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65418", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "704"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "373201b885a3198ff1bc60f4cfc88d2acd87db7e8f7837437d19d24763306880", "phash": "c31b38602ee39bda", "dhash": "f97969c9ccc0c8e8", "phash_int": -4.387851426187732e+18, "collected_at": "2026-05-22T04:30:05.225533+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0055.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0055.JPG", "file_name": "IMG_0055.JPG", "file_stem": "IMG_0055", "file_ext": ".jpg", "file_size": 1351532.0, "mtime": "2002-12-31T22:03:28+00:00", "mtime_ts": 1041372208.0, "ctime": "2002-12-31T22:03:28+00:00", "sha256_file": "0cbf80cfcfd926452a6bbf6b9d866c117a5cc215321789b825443eb4653d8a2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:03:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3706", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:03:29", "EXIF DateTimeDigitized": "2002:12:31 23:03:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "963/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "963"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36736d98a701dad7a776821faf4db0e7a43c49dac7653706cb419a1d794f8bcf", "phash": "88542fb3d6372f60", "dhash": "70b0f7b5b5dbcbe3", "phash_int": -8.623214937068065e+18, "collected_at": "2026-05-22T04:30:05.336251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0056.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0056.JPG", "file_name": "IMG_0056.JPG", "file_stem": "IMG_0056", "file_ext": ".jpg", "file_size": 1536815.0, "mtime": "2002-12-31T22:03:44+00:00", "mtime_ts": 1041372224.0, "ctime": "2002-12-31T22:03:44+00:00", "sha256_file": "44ae38a25f9b441b3c83d6d0dc8e4efd30861b4f8346876304e99884b58478c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:03:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4726", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:03:45", "EXIF DateTimeDigitized": "2002:12:31 23:03:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "461/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65423", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "922"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed67a7300367c5fb0903dbd03b69471b729080cbad44c075a48ad2e2b71c08f7", "phash": "cb6c3066c79b6c92", "dhash": "8c90f36360e9c9d9", "phash_int": -3.7885999685317806e+18, "collected_at": "2026-05-22T04:30:05.348251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0057.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0057.JPG", "file_name": "IMG_0057.JPG", "file_stem": "IMG_0057", "file_ext": ".jpg", "file_size": 1929369.0, "mtime": "2002-12-31T22:04:04+00:00", "mtime_ts": 1041372244.0, "ctime": "2002-12-31T22:04:04+00:00", "sha256_file": "0da1aac54a2e2ec6e9cdb35977dae1a0e003e6952b07c68dcd07e016256d066b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:04:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4791", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:04:06", "EXIF DateTimeDigitized": "2002:12:31 23:04:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d25ec1abbbe9e3e3de04482e0425466033660588e3afebce2b784ae2880ab4d", "phash": "c19cf31fd3147423", "dhash": "fcd1d5d0d99bd9c8", "phash_int": -4.495451010011729e+18, "collected_at": "2026-05-22T04:30:05.512974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0058.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0058.JPG", "file_name": "IMG_0058.JPG", "file_stem": "IMG_0058", "file_ext": ".jpg", "file_size": 1777627.0, "mtime": "2002-12-31T22:04:18+00:00", "mtime_ts": 1041372258.0, "ctime": "2002-12-31T22:04:18+00:00", "sha256_file": "ace2713f1af83e1eda75503d20203577238b1599eeccf3c9d6e43d37df99321e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:04:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4687", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:04:20", "EXIF DateTimeDigitized": "2002:12:31 23:04:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a44f8c331385a8c63e864a6d8bca58a69cf34fbf5d515b31cb87eed4ce96c968", "phash": "c31cf30ef0c73447", "dhash": "d8d1d0a8a1984888", "phash_int": -4.387364691471027e+18, "collected_at": "2026-05-22T04:30:05.515975+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0060.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0060.JPG", "file_name": "IMG_0060.JPG", "file_stem": "IMG_0060", "file_ext": ".jpg", "file_size": 1818001.0, "mtime": "2003-01-04T10:53:02+00:00", "mtime_ts": 1041677582.0, "ctime": "2003-01-04T10:53:02+00:00", "sha256_file": "f3cc4d2ac104890e74e201df5a74ee085cb758824418b1aa4b3f281db6bbeb12", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:04:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5178", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 23:04:51", "EXIF DateTimeDigitized": "2002:12:31 23:04:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77a191a3bd9e44471240b4f5162eaee25eaa1fc02c26fc8bffa2cf3a9e9172c9", "phash": "ca753fc0300fdde0", "dhash": "0081716897e3e5b9", "phash_int": -3.858107411100345e+18, "collected_at": "2026-05-22T04:30:05.713965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0059.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0059.JPG", "file_name": "IMG_0059.JPG", "file_stem": "IMG_0059", "file_ext": ".jpg", "file_size": 2803835.0, "mtime": "2003-01-04T10:53:00+00:00", "mtime_ts": 1041677580.0, "ctime": "2003-01-04T10:53:00+00:00", "sha256_file": "1847fddd77c5dc5ee8f8d9521a8dc97d0dd4813080377348f81a0028df2bddef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:04:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6076", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:31 23:04:41", "EXIF DateTimeDigitized": "2002:12:31 23:04:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41c3ff3c9466abb80ba3b1de736814808791b890acd843b672067853aff6983f", "phash": "e0dd1f3e34676222", "dhash": "36b293869683e2b2", "phash_int": -2.243602687333015e+18, "collected_at": "2026-05-22T04:30:05.732965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0061.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0061.JPG", "file_name": "IMG_0061.JPG", "file_stem": "IMG_0061", "file_ext": ".jpg", "file_size": 1870172.0, "mtime": "2002-12-31T22:05:16+00:00", "mtime_ts": 1041372316.0, "ctime": "2002-12-31T22:05:16+00:00", "sha256_file": "f65a1246485786a4ef27db1e3d2cd1db6a73a0f80efa61b6073a11944e1eac7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:05:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4603", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:05:18", "EXIF DateTimeDigitized": "2002:12:31 23:05:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b535e5d5f03f4d5ae31feb448f0173b6e16f75cfd22e779f226be56e7d5978f2", "phash": "fb9f06606ded0096", "dhash": "6b693933339b0b0d", "phash_int": -3.155264376617696e+17, "collected_at": "2026-05-22T04:30:05.813974+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0062.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0062.JPG", "file_name": "IMG_0062.JPG", "file_stem": "IMG_0062", "file_ext": ".jpg", "file_size": 1639785.0, "mtime": "2002-12-31T22:05:26+00:00", "mtime_ts": 1041372326.0, "ctime": "2002-12-31T22:05:26+00:00", "sha256_file": "8a5f9d1ac5abfed2e2000a3eb3f2d2e65c0877d6dbe405d763f473c7009ad6dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:05:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5171", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:05:27", "EXIF DateTimeDigitized": "2002:12:31 23:05:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1071/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65259", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4284"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "095dab95ef699ce828a56a75c4f9e3ca402c677860e7a4970a3b0db70043c720", "phash": "f6110e4966dce9e2", "dhash": "7c8c1c1c8d11342c", "phash_int": -7.157751573540429e+17, "collected_at": "2026-05-22T04:30:05.834969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0063.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0063.JPG", "file_name": "IMG_0063.JPG", "file_stem": "IMG_0063", "file_ext": ".jpg", "file_size": 498756.0, "mtime": "2002-12-31T22:06:08+00:00", "mtime_ts": 1041372368.0, "ctime": "2002-12-31T22:06:08+00:00", "sha256_file": "ee7dd157e901ce53a2389a6754a2b8d6bfecdd50ced4d2feaaad90d7f493560c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:06:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4379", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:06:09", "EXIF DateTimeDigitized": "2002:12:31 23:06:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47e3a0603e522af9caa7ce245f9d729baa04e645949e6a495cd2a46069bc7266", "phash": "98b4732ea499539e", "dhash": "e6b4b0b2f2f1b1b1", "phash_int": -7.443197639969385e+18, "collected_at": "2026-05-22T04:30:05.894044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0064.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0064.JPG", "file_name": "IMG_0064.JPG", "file_stem": "IMG_0064", "file_ext": ".jpg", "file_size": 567662.0, "mtime": "2002-12-31T22:06:20+00:00", "mtime_ts": 1041372380.0, "ctime": "2002-12-31T22:06:20+00:00", "sha256_file": "ff77a0235d91ae540bc05e78653558b7685577f95fe5fd3020947ddba45eba9e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:06:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4241", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:06:22", "EXIF DateTimeDigitized": "2002:12:31 23:06:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2117/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65450", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2117"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac7040972704ca84e77238f75292746246c079366ce5e467d61a49c3dd580bc2", "phash": "b74b2a3c948175ae", "dhash": "3c4cccccec8e9e9c", "phash_int": -5.239047301837524e+18, "collected_at": "2026-05-22T04:30:05.914045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0065.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0065.JPG", "file_name": "IMG_0065.JPG", "file_stem": "IMG_0065", "file_ext": ".jpg", "file_size": 469213.0, "mtime": "2002-12-31T22:06:28+00:00", "mtime_ts": 1041372388.0, "ctime": "2002-12-31T22:06:28+00:00", "sha256_file": "31778e2da13c6dce521cac74fa0c74bdeae612b4ded148c2eeb4e63cca9b7c83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:06:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4464", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:06:30", "EXIF DateTimeDigitized": "2002:12:31 23:06:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "941/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65250", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "941"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0fcf9369bdab0474c51629ce19a8019625a3946ee9b02c7df91e97799c22d7c", "phash": "f2160d2d0fe1f8b2", "dhash": "713c1c9cbd989818", "phash_int": -1.0025993798521998e+18, "collected_at": "2026-05-22T04:30:05.949265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0066.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0066.JPG", "file_name": "IMG_0066.JPG", "file_stem": "IMG_0066", "file_ext": ".jpg", "file_size": 467254.0, "mtime": "2002-12-31T22:06:46+00:00", "mtime_ts": 1041372406.0, "ctime": "2002-12-31T22:06:46+00:00", "sha256_file": "ef779928da228d80b4788aebfe81d9bb4cc15c24409ff061f0ceb8eb4be1743a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:06:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5033", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:06:48", "EXIF DateTimeDigitized": "2002:12:31 23:06:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1073/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65434", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1073"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb3b6e7c5767d991ed5c6a9e6b748b2eeaf9c860c82c2f8629b6a240a51bf3bc", "phash": "c1191e3926e7c3e6", "dhash": "3432d2cb9bd3c064", "phash_int": -4.532558319157001e+18, "collected_at": "2026-05-22T04:30:05.966344+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0067.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0067.JPG", "file_name": "IMG_0067.JPG", "file_stem": "IMG_0067", "file_ext": ".jpg", "file_size": 515610.0, "mtime": "2002-12-31T22:07:26+00:00", "mtime_ts": 1041372446.0, "ctime": "2002-12-31T22:07:26+00:00", "sha256_file": "b230283c3dea542819bef2f728cfe1145f56f742b01209f3fa4d9d078d11c14a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:07:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4666", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:07:28", "EXIF DateTimeDigitized": "2002:12:31 23:07:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "363/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65427", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1815"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4839160776502ffa1eb1ddd85381f9ca9ba1151d9796c0d04db51152fc4c1f37", "phash": "99a33325667ecc62", "dhash": "dbd9b134e4f0f0f4", "phash_int": -7.375995528976348e+18, "collected_at": "2026-05-22T04:30:06.000347+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0068.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0068.JPG", "file_name": "IMG_0068.JPG", "file_stem": "IMG_0068", "file_ext": ".jpg", "file_size": 468076.0, "mtime": "2002-12-31T22:07:46+00:00", "mtime_ts": 1041372466.0, "ctime": "2002-12-31T22:07:46+00:00", "sha256_file": "1e2ec1c0b41d1efa14c79e75a68b86706f3b0fb6b115405c5156b6a3ad4bd723", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:07:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3976", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:07:47", "EXIF DateTimeDigitized": "2002:12:31 23:07:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65250", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bccfc487f62db8d4776e25f3f0afee6d0ce2050115a00d3ef078f8c2dd6dd473", "phash": "8dac312776e3991c", "dhash": "6ab2f262604adaf8", "phash_int": -8.238155572799367e+18, "collected_at": "2026-05-22T04:30:06.011346+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0069.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0069.JPG", "file_name": "IMG_0069.JPG", "file_stem": "IMG_0069", "file_ext": ".jpg", "file_size": 490519.0, "mtime": "2002-12-31T22:08:08+00:00", "mtime_ts": 1041372488.0, "ctime": "2002-12-31T22:08:08+00:00", "sha256_file": "c4e07afcf82ab97d458d1b205f0dba97d9e00023789926e2bef6b90613d73f42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 23:08:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3869", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:31 23:08:09", "EXIF DateTimeDigitized": "2002:12:31 23:08:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1739/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65427", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3478"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ffc78476bf32e6231ccf5e68779989e489018a9260ef5c738a8ff3b99497f76", "phash": "8fd93126e6a30f98", "dhash": "73127a606468f8f8", "phash_int": -8.08137401319168e+18, "collected_at": "2026-05-22T04:30:06.056129+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0070.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0070.JPG", "file_name": "IMG_0070.JPG", "file_stem": "IMG_0070", "file_ext": ".jpg", "file_size": 489362.0, "mtime": "2002-12-31T23:59:22+00:00", "mtime_ts": 1041379162.0, "ctime": "2002-12-31T23:59:22+00:00", "sha256_file": "54dc7b86bc2812679517b31d0a46e81a945bcedec89e6a63abd10b5bd768c236", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:01:01 00:59:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4140", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:01:01 00:59:24", "EXIF DateTimeDigitized": "2003:01:01 00:59:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6b80236ee8b48eb69b01d8f0525d00140f787154a2a3f52094f53fda3ba5ee1", "phash": "c3572a78399a6566", "dhash": "d8ccc8d8d2c9a9c3", "phash_int": -4.370978217488915e+18, "collected_at": "2026-05-22T04:30:06.082456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0071.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0071.JPG", "file_name": "IMG_0071.JPG", "file_stem": "IMG_0071", "file_ext": ".jpg", "file_size": 483218.0, "mtime": "2002-12-31T23:59:30+00:00", "mtime_ts": 1041379170.0, "ctime": "2002-12-31T23:59:30+00:00", "sha256_file": "0d6620fe154dd7abf580021d9a7a94598f02e1d988c6de3c33e10ec5ffb7edbb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:01:01 00:59:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4671", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:01:01 00:59:32", "EXIF DateTimeDigitized": "2003:01:01 00:59:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65451", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8611498d12d54002f516bb9032f8b63271cacb198db55c35d715eed04edf8841", "phash": "8d3152ca2ebda11f", "dhash": "e0f2da2666d63266", "phash_int": -8.27274001218184e+18, "collected_at": "2026-05-22T04:30:06.093453+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0072.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0072.JPG", "file_name": "IMG_0072.JPG", "file_stem": "IMG_0072", "file_ext": ".jpg", "file_size": 474308.0, "mtime": "2002-12-31T23:59:36+00:00", "mtime_ts": 1041379176.0, "ctime": "2002-12-31T23:59:36+00:00", "sha256_file": "18dd5919c0f0c0951881ab3351ec55e4530caa250130b501258f23bd514f1a71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:01:01 00:59:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4178", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:01:01 00:59:38", "EXIF DateTimeDigitized": "2003:01:01 00:59:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b60b151e35a8aca2e15b3bfc6c144caac4e30cb5aac3291b673c4cb4c6fca439", "phash": "c13b3ec299a55a5a", "dhash": "8bc51acacacac6b0", "phash_int": -4.522952395241203e+18, "collected_at": "2026-05-22T04:30:06.119572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0073.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0073.JPG", "file_name": "IMG_0073.JPG", "file_stem": "IMG_0073", "file_ext": ".jpg", "file_size": 585099.0, "mtime": "2002-12-31T23:59:46+00:00", "mtime_ts": 1041379186.0, "ctime": "2002-12-31T23:59:46+00:00", "sha256_file": "e32d7766610b20987c00f241b41bb2bf88dbafff587a573cbb1fd54a44fa71e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:01:01 00:59:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4034", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:01:01 00:59:48", "EXIF DateTimeDigitized": "2003:01:01 00:59:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dae8d6e84c372ff2348afbc039c7fa9bacfaaaa02510a6a6210fa2c6be46e960", "phash": "c64f59b4b82c6347", "dhash": "b0c049c9eccee6c9", "phash_int": -4.157005298320776e+18, "collected_at": "2026-05-22T04:30:06.179968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_0074.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_0074.JPG", "file_name": "IMG_0074.JPG", "file_stem": "IMG_0074", "file_ext": ".jpg", "file_size": 468032.0, "mtime": "2002-12-31T23:59:58+00:00", "mtime_ts": 1041379198.0, "ctime": "2002-12-31T23:59:58+00:00", "sha256_file": "f12843a94d5e146a8aabe81aaa029e481e4f766f5086b1c50bb9e7e197d90b3d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:01:01 01:00:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4326", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:01:01 01:00:00", "EXIF DateTimeDigitized": "2003:01:01 01:00:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43489c546bf3a7d3327a2f3e822d8bec9268678112f6edb0c520ab2a2edff147", "phash": "dc722307cd7cd0b2", "dhash": "a2cc24346064e4e4", "phash_int": -2.5619467216011387e+18, "collected_at": "2026-05-22T04:30:06.190121+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_1448.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_1448.JPG", "file_name": "IMG_1448.JPG", "file_stem": "IMG_1448", "file_ext": ".jpg", "file_size": 586955.0, "mtime": "2002-12-31T13:27:20+00:00", "mtime_ts": 1041341240.0, "ctime": "2002-12-31T13:27:20+00:00", "sha256_file": "81f0d00fdd68d7469e69d6d2ca194c84e88524d0ebbfb1d9bafc2e1a4dabefc2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 14:27:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5939", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:31 14:27:22", "EXIF DateTimeDigitized": "2002:12:31 14:27:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141448", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2815"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c887bd0509b2e17da779c0abb806d53e79ef48e3b36a10e0779ec2d44284922", "phash": "d9fe70df51250740", "dhash": "20292b3239789090", "phash_int": -2.7386274189532836e+18, "collected_at": "2026-05-22T04:30:06.243390+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\12\\12-31\\IMG_1447.JPG", "file_path_relative": "HD02#FOTKY\\2002\\12\\12-31\\IMG_1447.JPG", "file_name": "IMG_1447.JPG", "file_stem": "IMG_1447", "file_ext": ".jpg", "file_size": 468567.0, "mtime": "2002-12-31T13:26:04+00:00", "mtime_ts": 1041341164.0, "ctime": "2002-12-31T13:26:04+00:00", "sha256_file": "a24c9fae53fd536053f43a116530069a257152687783a8c3181a9417cbaaf022", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:31 14:26:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4745", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2002:12:31 14:26:06", "EXIF DateTimeDigitized": "2002:12:31 14:26:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 330, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141447", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5708"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4a36d85e13a7fc50469e0e19ce64df17d6ae7a928e284b391320546aac3f1e9", "phash": "b0ce540aba64b1fb", "dhash": "28a49e1e2d9d9e0e", "phash_int": -5.706531272778273e+18, "collected_at": "2026-05-22T04:30:06.245392+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00007.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00007.JPG", "file_name": "PIC00007.JPG", "file_stem": "PIC00007", "file_ext": ".jpg", "file_size": 228663.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "a614c54a5850b19927443278ce60f6fdc6dfc2a557b5c755957d3c7f0da76ae4", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69094068e1402c0274763d234bde3c53db203b2d94a112ab91de5bda9f41d4a5", "phash": "a0f2057bb76bc231", "dhash": "8d9d958d1d03372e", "phash_int": -6.849406054360694e+18, "collected_at": "2026-05-22T04:30:06.264464+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00006.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00006.JPG", "file_name": "PIC00006.JPG", "file_stem": "PIC00006", "file_ext": ".jpg", "file_size": 217121.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "d6ef723714d533a5ec566e4608a1c54f7fa5334d13925d90bf8b607cd8961a96", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5530e1cae166d0abd3a676395ab6b3edee9b4690367529e639cb9aebb0767b80", "phash": "a8f29066f68df388", "dhash": "8d9d9b1b2f2f77b3", "phash_int": -6.272792559076118e+18, "collected_at": "2026-05-22T04:30:06.270460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00008.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00008.JPG", "file_name": "PIC00008.JPG", "file_stem": "PIC00008", "file_ext": ".jpg", "file_size": 221806.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "8fc850fdfce3fe1a0883e0000cb71fc955f252a9c36c87455993afcb33197bed", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb57847ff20e808e197fd6a4ac73ff8aa7ccaeea6b5dd85c36f033ac755e8876", "phash": "f087e4f01af034fc", "dhash": "8c4626b8299090ad", "phash_int": -1.1146706628556746e+18, "collected_at": "2026-05-22T04:30:06.322460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00009.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00009.JPG", "file_name": "PIC00009.JPG", "file_stem": "PIC00009", "file_ext": ".jpg", "file_size": 218489.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "40b177895764df648c854b9f0bb22bf26ede391a8987c17ab18ab578d78f4841", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "24c752fd47e72dec286a6201c6462b3272c078e5f50d1bf7d05ce008811a3d00", "phash": "8db996cecc18738a", "dhash": "325e5e72e2e26464", "phash_int": -8.234384628738657e+18, "collected_at": "2026-05-22T04:30:06.330462+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00010.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00010.JPG", "file_name": "PIC00010.JPG", "file_stem": "PIC00010", "file_ext": ".jpg", "file_size": 218179.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "ae45ea2f7654e3249d17de83a5fb09ee24d4ef19f7c9c3903bde1a4bcbfa3b05", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6f61092d33c4bcc7465560e595c2120bfad553d2e8b114951f2babc2e580538", "phash": "de3083ce38c8cfb4", "dhash": "3938383120606161", "phash_int": -2.436302476668252e+18, "collected_at": "2026-05-22T04:30:06.375875+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00011.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00011.JPG", "file_name": "PIC00011.JPG", "file_stem": "PIC00011", "file_ext": ".jpg", "file_size": 188678.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "3784fbfca07b6372ff67a3bef6499104f575db9652c728d1d6103c989ea2a43d", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4aa6e974b4aa40083732fb7b206da5c741341655e1194e52eede5af17aa0a4b", "phash": "d7970ee8a046b26d", "dhash": "cc4c4c4c92136165", "phash_int": -2.911842241787547e+18, "collected_at": "2026-05-22T04:30:06.378939+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00012.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00012.JPG", "file_name": "PIC00012.JPG", "file_stem": "PIC00012", "file_ext": ".jpg", "file_size": 200113.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "8823fc96298a3dc0195a39b5cc070a010ad0a05e1217d54f840c92790ace05d8", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c50a6a534d88e3475c2ddf9a5051b262a4b1b9cfe7d91dec8047f5079a436421", "phash": "c2ea7ccc92e78398", "dhash": "e1a1c9e9e9e8e4f0", "phash_int": -4.40156846772142e+18, "collected_at": "2026-05-22T04:30:06.469038+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00013.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00013.JPG", "file_name": "PIC00013.JPG", "file_stem": "PIC00013", "file_ext": ".jpg", "file_size": 205016.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "d269f1c20f696f8ab3aa77d58a2801ea7c8cbb6cf245c3d0a496a32b48da1c44", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0be893a7e8828ebb8c237337fb1988d322be127ba960bccb14513e478ad8df5d", "phash": "95f14e496e786638", "dhash": "a4ce9e9cf6f6ba64", "phash_int": -7.642241015378057e+18, "collected_at": "2026-05-22T04:30:06.474041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00015.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00015.JPG", "file_name": "PIC00015.JPG", "file_stem": "PIC00015", "file_ext": ".jpg", "file_size": 213065.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "11c64b51407a14412e7e14a37aa2e6cd3cb4a3aa7e2df253412a3dd37c00990c", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50a590e12ee0e3795401a11575e7dc0d839e164ffa647bc8c5021baf11c5f2b6", "phash": "82b5d5fa9c9881f8", "dhash": "9e4edeedbdd9f9d1", "phash_int": -9.028074605648511e+18, "collected_at": "2026-05-22T04:30:06.498044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00014.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00014.JPG", "file_name": "PIC00014.JPG", "file_stem": "PIC00014", "file_ext": ".jpg", "file_size": 186837.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "5ad1d21de87c0723deb678c0ea8c2e90835a2a3cb8c18adc678fcfcba26934f7", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45a574d05266a013947b273bac1d00a537f0a9ad2111a1b4457549661ebd4130", "phash": "e0301f9338d69bd9", "dhash": "9f8693839380c083", "phash_int": -2.2922974931573402e+18, "collected_at": "2026-05-22T04:30:06.506041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00016.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00016.JPG", "file_name": "PIC00016.JPG", "file_stem": "PIC00016", "file_ext": ".jpg", "file_size": 198702.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "74cf0997362e736800502b83cbb01c2d00cb1616004e414aa3baf24c8b21f1c5", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca51279f503e82b691333709e8a48725e671d1920ca4e34c05e15b94a500ef85", "phash": "e1edba0f81e0ca87", "dhash": "92128286ca4b9e98", "phash_int": -2.1668712699290719e+18, "collected_at": "2026-05-22T04:30:06.538045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00017.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00017.JPG", "file_name": "PIC00017.JPG", "file_stem": "PIC00017", "file_ext": ".jpg", "file_size": 182831.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "d1c9be7e314083b52698d0c2f67a69cc3710a04682c7e7a0ae91b50346e89801", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63d19812c8762c481edbe1f31cf996090de4761ffd75bbe1c3d922604ca72e97", "phash": "d0f102f808f81ffe", "dhash": "88c00000020011e1", "phash_int": -3.390925780107649e+18, "collected_at": "2026-05-22T04:30:06.554156+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00018.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00018.JPG", "file_name": "PIC00018.JPG", "file_stem": "PIC00018", "file_ext": ".jpg", "file_size": 211948.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "82e7bf2f59092d0912b32332b28d2e5e057bb6cde693ea8517addd9f86c240d1", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60cd7c9cf03bff4501a40e9f955b85809553126457fd3451ceb0d9235cb306cb", "phash": "d0942d9c23f1f1e5", "dhash": "b0b48c88ec909000", "phash_int": -3.417056068626157e+18, "collected_at": "2026-05-22T04:30:06.563245+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00020.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00020.JPG", "file_name": "PIC00020.JPG", "file_stem": "PIC00020", "file_ext": ".jpg", "file_size": 205801.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "1036cc882d5e52d947310065e6473cbd363c523b8184aa3d302d21ef53211e57", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "acf7946c5055d8ebc1fa3f1246162d405cfac06a8cc9ffa423911e4f4c75621f", "phash": "ab90d46f2fd59488", "dhash": "fefffb5b5b139e5a", "phash_int": -6.084129522568556e+18, "collected_at": "2026-05-22T04:30:06.592242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00019.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00019.JPG", "file_name": "PIC00019.JPG", "file_stem": "PIC00019", "file_ext": ".jpg", "file_size": 194326.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "766dfe44eacb61fcbce89e80ed411d72ed5bd708e042cfee9a43de1b51ad5ee2", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b31ae3ae093cc7731fa66ed58d6fe29b0a8bc0573ebca6ee0545b40df6f001e", "phash": "cad71e3a3560c58d", "dhash": "6868c2cb8b93b3bd", "phash_int": -3.8305597227028465e+18, "collected_at": "2026-05-22T04:30:06.597243+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00021.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00021.JPG", "file_name": "PIC00021.JPG", "file_stem": "PIC00021", "file_ext": ".jpg", "file_size": 219152.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "7703b7406f6db7071c42a574da2873855ea3c1ea52958dd3a55b18eececa1d12", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "473980921563819e46de52b4dac0ae63e5436b44f9380e0ae5c83c34f4f84b15", "phash": "ab82d46d2b759583", "dhash": "fefdef4b5b1b5eba", "phash_int": -6.08807018090584e+18, "collected_at": "2026-05-22T04:30:06.628405+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Bez datumu\\PIC00022.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Bez datumu\\PIC00022.JPG", "file_name": "PIC00022.JPG", "file_stem": "PIC00022", "file_ext": ".jpg", "file_size": 218767.0, "mtime": "1997-12-31T23:00:00+00:00", "mtime_ts": 883609200.0, "ctime": "1997-12-31T23:00:00+00:00", "sha256_file": "1b1865908a6bfd230301a1a6b29c35538d3ba0c6d1311f0043205f4a250d69c5", "exif": {}, "format": "JPEG", "mode": "RGB", "width": 1280.0, "height": 960.0, "megapixels": 1.23, "has_transparency": 0.0, "dpi": [144.0, 144.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "80300a464d3574cee6bbc15746ff9cf458200e6094a26cf48c8678fa2074e4e9", "phash": "ab82d46d2b779483", "dhash": "fefdcb4b131b5ebe", "phash_int": -6.088070180905709e+18, "collected_at": "2026-05-22T04:30:06.632406+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 407950.0, "mtime": "2002-10-06T10:35:00+00:00", "mtime_ts": 1033900500.0, "ctime": "2002-10-06T10:35:00+00:00", "sha256_file": "0570602ea9c6642cc3db0f8c18f6b30030b90899f8c46297ce84a6bed1f0da4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 10:35:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3975", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 10:35:01", "EXIF DateTimeDigitized": "2002:10:06 10:35:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[131, 135, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0c803979f5eae9229fd9f31aee8c306a71f088c8aa89374538487f6bcee7ce2", "phash": "877ee01f6b8455a8", "dhash": "70f07069796ceec6", "phash_int": -8.683256605971295e+18, "collected_at": "2026-05-22T04:30:06.733412+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0001_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0001_IMG_2.JPG", "file_name": "100-0001_IMG_2.JPG", "file_stem": "100-0001_IMG_2", "file_ext": ".jpg", "file_size": 977181.0, "mtime": "2002-10-03T20:57:50+00:00", "mtime_ts": 1033678670.0, "ctime": "2002-10-03T20:57:50+00:00", "sha256_file": "378941d4a944c6ae3f2f440e6886c475f4b8b355f7e9ddbcaf6a92bc95cece96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:03 20:57:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4252", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:03 20:57:52", "EXIF DateTimeDigitized": "2002:10:03 20:57:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46f0544a71a6fe037c1838c35970f5efc180dd0e3ccbe4168cb0312eb207526b", "phash": "c3d6295738e610ee", "dhash": "c0c8c88c88c9c393", "phash_int": -4.3352321367040287e+18, "collected_at": "2026-05-22T04:30:06.745412+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 799684.0, "mtime": "2002-10-06T11:33:42+00:00", "mtime_ts": 1033904022.0, "ctime": "2002-10-06T11:33:42+00:00", "sha256_file": "b9d70294b6d5d89e0a70a8481f5384713a4a9848b44c77fdcef2e5030779f6a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 11:33:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5963", "EXIF ExposureTime": "1/320", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 11:33:44", "EXIF DateTimeDigitized": "2002:10:06 11:33:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b70cce5cf4624b209678121cd2b5545cb30817d5516df1354fad1d448158a7c9", "phash": "cf9af0278b68f0e0", "dhash": "49642161676e8303", "phash_int": -3.487210908811727e+18, "collected_at": "2026-05-22T04:30:06.776411+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 621505.0, "mtime": "2002-10-06T12:29:04+00:00", "mtime_ts": 1033907344.0, "ctime": "2002-10-06T12:29:04+00:00", "sha256_file": "1a9b20937c037f3e1f287195fdd32f64394d34c689fc83180ed1b55ca2d23ef5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 12:29:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5866", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 12:29:05", "EXIF DateTimeDigitized": "2002:10:06 12:29:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a62721e0a268c3a3eb3040ec982b494495b17993017f1227947210ca366fbaa", "phash": "cce04c78578fbc34", "dhash": "b397a6693d316362", "phash_int": -3.6838604154402417e+18, "collected_at": "2026-05-22T04:30:06.855415+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0002_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0002_IMG_2.JPG", "file_name": "100-0002_IMG_2.JPG", "file_stem": "100-0002_IMG_2", "file_ext": ".jpg", "file_size": 1156898.0, "mtime": "2002-10-04T10:57:02+00:00", "mtime_ts": 1033729022.0, "ctime": "2002-10-04T10:57:02+00:00", "sha256_file": "43b9fb48b81ea22125e86429cd4c4ea778f176c7a50a27b0e047508711221d11", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 10:57:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6437", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 10:57:03", "EXIF DateTimeDigitized": "2002:10:04 10:57:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be098b9798715ba1f4a4ef4187f86935343538e108f4ee6c3be780d6528debf1", "phash": "eeacc4561f91c466", "dhash": "6627c77b67c4c1e0", "phash_int": -1.248407122512592e+18, "collected_at": "2026-05-22T04:30:06.866416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 735092.0, "mtime": "2002-10-06T13:11:56+00:00", "mtime_ts": 1033909916.0, "ctime": "2002-10-06T13:11:56+00:00", "sha256_file": "47f3e51112dc9a85518f680d93eb1538617eee38113ee69ada25f2daba172463", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:11:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5198", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:11:58", "EXIF DateTimeDigitized": "2002:10:06 13:11:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55db90483562e9b851247f29d75d1749c09046b82144574d1d5234579eea5323", "phash": "9999a4c44b63969f", "dhash": "d09a989ad1d55c4c", "phash_int": -7.378685351484484e+18, "collected_at": "2026-05-22T04:30:06.941753+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0003_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0003_IMG_2.JPG", "file_name": "100-0003_IMG_2.JPG", "file_stem": "100-0003_IMG_2", "file_ext": ".jpg", "file_size": 1167079.0, "mtime": "2002-10-04T10:57:34+00:00", "mtime_ts": 1033729054.0, "ctime": "2002-10-04T10:57:34+00:00", "sha256_file": "43d5c115e9d333d74914529c16793698197b6b0deaeab68386adb69a2f764842", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 10:57:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6164", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 10:57:35", "EXIF DateTimeDigitized": "2002:10:04 10:57:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45cd4585000791e134de2d02acf2ec7568701bc13d78593c580e1ede415c8822", "phash": "c0c14f4f6787ce64", "dhash": "c3d38388939120b0", "phash_int": -4.5572741454642673e+18, "collected_at": "2026-05-22T04:30:06.950749+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0004_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0004_IMG_2.JPG", "file_name": "100-0004_IMG_2.JPG", "file_stem": "100-0004_IMG_2", "file_ext": ".jpg", "file_size": 901044.0, "mtime": "2002-10-04T11:03:12+00:00", "mtime_ts": 1033729392.0, "ctime": "2002-10-04T11:03:12+00:00", "sha256_file": "0088cb05a216b71172c2caf2ee1f1dc9c9ca1d5ea248d23de5dccfb4f775ce25", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 11:03:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5638", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 11:03:14", "EXIF DateTimeDigitized": "2002:10:04 11:03:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6127/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6127"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9dff88c87f99fbac181711479d158cc6524cfc837dc5fb106d49eeea53fe755a", "phash": "adb7e390566a9168", "dhash": "4c5e732776f2c3c3", "phash_int": -5.929020175345349e+18, "collected_at": "2026-05-22T04:30:07.033872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 592755.0, "mtime": "2002-10-06T13:24:16+00:00", "mtime_ts": 1033910656.0, "ctime": "2002-10-06T13:24:16+00:00", "sha256_file": "785996d69e1af56bac6816cea663ccaa7156b31c63a8c2589caad6e553f8088b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:24:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5135", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:24:17", "EXIF DateTimeDigitized": "2002:10:06 13:24:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a48f96651fe2434c89c982753710c4257ede715ad305efeeda7e3e5a278d5d62", "phash": "8d8ed27344cd89f2", "dhash": "f0f572f268faf0f0", "phash_int": -8.246422475151407e+18, "collected_at": "2026-05-22T04:30:07.035868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 563274.0, "mtime": "2002-10-06T13:24:40+00:00", "mtime_ts": 1033910680.0, "ctime": "2002-10-06T13:24:40+00:00", "sha256_file": "fd92efa8c57bff4c5c09e5790fddaabefd0dde95ce032ba764537526419bf857", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:24:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4635", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:24:41", "EXIF DateTimeDigitized": "2002:10:06 13:24:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9dbebe71b0816ae07e2fc54d4eba662746a66cbb0f7f2edbd9e40f2e0531ef84", "phash": "ccd8d2f2b0d4ce07", "dhash": "a8a0f0b0f9e5e4a4", "phash_int": -3.685964355212096e+18, "collected_at": "2026-05-22T04:30:07.099935+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0005_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0005_IMG_2.JPG", "file_name": "100-0005_IMG_2.JPG", "file_stem": "100-0005_IMG_2", "file_ext": ".jpg", "file_size": 1133464.0, "mtime": "2002-10-04T11:07:36+00:00", "mtime_ts": 1033729656.0, "ctime": "2002-10-04T11:07:36+00:00", "sha256_file": "feb07f4a256ded4db9f44773d03d7820317c0ae7080a272f87fd77d7166b7249", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 11:07:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5857", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 11:07:38", "EXIF DateTimeDigitized": "2002:10:04 11:07:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "27883/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "27883"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8ca54f13f148dd15254b1de0823273179e20d385457000e0cee70f949e0e3e4", "phash": "91b1b4e598c39af8", "dhash": "9e9e1bb21242e6b7", "phash_int": -7.948372969128748e+18, "collected_at": "2026-05-22T04:30:07.137984+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 663818.0, "mtime": "2002-10-06T13:53:52+00:00", "mtime_ts": 1033912432.0, "ctime": "2002-10-06T13:53:52+00:00", "sha256_file": "b03a94f5bb31e1d702b59c87cec18d99989d46e8141ac5f5de4f0e1bfc8d9aa9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:53:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7299", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:53:54", "EXIF DateTimeDigitized": "2002:10:06 13:53:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[114, 88, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3562fcae8771866dd2a26868de2c855c78c82351acd3b30d419f99b496ae14e5", "phash": "f65b0c2c326e4e33", "dhash": "2460080c082026a4", "phash_int": -6.949483335344256e+17, "collected_at": "2026-05-22T04:30:07.221111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0007_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0007_IMG_2.JPG", "file_name": "100-0007_IMG_2.JPG", "file_stem": "100-0007_IMG_2", "file_ext": ".jpg", "file_size": 2028483.0, "mtime": "2002-10-04T11:24:56+00:00", "mtime_ts": 1033730696.0, "ctime": "2002-10-04T11:24:56+00:00", "sha256_file": "bce9555e003d8825ed78763ec7ec5ab9f81107a0910f117a35b9424c8371fd9e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 11:24:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4820", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 11:24:57", "EXIF DateTimeDigitized": "2002:10:04 11:24:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "37b6d6527db2b907e9802524cdbf19f7637577ab4d870abab7527b3cd3c5475d", "phash": "d5c23f3a4ac59235", "dhash": "80e6e0c0c33a3636", "phash_int": -3.043800878553919e+18, "collected_at": "2026-05-22T04:30:07.260112+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 568197.0, "mtime": "2002-10-06T13:54:14+00:00", "mtime_ts": 1033912454.0, "ctime": "2002-10-06T13:54:14+00:00", "sha256_file": "c0088633d6003f8b3cea951a1f3dee2620df895c44b95d5ee6e3ae1bd7023f3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:54:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5933", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:54:15", "EXIF DateTimeDigitized": "2002:10:06 13:54:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[114, 152, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5c38d56e912f4cfec76f34cdd3833ecb0b536753ee2d39408411c71f4318da2", "phash": "fc97251c62cc1537", "dhash": "2428343109343707", "phash_int": -2.4568685082154874e+17, "collected_at": "2026-05-22T04:30:07.294998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 652128.0, "mtime": "2002-10-06T13:57:34+00:00", "mtime_ts": 1033912654.0, "ctime": "2002-10-06T13:57:34+00:00", "sha256_file": "a6bb7b0026b40dd46061e85e2db99af264c65e627fa412d4dabf7fe8e38ee09e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 13:57:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7300", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 13:57:35", "EXIF DateTimeDigitized": "2002:10:06 13:57:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8f215d950ce6768fc4e1b309a850647d90fae51118b7a1f26c4d27d28ea19ba", "phash": "8d89486e17b373d2", "dhash": "f3b2f85a6465e5c4", "phash_int": -8.247981604871114e+18, "collected_at": "2026-05-22T04:30:07.321197+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 632840.0, "mtime": "2002-10-06T14:11:30+00:00", "mtime_ts": 1033913490.0, "ctime": "2002-10-06T14:11:30+00:00", "sha256_file": "a8fd78004bba3952c5652504e9b4ed6d070d672a7c5656e8d47a42db2f440c2a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:11:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4517", "EXIF ExposureTime": "1/250", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:11:32", "EXIF DateTimeDigitized": "2002:10:06 14:11:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "300", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2615c966d099a7a4d485af91ea766b443427f8518bc9f319754bcd0b0833fa81", "phash": "8383a6a47d59d3c6", "dhash": "efedf9d866aea3f0", "phash_int": -8.97014280738401e+18, "collected_at": "2026-05-22T04:30:07.364488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0009_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0009_IMG_2.JPG", "file_name": "100-0009_IMG_2.JPG", "file_stem": "100-0009_IMG_2", "file_ext": ".jpg", "file_size": 1952391.0, "mtime": "2002-10-04T11:25:48+00:00", "mtime_ts": 1033730748.0, "ctime": "2002-10-04T11:25:48+00:00", "sha256_file": "39605df8fb20d33f056149df5cafe9fa328dd6a6f7e6b552005956ed81676a41", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 11:25:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5323", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 11:25:49", "EXIF DateTimeDigitized": "2002:10:04 11:25:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Unknown", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82953f5709d3252f97872bf6ce09b0769f012a41d8403eaf2b40746fb38dd447", "phash": "d5c03f3f4ae59026", "dhash": "80e4e0c2933e2636", "phash_int": -3.044363807030407e+18, "collected_at": "2026-05-22T04:30:07.397490+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 781113.0, "mtime": "2002-10-06T14:11:38+00:00", "mtime_ts": 1033913498.0, "ctime": "2002-10-06T14:11:38+00:00", "sha256_file": "a5b7b42638e9db740f2233e39a6b61ee767cff23f0c7e8a6dc2e5670c530b063", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:11:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5562", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:11:39", "EXIF DateTimeDigitized": "2002:10:06 14:11:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bc65b74d464eb613fdfc8b331be3cc85efd47469e18e441a825a85b1b7a5dba", "phash": "a0eca6a4ad2fd863", "dhash": "a6a6a1f7d6d5cccc", "phash_int": -6.850917706926926e+18, "collected_at": "2026-05-22T04:30:07.410491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 616911.0, "mtime": "2002-10-06T14:11:54+00:00", "mtime_ts": 1033913514.0, "ctime": "2002-10-06T14:11:54+00:00", "sha256_file": "a9e1112a5b1be8f63fa0b19b5a7f5a6b37c16da47e2783cf581161df726d6832", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:11:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5405", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:11:56", "EXIF DateTimeDigitized": "2002:10:06 14:11:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "262", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1fd47714cf0d89256238b0834ca2fc06441f3339b3e4b7b89ced59f2d0a7f562", "phash": "b9fd8042c593c79a", "dhash": "86333b0b23cd99ba", "phash_int": -5.044734983314094e+18, "collected_at": "2026-05-22T04:30:07.490425+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0011_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0011_IMG_2.JPG", "file_name": "100-0011_IMG_2.JPG", "file_stem": "100-0011_IMG_2", "file_ext": ".jpg", "file_size": 1227849.0, "mtime": "2002-10-04T11:38:52+00:00", "mtime_ts": 1033731532.0, "ctime": "2002-10-04T11:38:52+00:00", "sha256_file": "01771ba4354486940172c4b7ded5aa56bd3b02f6deba7cd565fd9e059316f7c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 11:38:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5674", "EXIF ExposureTime": "1", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 11:38:53", "EXIF DateTimeDigitized": "2002:10:04 11:38:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2171/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65478", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2171"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6875544a90af235cacdd57ae31766cfe1b65f05a852984d6e419bcc5199d9557", "phash": "bfbce4c33bc0c380", "dhash": "0e2f2d3949c9a633", "phash_int": -4.630574789671468e+18, "collected_at": "2026-05-22T04:30:07.508423+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 767199.0, "mtime": "2002-10-06T14:12:00+00:00", "mtime_ts": 1033913520.0, "ctime": "2002-10-06T14:12:00+00:00", "sha256_file": "36986ce6b97349ceb2c0d41743dc12d633279417510465a5c70343806c208687", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:12:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5893", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:12:02", "EXIF DateTimeDigitized": "2002:10:06 14:12:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "012096eec91c7eb8d3881b180345b2a3726563ce411a080580c17990516dd4b5", "phash": "9a1fd202bc5e2dcc", "dhash": "69697b7b73cbe939", "phash_int": -7.340917958398563e+18, "collected_at": "2026-05-22T04:30:07.573706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0012_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0012_IMG_2.JPG", "file_name": "100-0012_IMG_2.JPG", "file_stem": "100-0012_IMG_2", "file_ext": ".jpg", "file_size": 1473030.0, "mtime": "2002-10-04T12:29:58+00:00", "mtime_ts": 1033734598.0, "ctime": "2002-10-04T12:29:58+00:00", "sha256_file": "694ac01cfbdbb825f62431f832f750985d55d15e7617a3ef220134c4bc665826", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:29:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5445", "EXIF ExposureTime": "3/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:29:59", "EXIF DateTimeDigitized": "2002:10:04 12:29:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65501", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "24", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8d86526dd90f35cf8f1e720094a7f626a64f68086636362a222aa384c4796b5", "phash": "8013cf6e932be4b6", "dhash": "e8f0949bb4a70bf0", "phash_int": -9.217795938474794e+18, "collected_at": "2026-05-22T04:30:07.602088+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 739483.0, "mtime": "2002-10-06T14:33:32+00:00", "mtime_ts": 1033914812.0, "ctime": "2002-10-06T14:33:32+00:00", "sha256_file": "d14de7b0371b584c60e1314fb26ddb92c4a299f5c77bab79c88574f0037f73c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:33:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5315", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:33:34", "EXIF DateTimeDigitized": "2002:10:06 14:33:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d5e56dcf2866be20c1ca5ac9902a6f66b3a434ce809b8eafa7b4d0bc67e6188", "phash": "d894a2a52cf999ae", "dhash": "88ecf03035b231f9", "phash_int": -2.8404666346560814e+18, "collected_at": "2026-05-22T04:30:07.703322+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0013_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0013_IMG_2.JPG", "file_name": "100-0013_IMG_2.JPG", "file_stem": "100-0013_IMG_2", "file_ext": ".jpg", "file_size": 1444876.0, "mtime": "2002-10-04T12:30:18+00:00", "mtime_ts": 1033734618.0, "ctime": "2002-10-04T12:30:18+00:00", "sha256_file": "ceffa05e62f09312fedb17bdd33b703ea7c077ec414719a9740ffc5dcc90bd24", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:30:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5346", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:30:20", "EXIF DateTimeDigitized": "2002:10:04 12:30:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b54024abeeacaa0a9d54fb74f6db79d928e48d7fcaeb60f9e6728a8b14f0a8ab", "phash": "d001d35e8dc27edc", "dhash": "f8d89497362da9e0", "phash_int": -3.45825063578511e+18, "collected_at": "2026-05-22T04:30:07.708321+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 550757.0, "mtime": "2002-10-06T14:34:06+00:00", "mtime_ts": 1033914846.0, "ctime": "2002-10-06T14:34:06+00:00", "sha256_file": "c6613d8a6020322afde4d6027093ded370752601ecce894e6500b01408e9f6dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:34:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5163", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:34:08", "EXIF DateTimeDigitized": "2002:10:06 14:34:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 81, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c85c89de0219f2c00d3e0523e96ef80a08e0d6e5bcb5cfeea32c2a4a68cc631b", "phash": "e6d61b1ce2c63833", "dhash": "696840040636d2c1", "phash_int": -1.8132319890923704e+18, "collected_at": "2026-05-22T04:30:07.802431+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0014_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0014_IMG_2.JPG", "file_name": "100-0014_IMG_2.JPG", "file_stem": "100-0014_IMG_2", "file_ext": ".jpg", "file_size": 1027664.0, "mtime": "2002-10-04T12:30:40+00:00", "mtime_ts": 1033734640.0, "ctime": "2002-10-04T12:30:40+00:00", "sha256_file": "0fd5d4db9e3cee4c18908f1147fdacac684fa606a1c07fd494f0b3cc4b5c9b4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:30:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3789", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:30:42", "EXIF DateTimeDigitized": "2002:10:04 12:30:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "366315b5ba8a9abf58586c01eee2f38e517c1a9b3f9a6db930ac19cf590da9d9", "phash": "8178877887aafe83", "dhash": "e8fadc95922be4e0", "phash_int": -9.117388493869613e+18, "collected_at": "2026-05-22T04:30:07.805429+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0015_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0015_IMG_2.JPG", "file_name": "100-0015_IMG_2.JPG", "file_stem": "100-0015_IMG_2", "file_ext": ".jpg", "file_size": 808037.0, "mtime": "2002-10-04T12:31:06+00:00", "mtime_ts": 1033734666.0, "ctime": "2002-10-04T12:31:06+00:00", "sha256_file": "66d5f11da8bff7eda9f996e415669d54163483f2e8475f0d772f78e9d562f992", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:31:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4856", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:31:08", "EXIF DateTimeDigitized": "2002:10:04 12:31:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c649f8e10760f9162bcac979b74e011dbf4f5b35ab272511e2708858cb46d17c", "phash": "d891c6b98276fd22", "dhash": "68f8dc9d9332aded", "phash_int": -2.8412713898339866e+18, "collected_at": "2026-05-22T04:30:07.884432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1078626.0, "mtime": "2002-10-06T14:48:52+00:00", "mtime_ts": 1033915732.0, "ctime": "2002-10-06T14:48:52+00:00", "sha256_file": "f4d9ae55d11298dc1a657558a15c294bc261af69cd1eca09d3e678a7783a0fa3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:48:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6841", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:48:53", "EXIF DateTimeDigitized": "2002:10:06 14:48:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "320e92569bb410fe1962375f1c71d8d87da77a8bd214ab705da96e705d01fd7c", "phash": "c22eb94e79813ce5", "dhash": "f3cdccc9c9e5d092", "phash_int": -4.4544192347257416e+18, "collected_at": "2026-05-22T04:30:07.896432+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0016_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0016_IMG_2.JPG", "file_name": "100-0016_IMG_2.JPG", "file_stem": "100-0016_IMG_2", "file_ext": ".jpg", "file_size": 645630.0, "mtime": "2002-10-04T12:31:26+00:00", "mtime_ts": 1033734686.0, "ctime": "2002-10-04T12:31:26+00:00", "sha256_file": "e01f075be1d6029937ab3815e2eaf6d012b3251f32f9f75ac69c9ff60599a233", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:31:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3632", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:31:27", "EXIF DateTimeDigitized": "2002:10:04 12:31:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65498", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3940648ee422a7caf270bd3029556f0be1fbef406bc621f68e8a53d34c7d45a8", "phash": "b9b9d684cb948791", "dhash": "b4333b333b2aace9", "phash_int": -5.063780440161876e+18, "collected_at": "2026-05-22T04:30:07.926036+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 1089739.0, "mtime": "2002-10-06T14:53:12+00:00", "mtime_ts": 1033915992.0, "ctime": "2002-10-06T14:53:12+00:00", "sha256_file": "1e32dfa7e92d722173748953dd4e7d1d0f9ecbfb9f903249b3748820797b2b56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 14:53:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6505", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 14:53:13", "EXIF DateTimeDigitized": "2002:10:06 14:53:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65476", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8ca9a0f969b3e5504a54c1c14069a418de5756f7bd188338b54d5c10f80636b2", "phash": "82bfd166364f68e0", "dhash": "2e9c8dedadc4c498", "phash_int": -9.025264891299142e+18, "collected_at": "2026-05-22T04:30:07.955035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0017_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0017_IMG_2.JPG", "file_name": "100-0017_IMG_2.JPG", "file_stem": "100-0017_IMG_2", "file_ext": ".jpg", "file_size": 618955.0, "mtime": "2002-10-04T12:31:32+00:00", "mtime_ts": 1033734692.0, "ctime": "2002-10-04T12:31:32+00:00", "sha256_file": "942abc1e0e30577492f1385dcab165da7d4e7b367d46d84379a0354a2932304d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:31:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3603", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:31:34", "EXIF DateTimeDigitized": "2002:10:04 12:31:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7973/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7973"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d18aee84cd8463f7001d601967dcadb8b1ddfa75e12a4c74b47c08483b5b197b", "phash": "bdb966b4cb90c483", "dhash": "333333336bac8cad", "phash_int": -4.775673003154292e+18, "collected_at": "2026-05-22T04:30:07.996037+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 976679.0, "mtime": "2002-10-06T16:24:16+00:00", "mtime_ts": 1033921456.0, "ctime": "2002-10-06T16:24:16+00:00", "sha256_file": "620cfd8da26ced358b1fcfa892c547c4d2072dafeae62b44f7b7f7b75764c0f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 16:24:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6602", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 16:24:18", "EXIF DateTimeDigitized": "2002:10:06 16:24:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "564/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 76, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "155", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4512"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aed2f702191d93a473d56d48f8564653d989b6489e3ad17f02ba0bd4ae8ee58d", "phash": "c1e42cbf73c81d31", "dhash": "85e4e2c9c83aabc9", "phash_int": -4.47540292890656e+18, "collected_at": "2026-05-22T04:30:08.036041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0018_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0018_IMG_2.JPG", "file_name": "100-0018_IMG_2.JPG", "file_stem": "100-0018_IMG_2", "file_ext": ".jpg", "file_size": 616251.0, "mtime": "2002-10-04T12:31:38+00:00", "mtime_ts": 1033734698.0, "ctime": "2002-10-04T12:31:38+00:00", "sha256_file": "3b604039d80e2b567d7661fe8a3f0c54d82853e19fcc33837823cddacee6b4d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:31:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3568", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:31:39", "EXIF DateTimeDigitized": "2002:10:04 12:31:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65498", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d878409d2d8c0c7814e86c4da20fcfbbfa37d978c5404a6deaed19a777e5085f", "phash": "b8bbe4918695c695", "dhash": "343333332bab8ead", "phash_int": -5.135259636406565e+18, "collected_at": "2026-05-22T04:30:08.045041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 1129963.0, "mtime": "2002-10-06T16:38:06+00:00", "mtime_ts": 1033922286.0, "ctime": "2002-10-06T16:38:06+00:00", "sha256_file": "97330599e6549f6ec232085e4b364b20cc94095b900b871a4a02411ee24e2416", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 16:38:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7405", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 16:38:08", "EXIF DateTimeDigitized": "2002:10:06 16:38:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1169/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4676"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "624a1925630bc3c988bf75e960728a862b9be8b2525020fa0b81d9b756a522f3", "phash": "eb8556022dc757c6", "dhash": "eb8bd253d3d98933", "phash_int": -1.4756787355360072e+18, "collected_at": "2026-05-22T04:30:08.127570+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0019_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0019_IMG_2.JPG", "file_name": "100-0019_IMG_2.JPG", "file_stem": "100-0019_IMG_2", "file_ext": ".jpg", "file_size": 1236168.0, "mtime": "2002-10-04T12:32:02+00:00", "mtime_ts": 1033734722.0, "ctime": "2002-10-04T12:32:02+00:00", "sha256_file": "f2066a0fa1f9634d42f59b65e912e938c4f7e373ed021728f0deb9cc1f0068c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:32:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3939", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:32:04", "EXIF DateTimeDigitized": "2002:10:04 12:32:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2947/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Unknown", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11788"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cee1fc347bb198ec77739c01ffe588fa708e36b90fc9c33fe89c797410ca693", "phash": "bcbbe484839087db", "dhash": "bc3b3b333b64b4c6", "phash_int": -4.847029316140104e+18, "collected_at": "2026-05-22T04:30:08.169575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 1072372.0, "mtime": "2002-10-06T16:39:00+00:00", "mtime_ts": 1033922340.0, "ctime": "2002-10-06T16:39:00+00:00", "sha256_file": "856757b8fd4cd9f419ed1d0a7a0fced8dc79c273efe9f678e07d3803708103d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 16:39:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5516", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 16:39:02", "EXIF DateTimeDigitized": "2002:10:06 16:39:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1527/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65498", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1527"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "37424926a4ed2ccf9d25d688569a4678756304a5657ffac3deb301bb24c00749", "phash": "8b3c61d657c819b3", "dhash": "b636337369d9d9d9", "phash_int": -8.413742430611302e+18, "collected_at": "2026-05-22T04:30:08.206572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 472945.0, "mtime": "2002-10-06T16:40:16+00:00", "mtime_ts": 1033922416.0, "ctime": "2002-10-06T16:40:16+00:00", "sha256_file": "f6ce19945202d6407d6779990a6073cf6e91e67244424ad037ff4a6be686ae2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:06 16:40:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4946", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:06 16:40:18", "EXIF DateTimeDigitized": "2002:10:06 16:40:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "58", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "152", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb3109ddb5d113f1aec56050acbdca5b4602be062bcd8a4d1bd9fec46eb251ef", "phash": "c1c173bb9d646469", "dhash": "d8d8c0e2f2e0c4e2", "phash_int": -4.4851765042476227e+18, "collected_at": "2026-05-22T04:30:08.210572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0021_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0021_IMG_2.JPG", "file_name": "100-0021_IMG_2.JPG", "file_stem": "100-0021_IMG_2", "file_ext": ".jpg", "file_size": 674641.0, "mtime": "2002-10-04T12:41:48+00:00", "mtime_ts": 1033735308.0, "ctime": "2002-10-04T12:41:48+00:00", "sha256_file": "bbcf4e7d62befc7803f60a17ad150d5392a9a56c7a6cc87e572d661686bd8f91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:41:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4126", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:41:49", "EXIF DateTimeDigitized": "2002:10:04 12:41:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8cf27f0881d0d064904d1d199c12fd2a8a2e0ee505f87e3555d3c0171204756", "phash": "c97366d871a61b2c", "dhash": "c0f05051b2b2f0ec", "phash_int": -3.9306849699586304e+18, "collected_at": "2026-05-22T04:30:08.298576+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 771305.0, "mtime": "2002-10-04T12:42:26+00:00", "mtime_ts": 1033735346.0, "ctime": "2002-10-04T12:42:26+00:00", "sha256_file": "b388caa16c18f86b2b302d541e901b7a156f276b26b4d3fdb55736be6f45c1ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 12:42:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3818", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 12:42:28", "EXIF DateTimeDigitized": "2002:10:04 12:42:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85096ae25bcc6c75fe43378b680e26ea4094be02bd07a565c4c8e944c493687d", "phash": "d6df7162c821315e", "dhash": "406068e0a0c840e0", "phash_int": -2.9635253607081446e+18, "collected_at": "2026-05-22T04:30:08.304580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 1161856.0, "mtime": "2002-10-04T13:54:34+00:00", "mtime_ts": 1033739674.0, "ctime": "2002-10-04T13:54:34+00:00", "sha256_file": "b5a938d9a3fa6a3d038e84d6291ba1d33001caff4c52e7451d57e5ae8137a353", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 13:54:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4767", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 13:54:36", "EXIF DateTimeDigitized": "2002:10:04 13:54:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "197", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb9d57be080edf8d6a860f7d0a943ebaf75704cfc91267fa0d9ad2969313c36d", "phash": "c1838599346e73e7", "dhash": "d0c3e97092b167e6", "phash_int": -4.5026083093842196e+18, "collected_at": "2026-05-22T04:30:08.394137+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 1194459.0, "mtime": "2002-10-04T13:54:42+00:00", "mtime_ts": 1033739682.0, "ctime": "2002-10-04T13:54:42+00:00", "sha256_file": "7761edb5a3663801962c85ded05ff1e6aec103163f992266935d21908c213db7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 13:54:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4614", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 13:54:44", "EXIF DateTimeDigitized": "2002:10:04 13:54:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af029d1190a923341dbd220f75fd73ee495025aa11c3f2a075bc7649eb61df5d", "phash": "8a828fb1355c74ee", "dhash": "d1c1eda816d86162", "phash_int": -8.466046358235876e+18, "collected_at": "2026-05-22T04:30:08.410137+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 877125.0, "mtime": "2002-10-04T13:56:12+00:00", "mtime_ts": 1033739772.0, "ctime": "2002-10-04T13:56:12+00:00", "sha256_file": "9e9ad640e8553d3dee9f6febedd42339797a6abeadfbeea7c9a6894419895102", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 13:56:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4575", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 13:56:13", "EXIF DateTimeDigitized": "2002:10:04 13:56:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5bb3cf4d09f68cd40de259c7faa113b4da07de68fcab1f3b8402b59b6a64749c", "phash": "d52f81d46b87d868", "dhash": "e286314820b4f898", "phash_int": -3.085104470388386e+18, "collected_at": "2026-05-22T04:30:08.508631+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 918242.0, "mtime": "2002-10-04T13:59:42+00:00", "mtime_ts": 1033739982.0, "ctime": "2002-10-04T13:59:42+00:00", "sha256_file": "3ee1b69e363a0116aae97ba5399c70e493e66f94c31482aeb0018c6b207dfde8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 13:59:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4884", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 13:59:43", "EXIF DateTimeDigitized": "2002:10:04 13:59:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "311/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2488"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2d9dad46f29bcd7f32580b7902d0b49953bd45d828bb1a3dc3acb7dfbffdd3bc", "phash": "ac5b52a4355ad473", "dhash": "392b2b1626b667c6", "phash_int": -6.027132811082018e+18, "collected_at": "2026-05-22T04:30:08.520628+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 842257.0, "mtime": "2002-10-04T13:59:52+00:00", "mtime_ts": 1033739992.0, "ctime": "2002-10-04T13:59:52+00:00", "sha256_file": "e6ddfc9a91ddc55a417ab95683ebb635e988a8363ceb1cbf706b14e11a46aa22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 13:59:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5361", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 13:59:53", "EXIF DateTimeDigitized": "2002:10:04 13:59:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2747/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2747"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef2d95c75cdaf7a4a589604c37baae667a1cd0109365ecab5332cd8878e0000f", "phash": "8e92b447b95ac547", "dhash": "adace4d3d3e766e6", "phash_int": -8.173272153578618e+18, "collected_at": "2026-05-22T04:30:08.607726+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 1268261.0, "mtime": "2002-10-04T14:00:36+00:00", "mtime_ts": 1033740036.0, "ctime": "2002-10-04T14:00:36+00:00", "sha256_file": "48a3cc9868139e1b02438b5b3279f9bf2e5fa3f2065b9128b59f555ee479c95a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 14:00:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6097", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 14:00:37", "EXIF DateTimeDigitized": "2002:10:04 14:00:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "482/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3856"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0141b8921a5d33f1b960139784b91d8a1d74e991520a502c4932548ed9b1ac7", "phash": "ecfada8f45483a11", "dhash": "61251106d6230200", "phash_int": -1.370542827703355e+18, "collected_at": "2026-05-22T04:30:08.622913+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 610947.0, "mtime": "2002-10-04T14:01:12+00:00", "mtime_ts": 1033740072.0, "ctime": "2002-10-04T14:01:12+00:00", "sha256_file": "a2aaed4cf287a9762f7208053b182b4719867c32e5d13dc8e0e1f2757a8e0c1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 14:01:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3281", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 14:01:14", "EXIF DateTimeDigitized": "2002:10:04 14:01:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "346", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6279dd00f552e2ebfd9bb66e077143eb5bf71b90128661ea37e62d1dbb1af61", "phash": "c0dabe2e5958c6a6", "dhash": "c100c0f0e4c4a068", "phash_int": -4.550115367227702e+18, "collected_at": "2026-05-22T04:30:08.770193+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1004048.0, "mtime": "2002-10-04T15:30:44+00:00", "mtime_ts": 1033745444.0, "ctime": "2002-10-04T15:30:44+00:00", "sha256_file": "1b0ee6d3aa94f11dc103b3351e9a16e9fedb823709990d026d463250498808ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:30:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6551", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:30:45", "EXIF DateTimeDigitized": "2002:10:04 15:30:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3107/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "152", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3107"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c77d12f131931e2e12af31a7268e61a31eb2bc2f8d940e25a29218517ed7727", "phash": "85792a60977fdd80", "dhash": "99dbd656d4d6d7df", "phash_int": -8.828979000136181e+18, "collected_at": "2026-05-22T04:30:09.181859+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1661136.0, "mtime": "2002-10-04T15:31:00+00:00", "mtime_ts": 1033745460.0, "ctime": "2002-10-04T15:31:00+00:00", "sha256_file": "3863ef29ca0b24dbacf9aa5b2f769dc97c7509752d153bdb7f11d63098743b3b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:31:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6715", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:31:01", "EXIF DateTimeDigitized": "2002:10:04 15:31:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7933/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7933"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db840b8a16a79156a68fe4ea0188f868585da4b111aecc5cbc6e68bb0cabbe54", "phash": "917da85a9a36c43e", "dhash": "1992e6e8e8f8adfb", "phash_int": -7.963023459033366e+18, "collected_at": "2026-05-22T04:30:09.311864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1279343.0, "mtime": "2002-10-04T15:35:20+00:00", "mtime_ts": 1033745720.0, "ctime": "2002-10-04T15:35:20+00:00", "sha256_file": "5888944ca69a307388e18ebfc98153c544e198e9f02b9d4a108ad866e89addd5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:35:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5072", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:35:21", "EXIF DateTimeDigitized": "2002:10:04 15:35:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d942505cc0debbc2852e104fbcf58cd7cf79e309fee7b3bbb467e75273a11c15", "phash": "8595d1c3caf07476", "dhash": "e0eaaef268e8f0f0", "phash_int": -8.820913656281665e+18, "collected_at": "2026-05-22T04:30:09.391863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1660218.0, "mtime": "2002-10-04T15:32:08+00:00", "mtime_ts": 1033745528.0, "ctime": "2002-10-04T15:32:08+00:00", "sha256_file": "7a0cb9bd04a661f51de191884564f477966fec2b4c0e9926598817f5f05e9720", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:32:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6555", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:32:10", "EXIF DateTimeDigitized": "2002:10:04 15:32:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6e1cc5fd421307c388b6dfbc27880b901f952b377360af6768b37ca4676fb72", "phash": "cfcf8f60c29b3070", "dhash": "617170f0b0b351d9", "phash_int": -3.4723991419347804e+18, "collected_at": "2026-05-22T04:30:09.439865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 1015514.0, "mtime": "2002-10-04T15:35:32+00:00", "mtime_ts": 1033745732.0, "ctime": "2002-10-04T15:35:32+00:00", "sha256_file": "546a9dae4a07812e9483fced2c385c1227b0437205c6a2fbf1b8ecb8a3b51019", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:35:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5079", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:35:33", "EXIF DateTimeDigitized": "2002:10:04 15:35:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1313/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "262", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13130"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c1f8d3e9ee572a84f041cacbc0ee9688f41364504e69b8f95b7f100ed86e8b6", "phash": "e71c2cf1dc0786f0", "dhash": "3627644004884447", "phash_int": -1.7935091343100787e+18, "collected_at": "2026-05-22T04:30:09.482868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 986821.0, "mtime": "2002-10-04T15:37:10+00:00", "mtime_ts": 1033745830.0, "ctime": "2002-10-04T15:37:10+00:00", "sha256_file": "fba506fa26cd6b36232a84d803481e7374a1c379e5e5ec072db6ebb2d13f6f91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:37:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5815", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:37:11", "EXIF DateTimeDigitized": "2002:10:04 15:37:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2828d8c8f6998a41162b12ec1e2e5a2e31317a8c32a8474172b84289bbcfd7d9", "phash": "d49c94362b8de9d1", "dhash": "b4b4b0315d94b82a", "phash_int": -3.126461080922101e+18, "collected_at": "2026-05-22T04:30:09.523867+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 1425960.0, "mtime": "2002-10-04T15:46:58+00:00", "mtime_ts": 1033746418.0, "ctime": "2002-10-04T15:46:58+00:00", "sha256_file": "a056ec300c397ac68306cab0f311291bb86e6f7f2e3a34c6916ab4f40d02e049", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:46:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6933", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:46:59", "EXIF DateTimeDigitized": "2002:10:04 15:46:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fad32bf8fe0d30e40c27623589172ca1dcb1e8f8b641745d4c4852186c11d99c", "phash": "9fe6941866d0e72c", "dhash": "747c4e453378f87c", "phash_int": -6.924684544510466e+18, "collected_at": "2026-05-22T04:30:09.577873+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0038_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0038_IMG.JPG", "file_name": "100-0038_IMG.JPG", "file_stem": "100-0038_IMG", "file_ext": ".jpg", "file_size": 946880.0, "mtime": "2002-10-04T15:47:10+00:00", "mtime_ts": 1033746430.0, "ctime": "2002-10-04T15:47:10+00:00", "sha256_file": "464a49822e8b874e1df999a642a85028d0dd54c7ee2d4478069c265c2ea762d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 15:47:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6543", "EXIF ExposureTime": "1/320", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 15:47:11", "EXIF DateTimeDigitized": "2002:10:04 15:47:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "296", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5930481cb9b401f300c4e2ad06a2d73f4046198b6a562329a70e2343cfe1f57", "phash": "da3d0f6335ceca80", "dhash": "501ab8149ca1e0e4", "phash_int": -2.721001681082988e+18, "collected_at": "2026-05-22T04:30:09.589873+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 1031324.0, "mtime": "2002-10-04T16:46:00+00:00", "mtime_ts": 1033749960.0, "ctime": "2002-10-04T16:46:00+00:00", "sha256_file": "151b220b767c6e0377118db9d3022af61834ab0441dc98b20f22316b6d5460e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 16:46:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5912", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 16:46:01", "EXIF DateTimeDigitized": "2002:10:04 16:46:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1313/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13130"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63624ee5d3149b22bbcfcf32ecb26133e9d1cf82181a8f1dbdb28adb461112b1", "phash": "d582884fd970667d", "dhash": "cce4cc0c4a6ab212", "phash_int": -3.0617349201267e+18, "collected_at": "2026-05-22T04:30:09.640247+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 1091959.0, "mtime": "2002-10-04T16:46:10+00:00", "mtime_ts": 1033749970.0, "ctime": "2002-10-04T16:46:10+00:00", "sha256_file": "737fb9cdf90f4c6d7207959a8d5eb2fc10bfd2ab0fc52ee46b4118538b541c12", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 16:46:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5875", "EXIF ExposureTime": "1/320", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 16:46:11", "EXIF DateTimeDigitized": "2002:10:04 16:46:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d6b9820c51c026ad3cc0e5e9479d3639e74e327c7991210b6cf242131bb0827", "phash": "fafd0941971e6838", "dhash": "e413316dcdcaa5a9", "phash_int": -3.6112221780689504e+17, "collected_at": "2026-05-22T04:30:09.648553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 875941.0, "mtime": "2002-10-04T16:46:24+00:00", "mtime_ts": 1033749984.0, "ctime": "2002-10-04T16:46:24+00:00", "sha256_file": "ec827a558956134c6b9ca81d45f6894931cd9d1caf3fdd4ecd56d006b509bfc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 16:46:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5242", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 16:46:26", "EXIF DateTimeDigitized": "2002:10:04 16:46:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2185f5febde48a94ee97a8550c20c9735293a8b20dcf123b45f7873afb1361f6", "phash": "fbc7c0461fd8f005", "dhash": "434b0b0b4b09892b", "phash_int": -3.040630424096645e+17, "collected_at": "2026-05-22T04:30:09.705357+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 845690.0, "mtime": "2002-10-04T16:46:14+00:00", "mtime_ts": 1033749974.0, "ctime": "2002-10-04T16:46:14+00:00", "sha256_file": "367e604f774aecee4fa4c0b1812630887b95718162bbbfa3bf5567aacabdd759", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 16:46:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5035", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 16:46:16", "EXIF DateTimeDigitized": "2002:10:04 16:46:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9357a978b715a3a62f59e586d04397a7e3e609df68882b3b5828e49715db32a8", "phash": "8080cadd757e2abb", "dhash": "f0f0cdaeb6b45969", "phash_int": -9.187120187328026e+18, "collected_at": "2026-05-22T04:30:09.706357+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 954420.0, "mtime": "2002-10-04T18:17:44+00:00", "mtime_ts": 1033755464.0, "ctime": "2002-10-04T18:17:44+00:00", "sha256_file": "fd7d0de75f41adb45bbe3ca7e603e0e828dc53253a07f752e76626134798a9be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:17:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5525", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:17:46", "EXIF DateTimeDigitized": "2002:10:04 18:17:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "677462ed671fdf1426cd771c3ad136ddb2e94f4da98bc2ae7908a7804889e711", "phash": "fc8305860f7cc0df", "dhash": "0406052505053724", "phash_int": -2.5135108085902518e+17, "collected_at": "2026-05-22T04:30:09.779362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 909920.0, "mtime": "2002-10-04T18:18:06+00:00", "mtime_ts": 1033755486.0, "ctime": "2002-10-04T18:18:06+00:00", "sha256_file": "5c2395a837b91ea55fb2b643639644c5b93fc174153b6a9f9940b5d8366f743d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:18:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4686", "EXIF ExposureTime": "1/15", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:18:08", "EXIF DateTimeDigitized": "2002:10:04 18:18:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "233/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "148", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9320"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4104085cfea64eb3876be570c3412b2c2b6491378beeef841b8ea090687004d3", "phash": "e424a3668dce72f8", "dhash": "ef8694b4b42ccdd3", "phash_int": -2.0072998730392896e+18, "collected_at": "2026-05-22T04:30:09.787447+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 951091.0, "mtime": "2002-10-04T18:18:18+00:00", "mtime_ts": 1033755498.0, "ctime": "2002-10-04T18:18:18+00:00", "sha256_file": "3a2c29809fc9c244992cfb80cc0f1175d7db8ed52d77851db41579afdfef8336", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:18:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5276", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:18:19", "EXIF DateTimeDigitized": "2002:10:04 18:18:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "181", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "656b2a5b4687684bcc16cab4f30497108615d1846a9a4c0264c61fab55b933be", "phash": "f6441f1ca283f8ec", "dhash": "2d08058d0c154b09", "phash_int": -7.014014341168515e+17, "collected_at": "2026-05-22T04:30:09.815449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 816787.0, "mtime": "2002-10-04T18:20:04+00:00", "mtime_ts": 1033755604.0, "ctime": "2002-10-04T18:20:04+00:00", "sha256_file": "d1a6a34517f9d91bbe2cc0cc2f2d1c4eef7c3b2486b4aafb8c3251a3955c2009", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:20:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3795", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:20:05", "EXIF DateTimeDigitized": "2002:10:04 18:20:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "286946ed37e9a7c96299016afb27e07471a97b857a3607e6d8ff8c1e727c6a38", "phash": "95c4f8f6681f8721", "dhash": "7091ece8f46c1899", "phash_int": -7.65471972943046e+18, "collected_at": "2026-05-22T04:30:09.905604+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 813854.0, "mtime": "2002-10-04T18:19:54+00:00", "mtime_ts": 1033755594.0, "ctime": "2002-10-04T18:19:54+00:00", "sha256_file": "0c5ddcd33c906701dea3cc27bfd7188466a8d02909d4d8aa58a37f99bc613f09", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:19:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3796", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:19:55", "EXIF DateTimeDigitized": "2002:10:04 18:19:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a77434cc112b29d0e23fb6bb94c71c18741b657d53c649302f922346c1fd0574", "phash": "94ccf2f46b3e8503", "dhash": "70d1e470d6acac58", "phash_int": -7.724532129262042e+18, "collected_at": "2026-05-22T04:30:09.911607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 877121.0, "mtime": "2002-10-04T18:22:46+00:00", "mtime_ts": 1033755766.0, "ctime": "2002-10-04T18:22:46+00:00", "sha256_file": "dbab76aff2366f35d6ef73105e10d2b089334a673ca8177a0dadd9af165cc670", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:22:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5143", "EXIF ExposureTime": "1/20", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:22:48", "EXIF DateTimeDigitized": "2002:10:04 18:22:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "569fcd01e4b72355fa4915af98035755940c5d5440c5a1f5b7322fa30d395276", "phash": "e7f70911c2c03e7c", "dhash": "47470604041cb263", "phash_int": -1.7319055598141937e+18, "collected_at": "2026-05-22T04:30:09.996675+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 1005736.0, "mtime": "2002-10-04T18:27:58+00:00", "mtime_ts": 1033756078.0, "ctime": "2002-10-04T18:27:58+00:00", "sha256_file": "83d54e0e1e8c09f09427075f101e2e6c5c53fb896f3965eade69127bbdc54035", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:27:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4094", "EXIF ExposureTime": "1/20", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:27:59", "EXIF DateTimeDigitized": "2002:10:04 18:27:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[80, 38, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "176", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b1f3888d2811b58942f83447ac5e868713fbc2af9ca65bbd523e2b3994783a2", "phash": "8c96979336336ccc", "dhash": "6860b3b7b3b33373", "phash_int": -8.316293003367716e+18, "collected_at": "2026-05-22T04:30:10.011767+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 817301.0, "mtime": "2002-10-04T20:14:32+00:00", "mtime_ts": 1033762472.0, "ctime": "2002-10-04T20:14:32+00:00", "sha256_file": "98cde8aacfb1d65ec03aa382e52c08b84cdc739e88eb513a5d847dee43af489f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 20:14:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4723", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 20:14:33", "EXIF DateTimeDigitized": "2002:10:04 20:14:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ee86fe77b1dc442815883c095d79c19a28011e8ff9c6b67c04a1776214dcb7c", "phash": "92596bd6e4a99169", "dhash": "a0f95bfc6cec7b53", "phash_int": -7.901165500541334e+18, "collected_at": "2026-05-22T04:30:10.076768+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 1011050.0, "mtime": "2002-10-04T18:28:12+00:00", "mtime_ts": 1033756092.0, "ctime": "2002-10-04T18:28:12+00:00", "sha256_file": "b0eb0c1c3277ff4bd57422c06dcbb0222ba06c1a16c22e3f09874b0a6c530e4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 18:28:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4401", "EXIF ExposureTime": "1/15", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 18:28:14", "EXIF DateTimeDigitized": "2002:10:04 18:28:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[101, 34, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "166", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e91a19c6906ad7df6e80c883368ea7a44cbf33186428c98be70524fd8b21c1a8", "phash": "9897969725666959", "dhash": "6470f3d393f1b131", "phash_int": -7.4513214825495e+18, "collected_at": "2026-05-22T04:30:10.084769+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 680508.0, "mtime": "2002-10-04T20:14:44+00:00", "mtime_ts": 1033762484.0, "ctime": "2002-10-04T20:14:44+00:00", "sha256_file": "6b5c965d7d8b5549f75f23857f5d1c035edce727c4af30fe2944f6a8307f6065", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 20:14:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4262", "EXIF ExposureTime": "1/2", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 20:14:45", "EXIF DateTimeDigitized": "2002:10:04 20:14:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "1", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "32", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b953ff1dfff17de2d1d4875cfe147f65df88de59f7e7dfcf8b1d86610422e50", "phash": "cc3733dc8ec03732", "dhash": "20d009e33033b284", "phash_int": -3.731456743872383e+18, "collected_at": "2026-05-22T04:30:10.120928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 1104981.0, "mtime": "2002-10-04T22:19:06+00:00", "mtime_ts": 1033769946.0, "ctime": "2002-10-04T22:19:06+00:00", "sha256_file": "58cb1a92aea90778cd95dda72e5b58321e7ee4b13ea3ef5cdf12913e0be23d99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:19:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6115", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:19:08", "EXIF DateTimeDigitized": "2002:10:04 22:19:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65503", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09320c14cdcf49275281120ed8889bedb02b5dc95f9d21e77a4bf059c20f8cce", "phash": "8363622c95db3e2e", "dhash": "c9c8c9daf677f1f0", "phash_int": -8.97922528841438e+18, "collected_at": "2026-05-22T04:30:10.188122+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 476916.0, "mtime": "2002-10-04T22:19:52+00:00", "mtime_ts": 1033769992.0, "ctime": "2002-10-04T22:19:52+00:00", "sha256_file": "9c9884ec999002fe46791df612ece4e3692a5fd0c9e8c971ca08912bafb34db4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:19:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3672", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:19:54", "EXIF DateTimeDigitized": "2002:10:04 22:19:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "399/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1995"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "102b600c4531f40e917d7d68bd5d8f7ab1c9734267cea48667a05c140c189285", "phash": "d95d2687d8c91d26", "dhash": "082810903852d589", "phash_int": -2.784026629745599e+18, "collected_at": "2026-05-22T04:30:10.198265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 561644.0, "mtime": "2002-10-04T22:20:32+00:00", "mtime_ts": 1033770032.0, "ctime": "2002-10-04T22:20:32+00:00", "sha256_file": "af1929cb2db3a393e864688d1afa109a423ccce8d341626f74b05b37596606c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:20:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3599", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:20:34", "EXIF DateTimeDigitized": "2002:10:04 22:20:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2299/125", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "18392"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "327517b72b8e690a791b577303d856925ccb5ca84e7e822dc7f08401c7c7b9e6", "phash": "d95c2687d8e91d26", "dhash": "006810983952c588", "phash_int": -2.7843081047202125e+18, "collected_at": "2026-05-22T04:30:10.232265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 499728.0, "mtime": "2002-10-04T22:20:48+00:00", "mtime_ts": 1033770048.0, "ctime": "2002-10-04T22:20:48+00:00", "sha256_file": "42f8dc451a6fcc0dae67dbc78e283efe60cddd4b70b0f7bca529416dfe5ec202", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:20:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3482", "EXIF ExposureTime": "1", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:20:49", "EXIF DateTimeDigitized": "2002:10:04 22:20:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11697/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65241", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11697"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d16b1669ac9583cf8fad29e670547f73436c85c5e57707d3a69936d0b4bd36e4", "phash": "d8dc27239ef8c80d", "dhash": "4044313974d78b00", "phash_int": -2.82033623269633e+18, "collected_at": "2026-05-22T04:30:10.249261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 640809.0, "mtime": "2002-10-04T22:33:46+00:00", "mtime_ts": 1033770826.0, "ctime": "2002-10-04T22:33:46+00:00", "sha256_file": "b22287102f95deecff9e741d07ae4a4d2da28e8b552e351f228bc37f5a8e4be9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:33:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4491", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:33:47", "EXIF DateTimeDigitized": "2002:10:04 22:33:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c49775c2e033a62c59a99f9e2db74f10a71e47df9aa85ad0bf642675575f8d7", "phash": "98b525b52c6dc1d9", "dhash": "16fcf070f1f0f90d", "phash_int": -7.443001349095178e+18, "collected_at": "2026-05-22T04:30:10.281349+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 535754.0, "mtime": "2002-10-04T22:38:26+00:00", "mtime_ts": 1033771106.0, "ctime": "2002-10-04T22:38:26+00:00", "sha256_file": "91634aef9b67031c54864e49b2a1abcc43f1383da7cabbe441babdecc84f9faf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:04 22:38:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3222", "EXIF ExposureTime": "1", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:04 22:38:27", "EXIF DateTimeDigitized": "2002:10:04 22:38:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9373/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "100", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "65446", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9373"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d64be9ed8e0368340081134c83a06a4bd544e7f0d4dd2ff066d35aa13f63ff5", "phash": "c872379d826871f6", "dhash": "802080b0f0b0b0b0", "phash_int": -4.0030759691416735e+18, "collected_at": "2026-05-22T04:30:10.299407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 885831.0, "mtime": "2002-10-05T11:51:30+00:00", "mtime_ts": 1033818690.0, "ctime": "2002-10-05T11:51:30+00:00", "sha256_file": "c76f035022a5aed226dd210bad415e9192ef687d7eb4a646f248d7bf9231a63a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:51:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5283", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:51:31", "EXIF DateTimeDigitized": "2002:10:05 11:51:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3439/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[120, 64, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "110", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3439"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "25e2f3e6ac077a61cd83a2fe6b0dbeebab86f80ad2848aa33e98e8ba42e0b134", "phash": "b63e3282d8fd4c13", "dhash": "2d6d643759e9cac8", "phash_int": -5.314754972682991e+18, "collected_at": "2026-05-22T04:30:10.326408+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 835194.0, "mtime": "2002-10-05T11:54:10+00:00", "mtime_ts": 1033818850.0, "ctime": "2002-10-05T11:54:10+00:00", "sha256_file": "92984cf21923fbde35e5efee03f4825f689e2594b0561d2233a5ee7fd025a62b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:54:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5486", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:54:11", "EXIF DateTimeDigitized": "2002:10:05 11:54:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf6bffb5729780ebee65a8acb39764c174b82e3673a30bc5825ab77bc15b8dbc", "phash": "909e88c1e1f3a7e5", "dhash": "f1b524c8c4c4b0f3", "phash_int": -8.025827119626738e+18, "collected_at": "2026-05-22T04:30:10.394407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 626669.0, "mtime": "2002-10-05T11:54:48+00:00", "mtime_ts": 1033818888.0, "ctime": "2002-10-05T11:54:48+00:00", "sha256_file": "0ae0ca474de85dd4ce60df68cc0163d3c1ab249a1da238bf53a177baa74a90c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:54:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5345", "EXIF ExposureTime": "1/15", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:54:50", "EXIF DateTimeDigitized": "2002:10:05 11:54:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a81a6bdb9bc33f72ddf0eb611ceb3f7a854da8cc2f30c76b9c64a64d5ded5a97", "phash": "d1cfb92c6626b191", "dhash": "0210d8e596b69c98", "phash_int": -3.3282379992599956e+18, "collected_at": "2026-05-22T04:30:10.403416+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 890005.0, "mtime": "2002-10-05T11:55:40+00:00", "mtime_ts": 1033818940.0, "ctime": "2002-10-05T11:55:40+00:00", "sha256_file": "7e883d404ae9fd8f4017422a06858cdec63bb9fcd0a6bd878441384fdaf91d4f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:55:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5888", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:55:41", "EXIF DateTimeDigitized": "2002:10:05 11:55:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3f76426feb627505810eba36f38dba8526ad30e5189312690f96617397dbea5", "phash": "b1e9ae1b263189ce", "dhash": "0d01829a7c3a7c6c", "phash_int": -5.626774827794594e+18, "collected_at": "2026-05-22T04:30:10.454662+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 894685.0, "mtime": "2002-10-05T11:56:36+00:00", "mtime_ts": 1033818996.0, "ctime": "2002-10-05T11:56:36+00:00", "sha256_file": "1b7f447568dbe6a0e8e8aaaa92d51e640a5bf1614bb5ec20228c1868bae8aeb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:56:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6001", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:56:37", "EXIF DateTimeDigitized": "2002:10:05 11:56:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f43762d39a79a40ebabb3fcb804e65d0c89a043f3017e25db224741d0c8c7eeb", "phash": "868eb2c831879dde", "dhash": "e4e564e2f0f4f41c", "phash_int": -8.750860453040121e+18, "collected_at": "2026-05-22T04:30:10.468664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 969797.0, "mtime": "2002-10-05T11:58:04+00:00", "mtime_ts": 1033819084.0, "ctime": "2002-10-05T11:58:04+00:00", "sha256_file": "cb52f6d6910be614811f0c6cc116a2321f2155c49891e2b024bb0569fc13923d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:58:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7338", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:58:06", "EXIF DateTimeDigitized": "2002:10:05 11:58:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "170", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a7bd0b32a9047ac643e643f7aba0a26045a463d091fca73070b4297049baa7e", "phash": "e0c375606fcee0d8", "dhash": "854889a9b39eae2e", "phash_int": -2.2508263317019768e+18, "collected_at": "2026-05-22T04:30:10.501877+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 883944.0, "mtime": "2002-10-05T11:58:44+00:00", "mtime_ts": 1033819124.0, "ctime": "2002-10-05T11:58:44+00:00", "sha256_file": "022f76aaf326c8c43731f328e2dfbbf73b50d076a7ef7e5fe5ab35202f99cdb6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:58:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6066", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:58:45", "EXIF DateTimeDigitized": "2002:10:05 11:58:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7bf903353c2dfe68070a4944f6c012be09f9c71154dcf7bdc9898d4dc350682f", "phash": "ae8e89e3b1799606", "dhash": "93672c3a4d4473fc", "phash_int": -5.86860165338906e+18, "collected_at": "2026-05-22T04:30:10.508876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 860047.0, "mtime": "2002-10-05T12:00:16+00:00", "mtime_ts": 1033819216.0, "ctime": "2002-10-05T12:00:16+00:00", "sha256_file": "cd88eb6d21bb63e07f7c6f04945d1d9af01f0f62b495e6c0b09c4edd45b78423", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:00:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5458", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:00:18", "EXIF DateTimeDigitized": "2002:10:05 12:00:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1e94ae598b62b8819ac7b535c26e9f4c852e39e16f0bc834c927734044b348b", "phash": "9496d286e4295b7b", "dhash": "acec5a262626d385", "phash_int": -7.739767432794252e+18, "collected_at": "2026-05-22T04:30:10.544106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 918460.0, "mtime": "2002-10-05T11:59:46+00:00", "mtime_ts": 1033819186.0, "ctime": "2002-10-05T11:59:46+00:00", "sha256_file": "bcf16083345506eef4a0aa12b19788c7be4c7fda0d6f0a74e8043be6537afa94", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 11:59:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6807", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 11:59:48", "EXIF DateTimeDigitized": "2002:10:05 11:59:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "183", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b41452b99b0bfa7238ede7b49a09cea682eae5e381de456c58a0413d9e0131f", "phash": "f4f2090d3e1ec1c7", "dhash": "330a2c0d06923612", "phash_int": -7.965642316097285e+17, "collected_at": "2026-05-22T04:30:10.553106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 692029.0, "mtime": "2002-10-05T12:00:28+00:00", "mtime_ts": 1033819228.0, "ctime": "2002-10-05T12:00:28+00:00", "sha256_file": "326880d08033bd2c13e500dfcd6fafb688e375d1f744cbbf738377129f11ba61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:00:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5044", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:00:29", "EXIF DateTimeDigitized": "2002:10:05 12:00:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5229/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[119, 119, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5229"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ae50250a95ddbd4190ec37211917c48ff0c1cd97e8b925196e429441d3d9035", "phash": "dd73a64c33086c9b", "dhash": "b01810183036b64b", "phash_int": -2.489463322801837e+18, "collected_at": "2026-05-22T04:30:10.579267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 883379.0, "mtime": "2002-10-05T12:00:52+00:00", "mtime_ts": 1033819252.0, "ctime": "2002-10-05T12:00:52+00:00", "sha256_file": "9d83e5a3c9a8969adb4b8e64254ca41164c50c5224f3bdef3f188258261e059b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:00:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6129", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:00:54", "EXIF DateTimeDigitized": "2002:10:05 12:00:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd4c7ae3d14d0fcf1c31a289c8c9181c04cc0cfff139ffbe7f09d53b6d01b4c9", "phash": "a576f4cc90b6db20", "dhash": "86865f5cb363b69a", "phash_int": -6.523757850761176e+18, "collected_at": "2026-05-22T04:30:10.592375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 712505.0, "mtime": "2002-10-05T12:01:00+00:00", "mtime_ts": 1033819260.0, "ctime": "2002-10-05T12:01:00+00:00", "sha256_file": "97bdeea8558a9317fd6a924e5c6b38a342d09df8d12dcf552836ef327c316306", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:01:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4938", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:01:02", "EXIF DateTimeDigitized": "2002:10:05 12:01:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9749/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "19498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "624f32e312712277580a8083f67c57eb1be7428141f25c9dc18957e609eb713c", "phash": "ca95f5665b3b0c21", "dhash": "04c47e61c1e58d11", "phash_int": -3.848900486552155e+18, "collected_at": "2026-05-22T04:30:10.642376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 957654.0, "mtime": "2002-10-05T12:01:24+00:00", "mtime_ts": 1033819284.0, "ctime": "2002-10-05T12:01:24+00:00", "sha256_file": "f63d6cf15021581ba89a396f024d8b66e554e5b5224775f9754d5a0855c4d990", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:01:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6917", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:01:26", "EXIF DateTimeDigitized": "2002:10:05 12:01:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[125, 29, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "444f6b11d20ea10d0ec872272f1b0e80a211516577c28181f9926382052f363c", "phash": "dbd0c49d8f0ee1a4", "dhash": "9aa88c797b5a3084", "phash_int": -2.6073680032584904e+18, "collected_at": "2026-05-22T04:30:10.653376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 756212.0, "mtime": "2002-10-05T12:11:30+00:00", "mtime_ts": 1033819890.0, "ctime": "2002-10-05T12:11:30+00:00", "sha256_file": "5d769bf13bf75aff4ae6bc930b752fb6071329506fa0b17130d6c5e273644030", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:11:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4915", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:11:31", "EXIF DateTimeDigitized": "2002:10:05 12:11:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3467ba7dd7be12976901b8ce05881b7979b748234e74c24169ae89c2cb982e98", "phash": "ddccd2e362849d1a", "dhash": "c03232f2dad2f090", "phash_int": -2.4643630220262364e+18, "collected_at": "2026-05-22T04:30:10.674375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 584454.0, "mtime": "2002-10-05T12:11:38+00:00", "mtime_ts": 1033819898.0, "ctime": "2002-10-05T12:11:38+00:00", "sha256_file": "3192b275c5c81d48c68b0c073c42aac41e373f95941cac81f338e17fabaa2746", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:11:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3823", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:11:39", "EXIF DateTimeDigitized": "2002:10:05 12:11:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0723525adc238a494ff7582709db718da46b8e46ca7bf74ac3c364744027e397", "phash": "8384fc7f6706883d", "dhash": "b0d0f0c44ec07800", "phash_int": -8.969766933695658e+18, "collected_at": "2026-05-22T04:30:10.729657+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 674985.0, "mtime": "2002-10-05T12:12:34+00:00", "mtime_ts": 1033819954.0, "ctime": "2002-10-05T12:12:34+00:00", "sha256_file": "f91e09fe8ed5eebfa4831f35d44a23e2ab5122ad63eaafe784afeaa08e7fb008", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:12:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4076", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:12:35", "EXIF DateTimeDigitized": "2002:10:05 12:12:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cc1789cf59303aef77150936086ae4c6a7e65d7d0512285aebeff86c89536375", "phash": "f93c341c8e9f1323", "dhash": "27071b1191919988", "phash_int": -4.874573624063377e+17, "collected_at": "2026-05-22T04:30:10.734646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0077_IMG.JPG", "file_name": "100-0077_IMG.JPG", "file_stem": "100-0077_IMG", "file_ext": ".jpg", "file_size": 476632.0, "mtime": "2002-10-05T12:14:26+00:00", "mtime_ts": 1033820066.0, "ctime": "2002-10-05T12:14:26+00:00", "sha256_file": "091f189ecfdd737079db66df7e7a7428e7c59f346c6e27ecfc40cb643b0f8a2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:14:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3056", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:14:28", "EXIF DateTimeDigitized": "2002:10:05 12:14:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1981/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "15848"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4e8f8c1edee7dd1b5f0be37b8f5dc95c1d38b9826854c5e5f4c7e13447bee94", "phash": "f393c6962c96c592", "dhash": "4c4c0818180c0c0e", "phash_int": -8.951535526211242e+17, "collected_at": "2026-05-22T04:30:10.769657+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 455116.0, "mtime": "2002-10-05T12:13:20+00:00", "mtime_ts": 1033820000.0, "ctime": "2002-10-05T12:13:20+00:00", "sha256_file": "a3e37f16bbee8110a471e32c38917e2e3dd7484399aa1fe02d4af092bf2c3236", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:13:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4084", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:13:22", "EXIF DateTimeDigitized": "2002:10:05 12:13:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2393/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "237", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9572"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13832ef36b7e835759338aef80c2cae3db8157eb67a28feb8e57cffe0d56120f", "phash": "e7e38ca6b16c86b0", "dhash": "070b43434c2c2326", "phash_int": -1.73739038366574e+18, "collected_at": "2026-05-22T04:30:10.777648+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0078_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0078_IMG.JPG", "file_name": "100-0078_IMG.JPG", "file_stem": "100-0078_IMG", "file_ext": ".jpg", "file_size": 666260.0, "mtime": "2002-10-05T12:15:02+00:00", "mtime_ts": 1033820102.0, "ctime": "2002-10-05T12:15:02+00:00", "sha256_file": "a4c3f7ad54ef5583c3ed516c3d6e7bb875eb41aa203fcd79a96ed6755aa7b778", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:15:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6135", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:15:04", "EXIF DateTimeDigitized": "2002:10:05 12:15:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1981/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7924"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b52874c7873ff560df718c526a1f69205232abfa1bf8093996deaa49e9a67d10", "phash": "d9ba86f88de480e6", "dhash": "bb1934321a1c04f6", "phash_int": -2.7577434197204337e+18, "collected_at": "2026-05-22T04:30:10.822864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0079_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0079_IMG.JPG", "file_name": "100-0079_IMG.JPG", "file_stem": "100-0079_IMG", "file_ext": ".jpg", "file_size": 403041.0, "mtime": "2002-10-05T12:32:40+00:00", "mtime_ts": 1033821160.0, "ctime": "2002-10-05T12:32:40+00:00", "sha256_file": "f988ea9fe15d72bb1b396617ed7560f2e74f3ab040c09c4a962fe20b35487837", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:32:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3430", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:32:42", "EXIF DateTimeDigitized": "2002:10:05 12:32:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01842031757dcc192c46e847c76d4d9ebd12f8dd7280e31995d8aad521c8420a", "phash": "b1e2942619bdca3e", "dhash": "0e8c989a9ecebeb8", "phash_int": -5.628773692898162e+18, "collected_at": "2026-05-22T04:30:10.839958+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0080_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0080_IMG.JPG", "file_name": "100-0080_IMG.JPG", "file_stem": "100-0080_IMG", "file_ext": ".jpg", "file_size": 357732.0, "mtime": "2002-10-05T12:32:46+00:00", "mtime_ts": 1033821166.0, "ctime": "2002-10-05T12:32:46+00:00", "sha256_file": "a0b2f835083d5d67eb046c79300efda4d01f105a83241f8f0c5885df05f53d2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:32:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3414", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:32:47", "EXIF DateTimeDigitized": "2002:10:05 12:32:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000080", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "235", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a99c106a1c9f980abdf5e4b45b5549c28af616ddf072ccc03be3d2bd6c35e080", "phash": "b6971927e6874d60", "dhash": "7e3e934f8f7ab728", "phash_int": -5.289731578161313e+18, "collected_at": "2026-05-22T04:30:10.862032+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0081_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0081_IMG.JPG", "file_name": "100-0081_IMG.JPG", "file_stem": "100-0081_IMG", "file_ext": ".jpg", "file_size": 739575.0, "mtime": "2002-10-05T12:32:54+00:00", "mtime_ts": 1033821174.0, "ctime": "2002-10-05T12:32:54+00:00", "sha256_file": "4d9c6ea48bfbb11b0be0b29b59b89514494a96811050f0e01a11a3e792eceac6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:32:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5454", "EXIF ExposureTime": "1/15", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:32:56", "EXIF DateTimeDigitized": "2002:10:05 12:32:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "146", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5b24db5482ad17b8b659a01ab6665a9344b7f60bfba8784a3c0abe1060570bcd", "phash": "f2bfc7908c8d405e", "dhash": "000c0c1ea59dc8a7", "phash_int": -9.548251723319704e+17, "collected_at": "2026-05-22T04:30:10.879035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0082_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0082_IMG.JPG", "file_name": "100-0082_IMG.JPG", "file_stem": "100-0082_IMG", "file_ext": ".jpg", "file_size": 431563.0, "mtime": "2002-10-05T12:33:04+00:00", "mtime_ts": 1033821184.0, "ctime": "2002-10-05T12:33:04+00:00", "sha256_file": "9138dbc07f9a83501accabd1e53079c90181fdbebc9fb86fb3169361b74076af", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3703", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:05", "EXIF DateTimeDigitized": "2002:10:05 12:33:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ab2fc0204fd264543a614f9a54b0afd3fc5ba4cbd7c554a2a9e215f8dd6ec78c", "phash": "dfb082586784f1ae", "dhash": "381906482b98e163", "phash_int": -2.3282176911450476e+18, "collected_at": "2026-05-22T04:30:10.895223+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0083_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0083_IMG.JPG", "file_name": "100-0083_IMG.JPG", "file_stem": "100-0083_IMG", "file_ext": ".jpg", "file_size": 457179.0, "mtime": "2002-10-05T12:33:08+00:00", "mtime_ts": 1033821188.0, "ctime": "2002-10-05T12:33:08+00:00", "sha256_file": "b6af1a5b0e0b7c5d3938a33932dd241123b27a487e1cc02a9f15d8b5ba45243f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4016", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:10", "EXIF DateTimeDigitized": "2002:10:05 12:33:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0135b72f296531c0d39a293a805788ecd43c2a3d7aa6c6c7b1af2d4f8f515f2", "phash": "dbaca2195d7aa4c1", "dhash": "3efc8f30700f98cc", "phash_int": -2.6175390535829e+18, "collected_at": "2026-05-22T04:30:10.925417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0084_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0084_IMG.JPG", "file_name": "100-0084_IMG.JPG", "file_stem": "100-0084_IMG", "file_ext": ".jpg", "file_size": 490192.0, "mtime": "2002-10-05T12:33:14+00:00", "mtime_ts": 1033821194.0, "ctime": "2002-10-05T12:33:14+00:00", "sha256_file": "60b7428a86ba24bdb772974408c60ca92f09d09d512d43eddbcde6e68777c9f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3839", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:15", "EXIF DateTimeDigitized": "2002:10:05 12:33:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99bd4309d2be5d5b74b30156ea153104515bead07c5c6bcd9190f03f5d5cefb7", "phash": "ddd2a02d3bca8137", "dhash": "c0a880713af233b2", "phash_int": -2.46272993008114e+18, "collected_at": "2026-05-22T04:30:10.952764+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0085_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0085_IMG.JPG", "file_name": "100-0085_IMG.JPG", "file_stem": "100-0085_IMG", "file_ext": ".jpg", "file_size": 540497.0, "mtime": "2002-10-05T12:33:18+00:00", "mtime_ts": 1033821198.0, "ctime": "2002-10-05T12:33:18+00:00", "sha256_file": "be173b483b10e9d0d7b8e9b322e33edd22541896aaa52961e9d92632a2551163", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4328", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:20", "EXIF DateTimeDigitized": "2002:10:05 12:33:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30d6edfeac2f0b58a1f17f71a26f686a0059d461bdf29a2ecabbccfae9e18c9c", "phash": "d7c891261d7bd48a", "dhash": "000c9c10644c6958", "phash_int": -2.897906767323475e+18, "collected_at": "2026-05-22T04:30:10.966855+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0086_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0086_IMG.JPG", "file_name": "100-0086_IMG.JPG", "file_stem": "100-0086_IMG", "file_ext": ".jpg", "file_size": 652813.0, "mtime": "2002-10-05T12:33:30+00:00", "mtime_ts": 1033821210.0, "ctime": "2002-10-05T12:33:30+00:00", "sha256_file": "e71982bbf3a1b93ba36a5ec6a2f3a069a7edf4a8e498fcfd66ff3b3a6aa2564d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4701", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:31", "EXIF DateTimeDigitized": "2002:10:05 12:33:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49e6db426bb5949b9007cb5c6f66909a1e67f3b2d2a217aac58be8e2bcb52f26", "phash": "dae5c39c730e7013", "dhash": "61e1a02595b461d9", "phash_int": -2.673515727061881e+18, "collected_at": "2026-05-22T04:30:10.994032+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0087_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0087_IMG.JPG", "file_name": "100-0087_IMG.JPG", "file_stem": "100-0087_IMG", "file_ext": ".jpg", "file_size": 968208.0, "mtime": "2002-10-05T12:33:46+00:00", "mtime_ts": 1033821226.0, "ctime": "2002-10-05T12:33:46+00:00", "sha256_file": "22634e7245b593a30ed952b9d0856e1e74b3ae3df3ca8f4a15b7cd3fc5e0c496", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:33:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6277", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:33:48", "EXIF DateTimeDigitized": "2002:10:05 12:33:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[132, 134, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000087", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20d41a5428e3a95331a8f8627034e4fe414eb0b765ffb01a1ea9acb4d1102eff", "phash": "99cee198a6cca8f2", "dhash": "4ace3370199390ce", "phash_int": -7.363700294954473e+18, "collected_at": "2026-05-22T04:30:11.007030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0088_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0088_IMG.JPG", "file_name": "100-0088_IMG.JPG", "file_stem": "100-0088_IMG", "file_ext": ".jpg", "file_size": 778880.0, "mtime": "2002-10-05T12:34:22+00:00", "mtime_ts": 1033821262.0, "ctime": "2002-10-05T12:34:22+00:00", "sha256_file": "c53e2306bce4a343acdc6ff3c022f925fac67f9236200f87daf4bee74c8399fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 12:34:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5684", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 12:34:24", "EXIF DateTimeDigitized": "2002:10:05 12:34:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[104, 33, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "181", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11129"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "602d3d38138a9b67972cc062eff3702e7bb26f53cfd561559c6f62a51cfd1cea", "phash": "96855db4f24994b9", "dhash": "54ec72cd9f749328", "phash_int": -7.600565764377439e+18, "collected_at": "2026-05-22T04:30:11.029119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0090_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0090_IMG.JPG", "file_name": "100-0090_IMG.JPG", "file_stem": "100-0090_IMG", "file_ext": ".jpg", "file_size": 378934.0, "mtime": "2002-10-05T13:13:00+00:00", "mtime_ts": 1033823580.0, "ctime": "2002-10-05T13:13:00+00:00", "sha256_file": "c7c9fa10e556d0c62646e43eb6f6ab86221ec9c7fccdacf63dfcf361dde2abd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:13:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3403", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:13:01", "EXIF DateTimeDigitized": "2002:10:05 13:13:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11469/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11469"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61772237bf10ad292a26d2ad948c4ffdb31bd09edfb5da63cdace8d85e22ea75", "phash": "b7931879a1845bf2", "dhash": "f88c8cce0f09a48c", "phash_int": -5.218800632512357e+18, "collected_at": "2026-05-22T04:30:11.064123+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0089_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0089_IMG.JPG", "file_name": "100-0089_IMG.JPG", "file_stem": "100-0089_IMG", "file_ext": ".jpg", "file_size": 558145.0, "mtime": "2002-10-05T13:12:52+00:00", "mtime_ts": 1033823572.0, "ctime": "2002-10-05T13:12:52+00:00", "sha256_file": "9037b705ea08de208b1f0e7066f9466f0d3ff9dab73b83d0608455b2e4052b71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:12:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3801", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:12:54", "EXIF DateTimeDigitized": "2002:10:05 13:12:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "46747/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "46747"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a71b7f6637c1e154268618935a97beb25f5f1f45ce271ddc4fb700bae0f764d5", "phash": "e79af9815cc0a5c6", "dhash": "324ccc8ceccec801", "phash_int": -1.7578183705325307e+18, "collected_at": "2026-05-22T04:30:11.070263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0091_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0091_IMG.JPG", "file_name": "100-0091_IMG.JPG", "file_stem": "100-0091_IMG", "file_ext": ".jpg", "file_size": 910623.0, "mtime": "2002-10-05T13:13:10+00:00", "mtime_ts": 1033823590.0, "ctime": "2002-10-05T13:13:10+00:00", "sha256_file": "2c93620aa23650abffad834cccd700a22dabd4edf386fa22f7579c09a91ae522", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:13:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5336", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:13:11", "EXIF DateTimeDigitized": "2002:10:05 13:13:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6993/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "243", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6993"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f4bfb6764adca4b0e533e72ba61ca7d6c5d1f4c8aad86bdc372f093d6505f5a", "phash": "f0fcf1f1660c113c", "dhash": "1411136727d89098", "phash_int": -1.0817237913742825e+18, "collected_at": "2026-05-22T04:30:11.108402+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0092_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0092_IMG.JPG", "file_name": "100-0092_IMG.JPG", "file_stem": "100-0092_IMG", "file_ext": ".jpg", "file_size": 698445.0, "mtime": "2002-10-05T13:13:48+00:00", "mtime_ts": 1033823628.0, "ctime": "2002-10-05T13:13:48+00:00", "sha256_file": "bf23bd6a27a98e3ae64c820606ee88f652b5c8e2985f99d13cf6b2a38ad56f4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:13:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5787", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:13:49", "EXIF DateTimeDigitized": "2002:10:05 13:13:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6646f63218eece3af1f9e0e90a2d4aa85b979e2f9c1f635b40a372600ac494bc", "phash": "e7dc9dc6a9380643", "dhash": "0020ce97cfcc5c5b", "phash_int": -1.7393418795037476e+18, "collected_at": "2026-05-22T04:30:11.117484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0093_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0093_IMG.JPG", "file_name": "100-0093_IMG.JPG", "file_stem": "100-0093_IMG", "file_ext": ".jpg", "file_size": 496681.0, "mtime": "2002-10-05T13:13:54+00:00", "mtime_ts": 1033823634.0, "ctime": "2002-10-05T13:13:54+00:00", "sha256_file": "7ad263b296c2f37abce047221da513a495789ab68dfc5c6d72b822f13e48ca19", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:13:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4790", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:13:56", "EXIF DateTimeDigitized": "2002:10:05 13:13:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000093", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "37611c58b20c021e96d4b593aac082d380e2719df98d7e7e5299a658821cfd19", "phash": "d5f59595153469a2", "dhash": "308001104a83e468", "phash_int": -3.0293507067983683e+18, "collected_at": "2026-05-22T04:30:11.203263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0094_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0094_IMG.JPG", "file_name": "100-0094_IMG.JPG", "file_stem": "100-0094_IMG", "file_ext": ".jpg", "file_size": 735499.0, "mtime": "2002-10-05T13:14:58+00:00", "mtime_ts": 1033823698.0, "ctime": "2002-10-05T13:14:58+00:00", "sha256_file": "24dfd194085d52dbd7cf1339491cf60214a1d92a7f454cb597692e477b09549d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:15:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4922", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:15:00", "EXIF DateTimeDigitized": "2002:10:05 13:15:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e83051a56170192d6c258787139ed0c5e72303db49f47ccc3ac3c5be8efd3334", "phash": "a55ad5a60b6acd92", "dhash": "daf0f14b4f868f0e", "phash_int": -6.531673400414647e+18, "collected_at": "2026-05-22T04:30:11.219262+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0095_IMG.JPG", "file_name": "100-0095_IMG.JPG", "file_stem": "100-0095_IMG", "file_ext": ".jpg", "file_size": 748549.0, "mtime": "2002-10-05T13:20:40+00:00", "mtime_ts": 1033824040.0, "ctime": "2002-10-05T13:20:40+00:00", "sha256_file": "2e82861bebcae5b5a010b662824051e4d980286f0c0f983035431ea4b6ac33ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:20:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3379", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:20:41", "EXIF DateTimeDigitized": "2002:10:05 13:20:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000095", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa567270d9abc72b3cdbc5cdcbff16ebd2492cc5add60ecfffcee01975e7a8d8", "phash": "c19e8fe11668e38e", "dhash": "dc4c01cccc82c260", "phash_int": -4.49499718116279e+18, "collected_at": "2026-05-22T04:30:11.247404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0096_IMG.JPG", "file_name": "100-0096_IMG.JPG", "file_stem": "100-0096_IMG", "file_ext": ".jpg", "file_size": 796262.0, "mtime": "2002-10-05T13:20:50+00:00", "mtime_ts": 1033824050.0, "ctime": "2002-10-05T13:20:50+00:00", "sha256_file": "2b887ff96c0a2cf53113db06edc943c6e222bde7ad54a4c95e20b286c1125bd6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:20:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3994", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:20:51", "EXIF DateTimeDigitized": "2002:10:05 13:20:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000096", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ebf1e31500abc3d0b8299706fd248dbdf354b05fa2f975fb5710a9cbbcd0655", "phash": "e49ba3645ba1c6d8", "dhash": "ef6636ca35c68764", "phash_int": -1.9738043602424445e+18, "collected_at": "2026-05-22T04:30:11.285809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0097_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0097_IMG.JPG", "file_name": "100-0097_IMG.JPG", "file_stem": "100-0097_IMG", "file_ext": ".jpg", "file_size": 819414.0, "mtime": "2002-10-05T13:20:54+00:00", "mtime_ts": 1033824054.0, "ctime": "2002-10-05T13:20:54+00:00", "sha256_file": "3319d0f2ce826044b9c59584df03183729b5fd030b437a20412bbd5dba130e20", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:20:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3847", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:20:56", "EXIF DateTimeDigitized": "2002:10:05 13:20:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000097", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ded73515429f9837f279c7105a16ddc2cf02b33b8fb90a0e0112159f67d9b813", "phash": "95e8a699782687d9", "dhash": "f4f4e83090f26ccc", "phash_int": -7.644677189385419e+18, "collected_at": "2026-05-22T04:30:11.317810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0098_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0098_IMG.JPG", "file_name": "100-0098_IMG.JPG", "file_stem": "100-0098_IMG", "file_ext": ".jpg", "file_size": 870146.0, "mtime": "2002-10-05T13:20:58+00:00", "mtime_ts": 1033824058.0, "ctime": "2002-10-05T13:20:58+00:00", "sha256_file": "636440121196707818c689eaf7a333900fa69f3e7f38028c6664a0e3ddc77b84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:21:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4053", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:21:00", "EXIF DateTimeDigitized": "2002:10:05 13:21:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000098", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "137c256b0dfb777e206998434538a6911c4f3cef958b830ed4dd9a279983ef5a", "phash": "dd90a7f82366d18a", "dhash": "0a30203c7110654b", "phash_int": -2.4812987104934743e+18, "collected_at": "2026-05-22T04:30:11.342810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0099_IMG.JPG", "file_name": "100-0099_IMG.JPG", "file_stem": "100-0099_IMG", "file_ext": ".jpg", "file_size": 1034461.0, "mtime": "2002-10-05T13:21:14+00:00", "mtime_ts": 1033824074.0, "ctime": "2002-10-05T13:21:14+00:00", "sha256_file": "4d9bf0793be13fb27c87247e05b875ca097bfc3420d676850fb7bc07c5ee55cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:21:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5033", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:21:15", "EXIF DateTimeDigitized": "2002:10:05 13:21:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1183/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000099", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11830"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c9e56d4cf451e40f47dfcc7188268c1b21361512bc8a64951da2167e0cab479", "phash": "f186b1e56e3084f9", "dhash": "20c0fc2903861c98", "phash_int": -1.0429506647353905e+18, "collected_at": "2026-05-22T04:30:11.379813+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\100-0100_IMG.JPG", "file_name": "100-0100_IMG.JPG", "file_stem": "100-0100_IMG", "file_ext": ".jpg", "file_size": 1264604.0, "mtime": "2002-10-05T13:28:30+00:00", "mtime_ts": 1033824510.0, "ctime": "2002-10-05T13:28:30+00:00", "sha256_file": "9841cca963e034415e0fa9eeb2eed3842239945e82a413db79ab2e332b136e6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:28:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3833", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:28:32", "EXIF DateTimeDigitized": "2002:10:05 13:28:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000100", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7536714c67b7341f602d529483d402062394504eaa5aaadbb845738ffff959e", "phash": "d8d8c88b3a72b1b5", "dhash": "308084111ff801ff", "phash_int": -2.821284666241011e+18, "collected_at": "2026-05-22T04:30:11.418954+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0101_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0101_IMG.JPG", "file_name": "101-0101_IMG.JPG", "file_stem": "101-0101_IMG", "file_ext": ".jpg", "file_size": 1252625.0, "mtime": "2002-10-05T13:28:40+00:00", "mtime_ts": 1033824520.0, "ctime": "2002-10-05T13:28:40+00:00", "sha256_file": "2bd081c8ff34478e02e0a363c04e5d87d5adfc93bd951e246cdccc26c3ffef49", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:28:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3871", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:28:41", "EXIF DateTimeDigitized": "2002:10:05 13:28:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010101", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "938a101b3d8bdbb754caec5d108ae459f40a16565425456c822c1c431f47207d", "phash": "d8d8818b3b72b1b5", "dhash": "3080841117fa81df", "phash_int": -2.821362731549806e+18, "collected_at": "2026-05-22T04:30:11.486849+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0102_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0102_IMG.JPG", "file_name": "101-0102_IMG.JPG", "file_stem": "101-0102_IMG", "file_ext": ".jpg", "file_size": 900300.0, "mtime": "2002-10-05T13:33:16+00:00", "mtime_ts": 1033824796.0, "ctime": "2002-10-05T13:33:16+00:00", "sha256_file": "de673adbd5cf9e5ba4a73c39fdaa10e4f4dd88a41871198557708c53a8c853d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:33:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4766", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:33:17", "EXIF DateTimeDigitized": "2002:10:05 13:33:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010102", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b2748c9f5eb807cf1208e3b185d917b8cd3d18db0f63f861bb3424c81caf65b", "phash": "f0f0e28387479e9c", "dhash": "8d1f160e9cb8c0fc", "phash_int": -1.0851184556580786e+18, "collected_at": "2026-05-22T04:30:11.492847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0103_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0103_IMG.JPG", "file_name": "101-0103_IMG.JPG", "file_stem": "101-0103_IMG", "file_ext": ".jpg", "file_size": 468940.0, "mtime": "2002-10-05T13:33:22+00:00", "mtime_ts": 1033824802.0, "ctime": "2002-10-05T13:33:22+00:00", "sha256_file": "cac11904cb92b36fbde2fc443af8e85e82424e7e3d6f292a81301986611eb90b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:33:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3640", "EXIF ExposureTime": "1/200", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:33:24", "EXIF DateTimeDigitized": "2002:10:05 13:33:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010103", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e126b429425dc7996dc3fe6d3e0b420917b44092ad5c1771ada054c135947cd2", "phash": "a1f0d64f2b31d487", "dhash": "94808e93c3611e7e", "phash_int": -6.77768180367715e+18, "collected_at": "2026-05-22T04:30:11.525962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0104_IMG.JPG", "file_name": "101-0104_IMG.JPG", "file_stem": "101-0104_IMG", "file_ext": ".jpg", "file_size": 564361.0, "mtime": "2002-10-05T13:33:30+00:00", "mtime_ts": 1033824810.0, "ctime": "2002-10-05T13:33:30+00:00", "sha256_file": "67c6810b6aaf4266b90dbe4a9f2f046a4bd104f8cacda1965c97b4f10d1fc146", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:33:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4236", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:33:31", "EXIF DateTimeDigitized": "2002:10:05 13:33:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8161/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010104", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8161"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1dd5d51d05fbd35093cecd00826dd72737db9653e1f6e6f828e958d3448ec2b0", "phash": "8381e03c787ad6bd", "dhash": "d0c2c0e9b2644707", "phash_int": -8.970642432421341e+18, "collected_at": "2026-05-22T04:30:11.531962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0105_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0105_IMG.JPG", "file_name": "101-0105_IMG.JPG", "file_stem": "101-0105_IMG", "file_ext": ".jpg", "file_size": 777375.0, "mtime": "2002-10-05T13:35:12+00:00", "mtime_ts": 1033824912.0, "ctime": "2002-10-05T13:35:12+00:00", "sha256_file": "6d0704b287739c3a7b0abcca958009e0fe6e26951ec61f8b11475ac58672a021", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:35:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5961", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:35:14", "EXIF DateTimeDigitized": "2002:10:05 13:35:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6229/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010105", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6229"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51b066c256f1bea679ca5d4e5bbb21e79367896ef5be66c2250cf12135817d7b", "phash": "fe81e1bf175a4124", "dhash": "4083c4713f23290c", "phash_int": -1.0755670523338723e+17, "collected_at": "2026-05-22T04:30:11.613123+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0106_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0106_IMG.JPG", "file_name": "101-0106_IMG.JPG", "file_stem": "101-0106_IMG", "file_ext": ".jpg", "file_size": 840635.0, "mtime": "2002-10-05T13:35:40+00:00", "mtime_ts": 1033824940.0, "ctime": "2002-10-05T13:35:40+00:00", "sha256_file": "0ba251970b1649c7a939bb2414f47c7d7c4a8511cb1883840ef6db4fbe93095c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:35:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6017", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:35:42", "EXIF DateTimeDigitized": "2002:10:05 13:35:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3913/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[120, 29, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010106", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3913"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "203764feb883fa23af03438af9a45402c562e09bd09ef0b269643fb138947bd9", "phash": "df9ff7b0806028e1", "dhash": "28686069d8310080", "phash_int": -2.3328737445145375e+18, "collected_at": "2026-05-22T04:30:11.624122+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0107_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0107_IMG.JPG", "file_name": "101-0107_IMG.JPG", "file_stem": "101-0107_IMG", "file_ext": ".jpg", "file_size": 898790.0, "mtime": "2002-10-05T13:36:22+00:00", "mtime_ts": 1033824982.0, "ctime": "2002-10-05T13:36:22+00:00", "sha256_file": "a769a226a45cc397e634cdf47deb43b38f308093d3202c18b4cc4743532b8e83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:36:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5891", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:36:23", "EXIF DateTimeDigitized": "2002:10:05 13:36:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4843/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e82092c14e188fb919725c1e0c1151b1416625a5f04e7024ab99dccea67f19b9", "phash": "cc4173a69d4dad32", "dhash": "4605b3b330624571", "phash_int": -3.728571857045181e+18, "collected_at": "2026-05-22T04:30:11.702329+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0108_IMG.JPG", "file_name": "101-0108_IMG.JPG", "file_stem": "101-0108_IMG", "file_ext": ".jpg", "file_size": 864086.0, "mtime": "2002-10-05T13:36:46+00:00", "mtime_ts": 1033825006.0, "ctime": "2002-10-05T13:36:46+00:00", "sha256_file": "578ec2ddfae510e8b2120f1de646a75099cca124657b427d5bc31cf1d8e39a0f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:36:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5619", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:36:47", "EXIF DateTimeDigitized": "2002:10:05 13:36:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[126, 86, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22d2cc274877f79b7179407b074035ffe264cea582d72c22d1d45d8c9d152689", "phash": "f98ae17c5a158593", "dhash": "0b93c21511179c08", "phash_int": -4.6531168727587085e+17, "collected_at": "2026-05-22T04:30:11.706328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0110_IMG.JPG", "file_name": "101-0110_IMG.JPG", "file_stem": "101-0110_IMG", "file_ext": ".jpg", "file_size": 1035078.0, "mtime": "2002-10-05T13:37:24+00:00", "mtime_ts": 1033825044.0, "ctime": "2002-10-05T13:37:24+00:00", "sha256_file": "d7246e864287ab2600b10963c75d730308e606bd026279f5b7d498f843f66ee6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:37:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6876", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:37:26", "EXIF DateTimeDigitized": "2002:10:05 13:37:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[108, 32, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "209", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "495c7f6dcfe5330211cd8847040364cd337938902005ab3541e90c1eb96d33ba", "phash": "bdf5b7e0c0f00187", "dhash": "0e2a3ab2a9933868", "phash_int": -4.75869525530955e+18, "collected_at": "2026-05-22T04:30:11.802578+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0109_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0109_IMG.JPG", "file_name": "101-0109_IMG.JPG", "file_stem": "101-0109_IMG", "file_ext": ".jpg", "file_size": 1124215.0, "mtime": "2002-10-05T13:37:04+00:00", "mtime_ts": 1033825024.0, "ctime": "2002-10-05T13:37:04+00:00", "sha256_file": "5b5a78571f29a3d8045616d28f95c13384888d5ee01614fd59ba510fb7220113", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:37:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6075", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:37:05", "EXIF DateTimeDigitized": "2002:10:05 13:37:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[107, 32, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "518439a02cc5333db33f5319dd60f4c72835196d1518846695eb778f00b320c2", "phash": "87478781d33e6c39", "dhash": "c8e82369d0977ffc", "phash_int": -8.698835163578209e+18, "collected_at": "2026-05-22T04:30:11.804579+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0111_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0111_IMG.JPG", "file_name": "101-0111_IMG.JPG", "file_stem": "101-0111_IMG", "file_ext": ".jpg", "file_size": 499576.0, "mtime": "2002-10-05T13:37:54+00:00", "mtime_ts": 1033825074.0, "ctime": "2002-10-05T13:37:54+00:00", "sha256_file": "8d865ed1e010b01f5083b5b4d82872f58947cd45f5c5881e52d1226e41aed01d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:37:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5255", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:37:55", "EXIF DateTimeDigitized": "2002:10:05 13:37:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[95, 170, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c26256e5124f75203b6e094f73ade94b779c068b0abc119bdc38f3e13442e49", "phash": "86f4cfc81417f529", "dhash": "d0c2c4e4a4e1e161", "phash_int": -8.722118120072285e+18, "collected_at": "2026-05-22T04:30:11.895934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0112_IMG.JPG", "file_name": "101-0112_IMG.JPG", "file_stem": "101-0112_IMG", "file_ext": ".jpg", "file_size": 494844.0, "mtime": "2002-10-05T13:38:14+00:00", "mtime_ts": 1033825094.0, "ctime": "2002-10-05T13:38:14+00:00", "sha256_file": "1c97f6fbb14ce118ffd4c551d55430f35622442d46f55090c5216447f0b10d83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:38:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5589", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:38:15", "EXIF DateTimeDigitized": "2002:10:05 13:38:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 189, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5665f927dabb89db2eb87138c3fa7f95c71247821b262e883e117c0eace99229", "phash": "ea16b5ac8bb2326c", "dhash": "dcf0c9eb63839393", "phash_int": -1.5788748666640666e+18, "collected_at": "2026-05-22T04:30:11.898933+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0113_IMG.JPG", "file_name": "101-0113_IMG.JPG", "file_stem": "101-0113_IMG", "file_ext": ".jpg", "file_size": 869844.0, "mtime": "2002-10-05T13:39:00+00:00", "mtime_ts": 1033825140.0, "ctime": "2002-10-05T13:39:00+00:00", "sha256_file": "2a5b4a42215e81a9428548fe8c37c9cb58f11fb9048a116cd6dbd3bbc314a1f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:39:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5535", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:39:01", "EXIF DateTimeDigitized": "2002:10:05 13:39:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "261ae6d0620bf3ed5d21bd6a9dfd0badb48f3609889591d4a9b64b44d7155d0a", "phash": "c7c7b7b9080c6e58", "dhash": "6e4c64ea9882c204", "phash_int": -4.0510673344646067e+18, "collected_at": "2026-05-22T04:30:11.986312+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0114_IMG.JPG", "file_name": "101-0114_IMG.JPG", "file_stem": "101-0114_IMG", "file_ext": ".jpg", "file_size": 850450.0, "mtime": "2002-10-05T13:39:20+00:00", "mtime_ts": 1033825160.0, "ctime": "2002-10-05T13:39:20+00:00", "sha256_file": "a3bd14382141d93bb2eb6714cf175e6b488564ba1261f2873670cb84f6ac3ce4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:39:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6290", "EXIF ExposureTime": "1/60", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:39:22", "EXIF DateTimeDigitized": "2002:10:05 13:39:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1333/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5332"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21f9f381d912327f48d5b22944f9f49d8874c38ab2c47f9744600d637a00c19a", "phash": "c3a534c240777d7c", "dhash": "dc9a2249c9494907", "phash_int": -4.349011856246473e+18, "collected_at": "2026-05-22T04:30:11.993312+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0115_IMG.JPG", "file_name": "101-0115_IMG.JPG", "file_stem": "101-0115_IMG", "file_ext": ".jpg", "file_size": 812693.0, "mtime": "2002-10-05T13:59:46+00:00", "mtime_ts": 1033826386.0, "ctime": "2002-10-05T13:59:46+00:00", "sha256_file": "d3b85a0ee9a19d66e3e2b91eb993be89ee3696f6e976aef5ec263d447379afaa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:59:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6692", "EXIF ExposureTime": "1/80", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:59:48", "EXIF DateTimeDigitized": "2002:10:05 13:59:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "280d33cd6748d88f0a8fefb642371a458fa8db9f42709dc2b4a3546edade6cf7", "phash": "880ddd6aabd15c3c", "dhash": "7be2f6cba7159332", "phash_int": -8.643008659635217e+18, "collected_at": "2026-05-22T04:30:12.063204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0116_IMG.JPG", "file_name": "101-0116_IMG.JPG", "file_stem": "101-0116_IMG", "file_ext": ".jpg", "file_size": 576784.0, "mtime": "2002-10-05T13:59:56+00:00", "mtime_ts": 1033826396.0, "ctime": "2002-10-05T13:59:56+00:00", "sha256_file": "17c86507f495afbfa923b30e29377c95405eda539d988d0c76480926d7e399fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 13:59:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6068", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 13:59:57", "EXIF DateTimeDigitized": "2002:10:05 13:59:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4499/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4499"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "287be77b713047a7a828d7200b6f9e6fde06d7f162452ebff9a73f767ee120a0", "phash": "9db5cdb01768342b", "dhash": "7af2faf8e8b8b371", "phash_int": -7.082528682779594e+18, "collected_at": "2026-05-22T04:30:12.068202+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0117_IMG.JPG", "file_name": "101-0117_IMG.JPG", "file_stem": "101-0117_IMG", "file_ext": ".jpg", "file_size": 971011.0, "mtime": "2002-10-05T14:10:38+00:00", "mtime_ts": 1033827038.0, "ctime": "2002-10-05T14:10:38+00:00", "sha256_file": "5c90767454c902884de248914c44b5c8c3548675ec3eaf2d55759d79242b7069", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:10:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6405", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:10:39", "EXIF DateTimeDigitized": "2002:10:05 14:10:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 61, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bd8076eca7bf4dc01aa6b26e956bd737e0cfdf28cf24a5e2aab59ff14a945f7", "phash": "d83513c66ddc6631", "dhash": "2ab8bb3383613159", "phash_int": -2.8673638447838397e+18, "collected_at": "2026-05-22T04:30:12.137543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0118_IMG.JPG", "file_name": "101-0118_IMG.JPG", "file_stem": "101-0118_IMG", "file_ext": ".jpg", "file_size": 707478.0, "mtime": "2002-10-05T14:10:50+00:00", "mtime_ts": 1033827050.0, "ctime": "2002-10-05T14:10:50+00:00", "sha256_file": "7e73965955246e7258b146f4cba6250b940b931d47d2aa92623289de70848ad9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:10:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4684", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:10:51", "EXIF DateTimeDigitized": "2002:10:05 14:10:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21d7e3a95c9b0083360046f7f307a2b3ae48185302af504b6fb590156af0702a", "phash": "9c8e8f6b60f08ac7", "dhash": "7376f0b4dcb9fee7", "phash_int": -7.165632265749231e+18, "collected_at": "2026-05-22T04:30:12.143543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0119_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0119_IMG.JPG", "file_name": "101-0119_IMG.JPG", "file_stem": "101-0119_IMG", "file_ext": ".jpg", "file_size": 470852.0, "mtime": "2002-10-05T14:10:56+00:00", "mtime_ts": 1033827056.0, "ctime": "2002-10-05T14:10:56+00:00", "sha256_file": "ea00b16b47e25ceda30aa2ba770bd6ed577fbfb056cdf76358969410e0baaac7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:10:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3224", "EXIF ExposureTime": "1/250", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:10:57", "EXIF DateTimeDigitized": "2002:10:05 14:10:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010119", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49c57d07e87af33f242c3c1657949241cb2e57055bc4b16a3b2d0a11118c7c5c", "phash": "d48f69661d69c698", "dhash": "e2dcf8f8ec848380", "phash_int": -3.1301673286981535e+18, "collected_at": "2026-05-22T04:30:12.190657+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0121_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0121_IMG.JPG", "file_name": "101-0121_IMG.JPG", "file_stem": "101-0121_IMG", "file_ext": ".jpg", "file_size": 617254.0, "mtime": "2002-10-05T14:11:44+00:00", "mtime_ts": 1033827104.0, "ctime": "2002-10-05T14:11:44+00:00", "sha256_file": "cf42a1079323e4c6088d8e7a9a08d33b2caeefa25a079d241a1511da2e28a65d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:11:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3855", "EXIF ExposureTime": "1/160", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:11:46", "EXIF DateTimeDigitized": "2002:10:05 14:11:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a72b85a2253d264cf04d611f45c3d81bb24bc64bb46b63e99b52e0034504127", "phash": "cf81bece116ec1d0", "dhash": "4100c0c2d041251c", "phash_int": -3.4943020435977825e+18, "collected_at": "2026-05-22T04:30:12.231793+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0120_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0120_IMG.JPG", "file_name": "101-0120_IMG.JPG", "file_stem": "101-0120_IMG", "file_ext": ".jpg", "file_size": 1129551.0, "mtime": "2002-10-05T14:11:20+00:00", "mtime_ts": 1033827080.0, "ctime": "2002-10-05T14:11:20+00:00", "sha256_file": "8700b9ae298cb3e52627f55e898f6994ddcd8db9afea48476b6b2b0a662d88ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:11:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7056", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:11:21", "EXIF DateTimeDigitized": "2002:10:05 14:11:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[65, 41, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "181", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "414c393ce6d30d5039f5df0910b7b02272589aaeaa5929b9dd5c61522a8b7338", "phash": "aaf2f5e87045d886", "dhash": "0f4f6db6af43671e", "phash_int": -6.12856576423298e+18, "collected_at": "2026-05-22T04:30:12.234790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0122_IMG.JPG", "file_name": "101-0122_IMG.JPG", "file_stem": "101-0122_IMG", "file_ext": ".jpg", "file_size": 1085032.0, "mtime": "2002-10-05T14:13:24+00:00", "mtime_ts": 1033827204.0, "ctime": "2002-10-05T14:13:24+00:00", "sha256_file": "385236bb80ab3531fdc72f28d749dc84bde261915ca90ada13878153ef7f290d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:13:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6190", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:13:25", "EXIF DateTimeDigitized": "2002:10:05 14:13:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc06fa77fd1cb3c2d1a3f1895ca7434d2ede4854f063fbaf8bbaef483d46d23f", "phash": "861f9fc4add944a1", "dhash": "6068f971c7e4f8e3", "phash_int": -8.782125081270074e+18, "collected_at": "2026-05-22T04:30:12.346148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0123_IMG.JPG", "file_name": "101-0123_IMG.JPG", "file_stem": "101-0123_IMG", "file_ext": ".jpg", "file_size": 560120.0, "mtime": "2002-10-05T14:15:14+00:00", "mtime_ts": 1033827314.0, "ctime": "2002-10-05T14:15:14+00:00", "sha256_file": "aff2d05a2e4571f6cfcdaf063be840aab0aab79af9a6f81a55c590dfb55b92dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:15:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3453", "EXIF ExposureTime": "1/125", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:15:15", "EXIF DateTimeDigitized": "2002:10:05 14:15:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "754545ea2d84da3ddb7218fde8e2a1f087f23e692246b612870c06095b52e43d", "phash": "e3ba901214e7e5bc", "dhash": "c1c1034306c2c1c2", "phash_int": -2.037157474097175e+18, "collected_at": "2026-05-22T04:30:12.347156+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0124_IMG.JPG", "file_name": "101-0124_IMG.JPG", "file_stem": "101-0124_IMG", "file_ext": ".jpg", "file_size": 682657.0, "mtime": "2002-10-05T14:16:44+00:00", "mtime_ts": 1033827404.0, "ctime": "2002-10-05T14:16:44+00:00", "sha256_file": "75d6a8ed2dba02264d4368b9194fc98e56570961520bc6339afdc41371a9dba4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:16:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4384", "EXIF ExposureTime": "1/100", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:16:46", "EXIF DateTimeDigitized": "2002:10:05 14:16:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "238", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95531487286b274534c0b0f2c77eed24fbb5934b6ba4248eca14d7f45bc048ee", "phash": "d3eb8b882e0ab47a", "dhash": "f1cb0927009c9808", "phash_int": -3.1762916951754865e+18, "collected_at": "2026-05-22T04:30:12.448206+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0125_IMG.JPG", "file_name": "101-0125_IMG.JPG", "file_stem": "101-0125_IMG", "file_ext": ".jpg", "file_size": 1027762.0, "mtime": "2002-10-05T14:17:00+00:00", "mtime_ts": 1033827420.0, "ctime": "2002-10-05T14:17:00+00:00", "sha256_file": "b8e9ffcb4e490503331ce4c018a4acf0e678a7d4a5e5e9cd1979cc9ba90520ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:17:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6727", "EXIF ExposureTime": "1/15", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:17:01", "EXIF DateTimeDigitized": "2002:10:05 14:17:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[123, 58, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e3c0c2d9ffa276865aab623d5810ceb9080ac40ba7a215728bcce38122a85e5", "phash": "c048d9e1e01ff99e", "dhash": "936031acad936052", "phash_int": -4.5911802559531597e+18, "collected_at": "2026-05-22T04:30:12.465353+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0126_IMG.JPG", "file_name": "101-0126_IMG.JPG", "file_stem": "101-0126_IMG", "file_ext": ".jpg", "file_size": 1122211.0, "mtime": "2002-10-05T14:17:18+00:00", "mtime_ts": 1033827438.0, "ctime": "2002-10-05T14:17:18+00:00", "sha256_file": "cfe841285f5e71fbd7cc50487bd679b4f779d69a96bd8539b459ebc050b2d4fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:17:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7581", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:17:20", "EXIF DateTimeDigitized": "2002:10:05 14:17:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[98, 34, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4f8717fdc3217c39e40cdb7eea70f73ff0f76a411cd32afd6dc35b54ec484404", "phash": "f78be990a4ca4738", "dhash": "7b6a49cc6ccc0d0e", "phash_int": -6.09136517129288e+17, "collected_at": "2026-05-22T04:30:12.493549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0127_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0127_IMG.JPG", "file_name": "101-0127_IMG.JPG", "file_stem": "101-0127_IMG", "file_ext": ".jpg", "file_size": 619714.0, "mtime": "2002-10-05T14:18:08+00:00", "mtime_ts": 1033827488.0, "ctime": "2002-10-05T14:18:08+00:00", "sha256_file": "c878127ac770d229cfb1c8dc4037da3d873da0c4309ab372ca1fab758a4f768a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:18:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5225", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:18:09", "EXIF DateTimeDigitized": "2002:10:05 14:18:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[124, 141, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a69349dbe88d9c3f7b3ccfca4e53f01828308aafd270802e14a54cbfdc315aec", "phash": "c3d10dc43719743f", "dhash": "c4c0898941c1c37f", "phash_int": -4.336669829791911e+18, "collected_at": "2026-05-22T04:30:12.566552+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0128_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0128_IMG.JPG", "file_name": "101-0128_IMG.JPG", "file_stem": "101-0128_IMG", "file_ext": ".jpg", "file_size": 922746.0, "mtime": "2002-10-05T14:18:32+00:00", "mtime_ts": 1033827512.0, "ctime": "2002-10-05T14:18:32+00:00", "sha256_file": "e9935d75c9a7d1a5e2efa94dc2de735eb6f064a6aad670d78196eb86c5c8cfa8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:18:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7883", "EXIF ExposureTime": "1/6", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:18:34", "EXIF DateTimeDigitized": "2002:10:05 14:18:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "767/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[108, 92, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3068"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20f7419523e38e8fc4c0453c85a6ccce233265a8eba268694ba396372554823c", "phash": "fd71946d69cc0d09", "dhash": "921412034366242c", "phash_int": -1.842029120981532e+17, "collected_at": "2026-05-22T04:30:12.574555+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0129_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0129_IMG.JPG", "file_name": "101-0129_IMG.JPG", "file_stem": "101-0129_IMG", "file_ext": ".jpg", "file_size": 928241.0, "mtime": "2002-10-05T14:18:48+00:00", "mtime_ts": 1033827528.0, "ctime": "2002-10-05T14:18:48+00:00", "sha256_file": "b475fdd90434e9cc940ce6fec7d7eda19f254f19e0fe976b4c09a1b6b5c145dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:18:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8191", "EXIF ExposureTime": "1/6", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:18:50", "EXIF DateTimeDigitized": "2002:10:05 14:18:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2747/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[109, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2747"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4541eb02fc3157c20022aa6fdb95b84456cf7af3cc5987b2ed01818b976d1c62", "phash": "fd38966669cc4d09", "dhash": "361c520342666c6c", "phash_int": -2.0024481681215974e+17, "collected_at": "2026-05-22T04:30:12.617553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0130_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0130_IMG.JPG", "file_name": "101-0130_IMG.JPG", "file_stem": "101-0130_IMG", "file_ext": ".jpg", "file_size": 653248.0, "mtime": "2002-10-05T14:19:42+00:00", "mtime_ts": 1033827582.0, "ctime": "2002-10-05T14:19:42+00:00", "sha256_file": "b953c00fc417b4960894b7ed87b17d09214e9b8d335c60ad05a680bacf758823", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:19:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6180", "EXIF ExposureTime": "1/15", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:19:44", "EXIF DateTimeDigitized": "2002:10:05 14:19:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 45, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "156", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e9b62aece54d6bf7fb45a32c02d6b65ec2b7f37c484312b8b3c2e1f99eda273", "phash": "a499d2ccf3cce462", "dhash": "f0fe1f57e766a69c", "phash_int": -6.586001202347187e+18, "collected_at": "2026-05-22T04:30:12.653560+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0131_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0131_IMG.JPG", "file_name": "101-0131_IMG.JPG", "file_stem": "101-0131_IMG", "file_ext": ".jpg", "file_size": 649620.0, "mtime": "2002-10-05T14:19:52+00:00", "mtime_ts": 1033827592.0, "ctime": "2002-10-05T14:19:52+00:00", "sha256_file": "6e96c2323c8ff2a38dec19c8b467db389fea69600de48fe47ab14f3fdf8ca3f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:19:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4999", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:19:54", "EXIF DateTimeDigitized": "2002:10:05 14:19:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[84, 37, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b87a96a9db8e0d91f7919e74ad16173961177b2f5c36c0a7243ab0199ccd33e", "phash": "bcbcc0025f8fc4ce", "dhash": "189e266e6dae4c38", "phash_int": -4.846787982531771e+18, "collected_at": "2026-05-22T04:30:12.693742+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0132_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0132_IMG.JPG", "file_name": "101-0132_IMG.JPG", "file_stem": "101-0132_IMG", "file_ext": ".jpg", "file_size": 584076.0, "mtime": "2002-10-05T14:33:12+00:00", "mtime_ts": 1033828392.0, "ctime": "2002-10-05T14:33:12+00:00", "sha256_file": "09c5e60483acf90096cf8f225e159b476f6356465478850b29f86e7a9569f962", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:33:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4564", "EXIF ExposureTime": "1/40", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:33:14", "EXIF DateTimeDigitized": "2002:10:05 14:33:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3317a9f58f57d15d4ce583eab0fb15777dc96ad96e57d9f649c0d866c464b954", "phash": "cfea953027478ae8", "dhash": "440141614d79cae2", "phash_int": -3.4647929292582067e+18, "collected_at": "2026-05-22T04:30:12.695742+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0133_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0133_IMG.JPG", "file_name": "101-0133_IMG.JPG", "file_stem": "101-0133_IMG", "file_ext": ".jpg", "file_size": 630973.0, "mtime": "2002-10-05T14:33:22+00:00", "mtime_ts": 1033828402.0, "ctime": "2002-10-05T14:33:22+00:00", "sha256_file": "090532e1090548f3c35d22a3a55b9524db74510328bbbd5aff0ec5e4c5ba1023", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:33:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4505", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:33:24", "EXIF DateTimeDigitized": "2002:10:05 14:33:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010133", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "732387e058600f8b4a260adcc771890c9391413570071e430da6ddbddd76530e", "phash": "a4bd9b1719bd3c10", "dhash": "30069636aae6a4f8", "phash_int": -6.575929357372671e+18, "collected_at": "2026-05-22T04:30:12.791745+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0134_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0134_IMG.JPG", "file_name": "101-0134_IMG.JPG", "file_stem": "101-0134_IMG", "file_ext": ".jpg", "file_size": 921117.0, "mtime": "2002-10-05T14:33:32+00:00", "mtime_ts": 1033828412.0, "ctime": "2002-10-05T14:33:32+00:00", "sha256_file": "c6b04376ff760de54ba1c23827feb842103c3a5b6446a70fc57ed71dfdefe8b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:33:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6607", "EXIF ExposureTime": "1/30", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:33:33", "EXIF DateTimeDigitized": "2002:10:05 14:33:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010134", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "180", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84eb8086bf9ef3dcd4ebde786c38fa78de0b003b71de5ad3fb3d33ffd0038312", "phash": "f4c4e02225d5e7a7", "dhash": "86a56076664d0018", "phash_int": -8.092755957515613e+17, "collected_at": "2026-05-22T04:30:12.797745+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0135_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0135_IMG.JPG", "file_name": "101-0135_IMG.JPG", "file_stem": "101-0135_IMG", "file_ext": ".jpg", "file_size": 768865.0, "mtime": "2002-10-05T14:48:56+00:00", "mtime_ts": 1033829336.0, "ctime": "2002-10-05T14:48:56+00:00", "sha256_file": "3fe3ff4dfa093150983e430f0dc139b8464002ec5b41ed393faa319a4487c8bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 14:48:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7154", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 14:48:57", "EXIF DateTimeDigitized": "2002:10:05 14:48:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 215, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010135", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "384386a61ff00424d40e9d32f7ac95aa44f66156b7844e5f9139f7eb11c949b4", "phash": "997afe150f2e00ab", "dhash": "77189bdbd2d6266b", "phash_int": -7.387312872345436e+18, "collected_at": "2026-05-22T04:30:12.863998+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0136_IMG.JPG", "file_name": "101-0136_IMG.JPG", "file_stem": "101-0136_IMG", "file_ext": ".jpg", "file_size": 947711.0, "mtime": "2002-10-05T15:26:12+00:00", "mtime_ts": 1033831572.0, "ctime": "2002-10-05T15:26:12+00:00", "sha256_file": "b1df61b0a834fe67121e5f784cea7dcd15f2b483e10cfc238d4164f2124c8b1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 15:26:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7070", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 15:26:13", "EXIF DateTimeDigitized": "2002:10:05 15:26:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[106, 158, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43340a9018a9d51ab7043d917dc2e92012cba0e977ab5d7835704b901bb700ce", "phash": "d463594d86a479ad", "dhash": "80c086aca40000b0", "phash_int": -3.1425699254681943e+18, "collected_at": "2026-05-22T04:30:12.875080+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0137_IMG.JPG", "file_name": "101-0137_IMG.JPG", "file_stem": "101-0137_IMG", "file_ext": ".jpg", "file_size": 968915.0, "mtime": "2002-10-05T16:55:12+00:00", "mtime_ts": 1033836912.0, "ctime": "2002-10-05T16:55:12+00:00", "sha256_file": "d748fa7c5b69f35720e8118c4f0b12affc79bd40826250d40f60b5efb11a2d35", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 16:55:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6316", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 16:55:13", "EXIF DateTimeDigitized": "2002:10:05 16:55:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[111, 32, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7451bde4cbc95c3731ad17598b1576932067c7eedfd92c845affaacc548f18ab", "phash": "e2d6ab0a4455dd3a", "dhash": "59cd348485c34b03", "phash_int": -2.1013041155372572e+18, "collected_at": "2026-05-22T04:30:12.960843+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0138_IMG.JPG", "file_name": "101-0138_IMG.JPG", "file_stem": "101-0138_IMG", "file_ext": ".jpg", "file_size": 787466.0, "mtime": "2002-10-05T16:55:32+00:00", "mtime_ts": 1033836932.0, "ctime": "2002-10-05T16:55:32+00:00", "sha256_file": "d9c54c957c02ef701b8ea778ee172f48b2cf6b5b88c17ca88c511068b19771d5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 16:55:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6782", "EXIF ExposureTime": "1/20", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 16:55:34", "EXIF DateTimeDigitized": "2002:10:05 16:55:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[138, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8f9163ac60600ebb09ec76ae6d13cdda852d4746a572a5022290885d212e482", "phash": "d4f2cd9c939306c6", "dhash": "9082c4dc94b67676", "phash_int": -3.102191120930372e+18, "collected_at": "2026-05-22T04:30:12.981844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0139_IMG.JPG", "file_name": "101-0139_IMG.JPG", "file_stem": "101-0139_IMG", "file_ext": ".jpg", "file_size": 1005757.0, "mtime": "2002-10-05T16:55:46+00:00", "mtime_ts": 1033836946.0, "ctime": "2002-10-05T16:55:46+00:00", "sha256_file": "b59697605af66bb6d15ed04ab21356d212a819f57ea224647cf3ca2afd35b781", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 16:55:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7250", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 16:55:47", "EXIF DateTimeDigitized": "2002:10:05 16:55:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[116, 91, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "174a6e39824cd752046827a04e985089c129ce5fd4ace704edf66f90dfe723eb", "phash": "c10bcbade95488f6", "dhash": "d3d9b5144ed62481", "phash_int": -4.536308251841231e+18, "collected_at": "2026-05-22T04:30:13.020846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0140_IMG.JPG", "file_name": "101-0140_IMG.JPG", "file_stem": "101-0140_IMG", "file_ext": ".jpg", "file_size": 800546.0, "mtime": "2002-10-05T17:07:08+00:00", "mtime_ts": 1033837628.0, "ctime": "2002-10-05T17:07:08+00:00", "sha256_file": "a631cf00af7c39ccccc9a81259ede30f6bd2bb2abb579b99424bc975a43e6b86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:07:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6513", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:07:09", "EXIF DateTimeDigitized": "2002:10:05 17:07:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[106, 71, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44bb0dad5b56dc46679e9ed0f4cec03339b4a490e63a4950635662bcb3c4cb0c", "phash": "d5bdc1d43493c334", "dhash": "f6224b1926e0f8e9", "phash_int": -3.0450646558732605e+18, "collected_at": "2026-05-22T04:30:13.036850+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0141_IMG.JPG", "file_name": "101-0141_IMG.JPG", "file_stem": "101-0141_IMG", "file_ext": ".jpg", "file_size": 703750.0, "mtime": "2002-10-05T17:09:08+00:00", "mtime_ts": 1033837748.0, "ctime": "2002-10-05T17:09:08+00:00", "sha256_file": "e56ddd31821884c38e2ee1243d8557db68b09908bd2b442f29aa074ffdc72546", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:09:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5711", "EXIF ExposureTime": "1/6", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:09:10", "EXIF DateTimeDigitized": "2002:10:05 17:09:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5569/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[121, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5569"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2a59905c46a161c8df5f8eb817f662511d8544c727f278ded760ee549584b66", "phash": "bb4c3360473af0f1", "dhash": "37373c270b181858", "phash_int": -4.950525401782096e+18, "collected_at": "2026-05-22T04:30:13.091850+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0142_IMG.JPG", "file_name": "101-0142_IMG.JPG", "file_stem": "101-0142_IMG", "file_ext": ".jpg", "file_size": 636975.0, "mtime": "2002-10-05T17:09:38+00:00", "mtime_ts": 1033837778.0, "ctime": "2002-10-05T17:09:38+00:00", "sha256_file": "5dcfbd562a60bf6856eb33c88ae9def85e435bbca1c2083e48f48be548c93164", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:09:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6912", "EXIF ExposureTime": "1/5", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:09:39", "EXIF DateTimeDigitized": "2002:10:05 17:09:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8161/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[109, 47, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "73", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8161"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "34e13194ff6eac33d824aedb10ccf282fbaa9837428801908bb3da0e7d63e3ff", "phash": "c84988e63bb8af87", "dhash": "d3d3d2b2c264b0a8", "phash_int": -4.0145270703982715e+18, "collected_at": "2026-05-22T04:30:13.109848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0143_IMG.JPG", "file_name": "101-0143_IMG.JPG", "file_stem": "101-0143_IMG", "file_ext": ".jpg", "file_size": 895717.0, "mtime": "2002-10-05T17:10:20+00:00", "mtime_ts": 1033837820.0, "ctime": "2002-10-05T17:10:20+00:00", "sha256_file": "979250f3d2826599d310db33fc11e538d402a49f4648edc0968984e43596dce6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:10:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7659", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:10:22", "EXIF DateTimeDigitized": "2002:10:05 17:10:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5221/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[127, 139, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10442"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "506eb9f55db1bbd566802ebd96e14efe836e995208022775a09779c41c50ee4b", "phash": "c3c07e7f56b64282", "dhash": "2cc1c1e4ea7a7365", "phash_int": -4.341330955404427e+18, "collected_at": "2026-05-22T04:30:13.183544+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0144_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0144_IMG.JPG", "file_name": "101-0144_IMG.JPG", "file_stem": "101-0144_IMG", "file_ext": ".jpg", "file_size": 685557.0, "mtime": "2002-10-05T17:10:56+00:00", "mtime_ts": 1033837856.0, "ctime": "2002-10-05T17:10:56+00:00", "sha256_file": "41a5fa41ed0e8a6107a8b389ff73e1970be329f941e0abbc1db7b4cc3e2e58ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:10:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6819", "EXIF ExposureTime": "1/13", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:10:57", "EXIF DateTimeDigitized": "2002:10:05 17:10:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "374/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[127, 138, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010144", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "112", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2992"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8ee9c99cd2d01d8166d87f57737d3843f84ba2aea714a5b854dacb5c2be03aa3", "phash": "d1ca29ad75fc3430", "dhash": "e2e9d8b490c8d0d6", "phash_int": -3.329803149501517e+18, "collected_at": "2026-05-22T04:30:13.187544+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0145_IMG.JPG", "file_name": "101-0145_IMG.JPG", "file_stem": "101-0145_IMG", "file_ext": ".jpg", "file_size": 615898.0, "mtime": "2002-10-05T17:12:36+00:00", "mtime_ts": 1033837956.0, "ctime": "2002-10-05T17:12:36+00:00", "sha256_file": "c58a1f706eb2ccacf559d026981cd6753b9709e0ac9364c14bcc994acfda3250", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:12:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7057", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:12:37", "EXIF DateTimeDigitized": "2002:10:05 17:12:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a471f3ba436f97318a2dcc05eed63a4d093f526e6c5fee05257b74eeaf3bd412", "phash": "8d9072775acac0ee", "dhash": "889ed26a6b6a4b53", "phash_int": -8.245965060765467e+18, "collected_at": "2026-05-22T04:30:13.271625+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0146_IMG.JPG", "file_name": "101-0146_IMG.JPG", "file_stem": "101-0146_IMG", "file_ext": ".jpg", "file_size": 774131.0, "mtime": "2002-10-05T17:13:20+00:00", "mtime_ts": 1033838000.0, "ctime": "2002-10-05T17:13:20+00:00", "sha256_file": "bef9d09d514c6bf686c0ea71436cfbb4551b2366a923ebe21d8934eb5e0e252f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:13:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5742", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:13:21", "EXIF DateTimeDigitized": "2002:10:05 17:13:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[59, 84, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b74eac143d5942c0e38675e7f144da8fb101657a4a385da33e54a467ee24c607", "phash": "9881956e63395ce7", "dhash": "faeab2112d37b2e4", "phash_int": -7.457515206605186e+18, "collected_at": "2026-05-22T04:30:13.273624+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0148_IMG.JPG", "file_name": "101-0148_IMG.JPG", "file_stem": "101-0148_IMG", "file_ext": ".jpg", "file_size": 824667.0, "mtime": "2002-10-05T17:14:10+00:00", "mtime_ts": 1033838050.0, "ctime": "2002-10-05T17:14:10+00:00", "sha256_file": "52ba09ab0874cf9c84603c2af784a73d0604af449978f14f5fe1b1a978e903a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:14:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7137", "EXIF ExposureTime": "1/8", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:14:12", "EXIF DateTimeDigitized": "2002:10:05 17:14:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6211/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[122, 143, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010148", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "71", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6211"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72eb96368522612ce5c13b1e99e09df2e2cf3e2bb95ffcb49ce87e293c5d873d", "phash": "98df3d23c5883276", "dhash": "5b3929b0a4a9b333", "phash_int": -7.431153636290842e+18, "collected_at": "2026-05-22T04:30:13.358904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0147_IMG.JPG", "file_name": "101-0147_IMG.JPG", "file_stem": "101-0147_IMG", "file_ext": ".jpg", "file_size": 866747.0, "mtime": "2002-10-05T17:13:46+00:00", "mtime_ts": 1033838026.0, "ctime": "2002-10-05T17:13:46+00:00", "sha256_file": "bb6607baf4dbbb0f9ac72086093e2a4cccad4c4128e324f5f0f383c56d9033db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:13:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8033", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:13:48", "EXIF DateTimeDigitized": "2002:10:05 17:13:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[113, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d568875a2248dc0f496af2c68039fef6e60c6ced8b9a5aee1cfaa9820256d525", "phash": "9222a61e15bd7f26", "dhash": "8ccdcdd8b8b1f9f4", "phash_int": -7.91658254681994e+18, "collected_at": "2026-05-22T04:30:13.361905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0149_IMG.JPG", "file_name": "101-0149_IMG.JPG", "file_stem": "101-0149_IMG", "file_ext": ".jpg", "file_size": 678325.0, "mtime": "2002-10-05T17:16:12+00:00", "mtime_ts": 1033838172.0, "ctime": "2002-10-05T17:16:12+00:00", "sha256_file": "2c906035887eb09033455ceaa0c28b853bf74135775127064cea7a5b41e7a030", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:16:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6613", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:16:13", "EXIF DateTimeDigitized": "2002:10:05 17:16:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "119/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 342, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "238"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84769b0580d4d6e0b44b5d1d0d08f5725a81a4b9a0db8a5af8eab83bea4dd5b4", "phash": "c0d2290f2b073ddf", "dhash": "e0e0e0e8e0f0f0f0", "phash_int": -4.552531128195007e+18, "collected_at": "2026-05-22T04:30:13.417968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0150_IMG.JPG", "file_name": "101-0150_IMG.JPG", "file_stem": "101-0150_IMG", "file_ext": ".jpg", "file_size": 639375.0, "mtime": "2002-10-05T17:17:20+00:00", "mtime_ts": 1033838240.0, "ctime": "2002-10-05T17:17:20+00:00", "sha256_file": "a21d04f4bdba06ec6fffa82d09904d93aad37012f057740424ef722e3ef379ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:17:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6835", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:17:22", "EXIF DateTimeDigitized": "2002:10:05 17:17:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[96, 171, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70f37f90f4bb485e4084c41752136288b4519f6ef6b4c0f4edf3b6844d4cba2f", "phash": "b680bdcc4aed6b42", "dhash": "cbcccdcdc946641d", "phash_int": -5.296024476659652e+18, "collected_at": "2026-05-22T04:30:13.422968+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0151_IMG.JPG", "file_name": "101-0151_IMG.JPG", "file_stem": "101-0151_IMG", "file_ext": ".jpg", "file_size": 893856.0, "mtime": "2002-10-05T17:19:28+00:00", "mtime_ts": 1033838368.0, "ctime": "2002-10-05T17:19:28+00:00", "sha256_file": "8d8b8c5dcefdbbeb9bd69c8966288d64e6f51f91542ef0710ad08eaf3eb7a374", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:19:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6967", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:19:30", "EXIF DateTimeDigitized": "2002:10:05 17:19:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[93, 71, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9faf71fc38eb754f56f232adb3b600c50b66a40f03bbf88e59f05ab308911c7f", "phash": "999cf0b0c7cbcc26", "dhash": "343cb2ea6cb089c1", "phash_int": -7.377757447482783e+18, "collected_at": "2026-05-22T04:30:13.514251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0152_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0152_IMG.JPG", "file_name": "101-0152_IMG.JPG", "file_stem": "101-0152_IMG", "file_ext": ".jpg", "file_size": 861641.0, "mtime": "2002-10-05T17:19:52+00:00", "mtime_ts": 1033838392.0, "ctime": "2002-10-05T17:19:52+00:00", "sha256_file": "55f59dc76e2922dd80a5461634389833f138c176e1cc1b91c11047858923b54f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:19:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5268", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:19:54", "EXIF DateTimeDigitized": "2002:10:05 17:19:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[142, 124, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010152", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1674863c8bc68c920670c66eeca5bc5e4bb26969faacf76a53c39e08abdd3a62", "phash": "d438e0fc30545fd5", "dhash": "bcbdf8fc7c6ce4f8", "phash_int": -3.154524165225816e+18, "collected_at": "2026-05-22T04:30:13.530334+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0153_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0153_IMG.JPG", "file_name": "101-0153_IMG.JPG", "file_stem": "101-0153_IMG", "file_ext": ".jpg", "file_size": 730682.0, "mtime": "2002-10-05T17:20:20+00:00", "mtime_ts": 1033838420.0, "ctime": "2002-10-05T17:20:20+00:00", "sha256_file": "fea4c5a3d765c132df3d3dd33b9062f1ff61f9ae525e8a05bc23dbc4a2b2a464", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:20:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6353", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:20:22", "EXIF DateTimeDigitized": "2002:10:05 17:20:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[102, 119, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010153", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb5e5d01d12a0102afa83dd32ee3ee69a50ff14195c5baa743fb520d892866ab", "phash": "b139860387af4b5b", "dhash": "de9613b69a9aa7ec", "phash_int": -5.676358505604363e+18, "collected_at": "2026-05-22T04:30:13.565337+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0154_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0154_IMG.JPG", "file_name": "101-0154_IMG.JPG", "file_stem": "101-0154_IMG", "file_ext": ".jpg", "file_size": 668451.0, "mtime": "2002-10-05T17:22:14+00:00", "mtime_ts": 1033838534.0, "ctime": "2002-10-05T17:22:14+00:00", "sha256_file": "759ac50e31b4ee4aeddae7fa3a87f8c7ff68d6fd345f7dce4127aa741c92f00f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:22:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5741", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:22:15", "EXIF DateTimeDigitized": "2002:10:05 17:22:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[118, 169, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010154", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed00456b7cd1a93929f2cef008f07483667e33ac90ceb1267ffd2920babb642e", "phash": "e033d365c36b921d", "dhash": "ce8e1f8f87c703f1", "phash_int": -2.291255351377686e+18, "collected_at": "2026-05-22T04:30:13.579338+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0156_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0156_IMG.JPG", "file_name": "101-0156_IMG.JPG", "file_stem": "101-0156_IMG", "file_ext": ".jpg", "file_size": 625957.0, "mtime": "2002-10-05T17:23:36+00:00", "mtime_ts": 1033838616.0, "ctime": "2002-10-05T17:23:36+00:00", "sha256_file": "ca47288698b673363dd4cc17aacebf58c27f6eceabed876b612ba96bc4a1819c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:23:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6647", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:23:38", "EXIF DateTimeDigitized": "2002:10:05 17:23:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "52/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[117, 147, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010156", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2080"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13734166ddb2cb0d0dc25b9123a0fc864e5cfc0962ddea1e0390903c1e1fe9e5", "phash": "b12ef369167f2824", "dhash": "56def764f0931acc", "phash_int": -5.679334447393069e+18, "collected_at": "2026-05-22T04:30:13.626559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0155_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Amsterdam\\101-0155_IMG.JPG", "file_name": "101-0155_IMG.JPG", "file_stem": "101-0155_IMG", "file_ext": ".jpg", "file_size": 899398.0, "mtime": "2002-10-05T17:23:18+00:00", "mtime_ts": 1033838598.0, "ctime": "2002-10-05T17:23:18+00:00", "sha256_file": "514b6c461cbb6b19b1cfedab9712b1040cbae94d2cf280e4d12c4479d331aa31", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:05 17:23:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6692", "EXIF ExposureTime": "1/15", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:05 17:23:19", "EXIF DateTimeDigitized": "2002:10:05 17:23:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[129, 110, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010155", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f482440a78abf0e58a76ea38f073a6e2671752bee16541391b561639b67fb2ad", "phash": "a69652bb4db2718c", "dhash": "8c6c86c627cf8d80", "phash_int": -6.442871252491014e+18, "collected_at": "2026-05-22T04:30:13.636648+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0001_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0001_IMG_3.JPG", "file_name": "100-0001_IMG_3.JPG", "file_stem": "100-0001_IMG_3", "file_ext": ".jpg", "file_size": 1678957.0, "mtime": "2002-12-12T10:36:44+00:00", "mtime_ts": 1039689404.0, "ctime": "2002-12-12T10:36:44+00:00", "sha256_file": "9a25c2c21f786df303e6ee4de9c6032ac065ce668b637e9ebdc1d08aebe31398", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:36:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3966", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:36:45", "EXIF DateTimeDigitized": "2002:12:12 11:36:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "381208649d7556815f18fdc627a4848d1e1566a9475a41c31234fd97528b6878", "phash": "e7ab00700f6f94d3", "dhash": "e6ce4723020484f4", "phash_int": -1.7533071486353682e+18, "collected_at": "2026-05-22T04:30:13.695286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0002_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0002_IMG_3.JPG", "file_name": "100-0002_IMG_3.JPG", "file_stem": "100-0002_IMG_3", "file_ext": ".jpg", "file_size": 1513686.0, "mtime": "2002-12-12T10:37:10+00:00", "mtime_ts": 1039689430.0, "ctime": "2002-12-12T10:37:10+00:00", "sha256_file": "b66d43c807d28c410346911ce8f4ae0b705163e999a6c267c8da5b8dc2dee8cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:37:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4564", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:37:12", "EXIF DateTimeDigitized": "2002:12:12 11:37:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4494dca9dbd7f04839a3822c68056e64f6303fea026c22fb1753c103d473a114", "phash": "dfdb286b9e2a208a", "dhash": "7979787878517373", "phash_int": -2.3162131406718157e+18, "collected_at": "2026-05-22T04:30:13.741588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0004_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0004_IMG_3.JPG", "file_name": "100-0004_IMG_3.JPG", "file_stem": "100-0004_IMG_3", "file_ext": ".jpg", "file_size": 934319.0, "mtime": "2002-12-12T10:57:08+00:00", "mtime_ts": 1039690628.0, "ctime": "2002-12-12T10:57:08+00:00", "sha256_file": "2fd58c6855d2439dd6f69fd529997d8eb963a6cb58833ff166a743d60e36f6e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:57:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4214", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:57:10", "EXIF DateTimeDigitized": "2002:12:12 11:57:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "caf15057af31cf1fe5affdca3caca1a4e0744ffa25a8cce1550da3292120b750", "phash": "ec91836c3852cfb5", "dhash": "c5cb403117030000", "phash_int": -1.4001935083108557e+18, "collected_at": "2026-05-22T04:30:13.773854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0003_IMG_4.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0003_IMG_4.JPG", "file_name": "100-0003_IMG_4.JPG", "file_stem": "100-0003_IMG_4", "file_ext": ".jpg", "file_size": 1463245.0, "mtime": "2003-01-04T10:30:14+00:00", "mtime_ts": 1041676214.0, "ctime": "2003-01-04T10:30:14+00:00", "sha256_file": "0ae0a87bdfd1ecc3ff3fdc4a3724483000c6d1b81e91e40d6143de95c6d7a779", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:56:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7902", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:12 11:56:34", "EXIF DateTimeDigitized": "2002:12:12 11:56:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17c2a3c109b38cfe39af59cf1b72c57fc7835f998f51090932671798b1f1fa37", "phash": "a69dd9f478043749", "dhash": "a84466e6e46ee5d9", "phash_int": -6.440752248061151e+18, "collected_at": "2026-05-22T04:30:13.790924+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0005_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0005_IMG_3.JPG", "file_name": "100-0005_IMG_3.JPG", "file_stem": "100-0005_IMG_3", "file_ext": ".jpg", "file_size": 1063091.0, "mtime": "2002-12-12T10:57:14+00:00", "mtime_ts": 1039690634.0, "ctime": "2002-12-12T10:57:14+00:00", "sha256_file": "89185d9960cde1b5f2dd577f91edc9a72276ceec880eedbd65ea9efd9be06214", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:57:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5482", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:57:15", "EXIF DateTimeDigitized": "2002:12:12 11:57:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "300", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7024299ebdcb1e400426692f20fb7b07de6737ba2a9f7198ef0c78bc36f78be", "phash": "dadcb193a42dac68", "dhash": "bc9025e4e1d958ac", "phash_int": -2.676068830892152e+18, "collected_at": "2026-05-22T04:30:13.824178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0006_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0006_IMG_3.JPG", "file_name": "100-0006_IMG_3.JPG", "file_stem": "100-0006_IMG_3", "file_ext": ".jpg", "file_size": 921019.0, "mtime": "2002-12-12T10:57:18+00:00", "mtime_ts": 1039690638.0, "ctime": "2002-12-12T10:57:18+00:00", "sha256_file": "fb8cadc9d583dbb2128afd3db58a2af3d50cc658124d94d7b2731497a3077521", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:57:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4737", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:57:19", "EXIF DateTimeDigitized": "2002:12:12 11:57:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "300", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3545547d8f8d61b92a7b73f250115c34b451a87ed54066fded814aaae3cb6359", "phash": "bfd5e2c810692637", "dhash": "f86c6e7a7c636f3d", "phash_int": -4.623540093529283e+18, "collected_at": "2026-05-22T04:30:13.830180+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0007_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0007_IMG_3.JPG", "file_name": "100-0007_IMG_3.JPG", "file_stem": "100-0007_IMG_3", "file_ext": ".jpg", "file_size": 911845.0, "mtime": "2002-12-12T10:57:22+00:00", "mtime_ts": 1039690642.0, "ctime": "2002-12-12T10:57:22+00:00", "sha256_file": "682a925fa9f56f1ea8c3d406cfcd3e454443391765c5c4ac5aa1e7c36f7d08a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 11:57:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4610", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 11:57:24", "EXIF DateTimeDigitized": "2002:12:12 11:57:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ac1288e13feae0cde91591119fdf1a9657826ffab480996ebbde358a06a72e5", "phash": "a5da6e19d6ea1541", "dhash": "0000ccccea7e8bc7", "phash_int": -6.495758455269617e+18, "collected_at": "2026-05-22T04:30:13.884307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0008_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0008_IMG_3.JPG", "file_name": "100-0008_IMG_3.JPG", "file_stem": "100-0008_IMG_3", "file_ext": ".jpg", "file_size": 941700.0, "mtime": "2002-12-12T11:01:30+00:00", "mtime_ts": 1039690890.0, "ctime": "2002-12-12T11:01:30+00:00", "sha256_file": "18940ac763a70e07346154745850403932d5186c9aecf6fdf7375ae6d449b8a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:01:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4099", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:01:32", "EXIF DateTimeDigitized": "2002:12:12 12:01:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc77cf7ff1dc23c81a302d4741d1e731ce5be6aafa0060f300ce38226e5b2585", "phash": "b0979f696886a678", "dhash": "fcd84cac9b8e3038", "phash_int": -5.721929526476888e+18, "collected_at": "2026-05-22T04:30:13.893484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0010_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0010_IMG_2.JPG", "file_name": "100-0010_IMG_2.JPG", "file_stem": "100-0010_IMG_2", "file_ext": ".jpg", "file_size": 1037760.0, "mtime": "2002-12-12T11:01:44+00:00", "mtime_ts": 1039690904.0, "ctime": "2002-12-12T11:01:44+00:00", "sha256_file": "4a1eef8b2da8a3fb1d36c6beaaad9a8bcf6b256897448f3b6ee7355d20d907a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:01:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5131", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:01:45", "EXIF DateTimeDigitized": "2002:12:12 12:01:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82606e71ac9ea569ae1686afa207fe2a1e7cbc538146b5e3243b10d04387e943", "phash": "9dd3ec6a35118ee0", "dhash": "eb2074580be1c726", "phash_int": -7.074050648767885e+18, "collected_at": "2026-05-22T04:30:13.971575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0009_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0009_IMG_3.JPG", "file_name": "100-0009_IMG_3.JPG", "file_stem": "100-0009_IMG_3", "file_ext": ".jpg", "file_size": 950077.0, "mtime": "2002-12-12T11:01:38+00:00", "mtime_ts": 1039690898.0, "ctime": "2002-12-12T11:01:38+00:00", "sha256_file": "4e3b040224d1ffc38ec9dbec668a2a3eabf7e7b39a16e9c0651c68a1c23330f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:01:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4692", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:01:40", "EXIF DateTimeDigitized": "2002:12:12 12:01:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fa0e42e0ae0a5d33eb8908eda71350e8b5c3a90adff80d2b1ab02788f81ef8d", "phash": "d4c74b90bcce01f5", "dhash": "e02c8424acddb094", "phash_int": -3.1144375322884173e+18, "collected_at": "2026-05-22T04:30:13.978736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0011_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0011_IMG_2.JPG", "file_name": "100-0011_IMG_2.JPG", "file_stem": "100-0011_IMG_2", "file_ext": ".jpg", "file_size": 1050354.0, "mtime": "2002-12-12T11:01:48+00:00", "mtime_ts": 1039690908.0, "ctime": "2002-12-12T11:01:48+00:00", "sha256_file": "a253efee16634f95465ee6995cfadcd923c31cd3a5df1627ceb1989919b4a10c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:01:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4628", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:01:50", "EXIF DateTimeDigitized": "2002:12:12 12:01:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98f1b268c00e2517494fb4cecf36397d1b1371a004c0ba26cc8843ac5d3663a5", "phash": "cccd2928169bdbd4", "dhash": "3337e0e0d4e6a0e0", "phash_int": -3.6892472675918244e+18, "collected_at": "2026-05-22T04:30:14.045741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0012_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0012_IMG_3.JPG", "file_name": "100-0012_IMG_3.JPG", "file_stem": "100-0012_IMG_3", "file_ext": ".jpg", "file_size": 1624493.0, "mtime": "2003-01-04T10:30:48+00:00", "mtime_ts": 1041676248.0, "ctime": "2003-01-04T10:30:48+00:00", "sha256_file": "61f3e45ebf3582fb5e3f3d3152f327f9b80b889a4638f8a8cd5755ec3e282e33", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:15:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5040", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:12 12:15:00", "EXIF DateTimeDigitized": "2002:12:12 12:15:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20caffe6e1e919b3d2ed8ef0c1b5c9e00da88281a7ba782e8ac3fc1a29e8bb27", "phash": "d2f1292b165679a9", "dhash": "08d01ccccc50c6e8", "phash_int": -3.2467685913223183e+18, "collected_at": "2026-05-22T04:30:14.066739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0013_IMG_3.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0013_IMG_3.JPG", "file_name": "100-0013_IMG_3.JPG", "file_stem": "100-0013_IMG_3", "file_ext": ".jpg", "file_size": 1689562.0, "mtime": "2003-01-04T10:30:50+00:00", "mtime_ts": 1041676250.0, "ctime": "2003-01-04T10:30:50+00:00", "sha256_file": "f09b3578c93787a6bf7b1ede9fc4ab888cc6e2756b689a78ba8562f59a09ad16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:15:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6015", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:12 12:15:05", "EXIF DateTimeDigitized": "2002:12:12 12:15:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "024045aaf1b9812b03b9645acb41f9a4fdf5bbb89ef9fba8c4fc52050a13db17", "phash": "f7dd8c22634c9493", "dhash": "424874424d4f32cc", "phash_int": -5.861582971655566e+17, "collected_at": "2026-05-22T04:30:14.155745+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0014_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0014_IMG_2.JPG", "file_name": "100-0014_IMG_2.JPG", "file_stem": "100-0014_IMG_2", "file_ext": ".jpg", "file_size": 1376260.0, "mtime": "2003-01-04T10:31:04+00:00", "mtime_ts": 1041676264.0, "ctime": "2003-01-04T10:31:04+00:00", "sha256_file": "2a59ed6c020ff6de5dd090ea1700ffb10939a9537a25aa39350702aa6aeab986", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:15:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7972", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:12 12:15:10", "EXIF DateTimeDigitized": "2002:12:12 12:15:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e191e57de9a68fa93a7ef0a42e7175068073e9ae1592d440d9c26b7e5d2d0c78", "phash": "b9c9965a28b2c1cf", "dhash": "88f212973b182c4c", "phash_int": -5.059347392400015e+18, "collected_at": "2026-05-22T04:30:14.157744+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0015_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0015_IMG_2.JPG", "file_name": "100-0015_IMG_2.JPG", "file_stem": "100-0015_IMG_2", "file_ext": ".jpg", "file_size": 899102.0, "mtime": "2002-12-12T11:24:14+00:00", "mtime_ts": 1039692254.0, "ctime": "2002-12-12T11:24:14+00:00", "sha256_file": "7a53525f9fd07bf63911900f410fe829c446d2d7523e7b7343bdb2a6c77b377d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4822", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:16", "EXIF DateTimeDigitized": "2002:12:12 12:24:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "347", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ce39e1c70afea9882bac7c0b4a4aa3cc7d4d2add5017cee3931b97b740a9806", "phash": "fc81496a357490df", "dhash": "8382909626202020", "phash_int": -2.5183938364384438e+17, "collected_at": "2026-05-22T04:30:14.259471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0016_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0016_IMG_2.JPG", "file_name": "100-0016_IMG_2.JPG", "file_stem": "100-0016_IMG_2", "file_ext": ".jpg", "file_size": 1064100.0, "mtime": "2002-12-12T11:24:26+00:00", "mtime_ts": 1039692266.0, "ctime": "2002-12-12T11:24:26+00:00", "sha256_file": "a0bc2a5ce9e630692a36b3334286da336eb5ccf7c4a7d4b9a500ae7e37990af2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5260", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:27", "EXIF DateTimeDigitized": "2002:12:12 12:24:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26c63d5857ad38319d51811950c68a5312c96ef536a408be1fe2ded45fdfbc41", "phash": "e060358f674397f8", "dhash": "848485410374300e", "phash_int": -2.2787625214203924e+18, "collected_at": "2026-05-22T04:30:14.275471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0017_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0017_IMG_2.JPG", "file_name": "100-0017_IMG_2.JPG", "file_stem": "100-0017_IMG_2", "file_ext": ".jpg", "file_size": 857483.0, "mtime": "2002-12-12T11:24:34+00:00", "mtime_ts": 1039692274.0, "ctime": "2002-12-12T11:24:34+00:00", "sha256_file": "7d3c4e5094dee0407fe7fbcaa4e132b060d5e4092acb030c9ad191f85f782273", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4191", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:35", "EXIF DateTimeDigitized": "2002:12:12 12:24:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "935b7ab56048d51dab3002a40218eaed2e6932baad5bf2cff133fb788b64aa43", "phash": "d180aa7f4356853f", "dhash": "c3e9fcd888840133", "phash_int": -3.3504906591963366e+18, "collected_at": "2026-05-22T04:30:14.374759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0018_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0018_IMG_2.JPG", "file_name": "100-0018_IMG_2.JPG", "file_stem": "100-0018_IMG_2", "file_ext": ".jpg", "file_size": 1084094.0, "mtime": "2002-12-12T11:24:38+00:00", "mtime_ts": 1039692278.0, "ctime": "2002-12-12T11:24:38+00:00", "sha256_file": "de4adb725f4aa8317e732fa55d3f286ccf27a37712c45a4a57023534996ad816", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4461", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:39", "EXIF DateTimeDigitized": "2002:12:12 12:24:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39f8aafd92ed7a56fb6b987ea631c1e07e3aea1783f670dbc2254ccd29bc4a46", "phash": "868e0ed95983667e", "dhash": "62646ecc36080020", "phash_int": -8.751040699261819e+18, "collected_at": "2026-05-22T04:30:14.408760+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0019_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0019_IMG_2.JPG", "file_name": "100-0019_IMG_2.JPG", "file_stem": "100-0019_IMG_2", "file_ext": ".jpg", "file_size": 617648.0, "mtime": "2002-12-12T11:24:46+00:00", "mtime_ts": 1039692286.0, "ctime": "2002-12-12T11:24:46+00:00", "sha256_file": "2648753fe1a600ceb2ae0b0057a13b069059507415dee9571b0921e4608b0ef5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3459", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:47", "EXIF DateTimeDigitized": "2002:12:12 12:24:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "351", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5719d6d56e9148fd98493c2da183bb3885b001d48e265775a4680f3663dc8cf9", "phash": "d5934944336ddc96", "dhash": "dcfcbc4ee4a6e6a6", "phash_int": -3.0570191647849933e+18, "collected_at": "2026-05-22T04:30:14.413898+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0020_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0020_IMG_2.JPG", "file_name": "100-0020_IMG_2.JPG", "file_stem": "100-0020_IMG_2", "file_ext": ".jpg", "file_size": 844389.0, "mtime": "2002-12-12T11:24:50+00:00", "mtime_ts": 1039692290.0, "ctime": "2002-12-12T11:24:50+00:00", "sha256_file": "7ffe29cae74c65385ebfbc73d30f622b397ef0efb5f553426dfcd1ff458a4e84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3767", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:51", "EXIF DateTimeDigitized": "2002:12:12 12:24:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7b0906423b7f3c0123034e57338c406068186576571fc97f19e9a4e4a6a65f0", "phash": "94a83f543a4c95af", "dhash": "3f97f6b59c94547c", "phash_int": -7.734862729020927e+18, "collected_at": "2026-05-22T04:30:14.494027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0021_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0021_IMG_2.JPG", "file_name": "100-0021_IMG_2.JPG", "file_stem": "100-0021_IMG_2", "file_ext": ".jpg", "file_size": 1064344.0, "mtime": "2002-12-12T11:24:54+00:00", "mtime_ts": 1039692294.0, "ctime": "2002-12-12T11:24:54+00:00", "sha256_file": "3e78b331b60ec06e5170ad0405783160a2f6b1a8bc3f5a2580970f178a143e6d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4446", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:55", "EXIF DateTimeDigitized": "2002:12:12 12:24:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3fb614c59f421eb401ef78197bc521b08e0ce0af3645060863ed5139526fca2", "phash": "c090e8f8fc57aa35", "dhash": "98ded0e48ec384e3", "phash_int": -4.5708974656979164e+18, "collected_at": "2026-05-22T04:30:14.528030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0022_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0022_IMG_2.JPG", "file_name": "100-0022_IMG_2.JPG", "file_stem": "100-0022_IMG_2", "file_ext": ".jpg", "file_size": 1212435.0, "mtime": "2002-12-12T11:24:58+00:00", "mtime_ts": 1039692298.0, "ctime": "2002-12-12T11:24:58+00:00", "sha256_file": "92eacba3e4566031dcee8175807356e5c22f9a7ee21dde51b905ed2661808878", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:24:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4959", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:24:59", "EXIF DateTimeDigitized": "2002:12:12 12:24:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58fb701bd4164e8d498269d22e74148da0cbe7641fd9d1faa7b8ac46a51eaec6", "phash": "98b89ccec6c295cb", "dhash": "3238189d71b09110", "phash_int": -7.442025972317908e+18, "collected_at": "2026-05-22T04:30:14.545030+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0023_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0023_IMG_2.JPG", "file_name": "100-0023_IMG_2.JPG", "file_stem": "100-0023_IMG_2", "file_ext": ".jpg", "file_size": 973739.0, "mtime": "2002-12-12T11:41:44+00:00", "mtime_ts": 1039693304.0, "ctime": "2002-12-12T11:41:44+00:00", "sha256_file": "47bb56b3a92207d5766fd1bc95a659ec310c5f818dfd58837ad539f603b28788", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:41:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4353", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:41:46", "EXIF DateTimeDigitized": "2002:12:12 12:41:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "822/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6576"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6765f86742ccb7b779cc00f26f105e6aa19dc29d76556c41ded6b2022d78831", "phash": "e6999cc7200e5ef8", "dhash": "c4c829c7cf6828ac", "phash_int": -1.8302593944991583e+18, "collected_at": "2026-05-22T04:30:14.589124+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0024_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0024_IMG_2.JPG", "file_name": "100-0024_IMG_2.JPG", "file_stem": "100-0024_IMG_2", "file_ext": ".jpg", "file_size": 904227.0, "mtime": "2002-12-12T11:41:54+00:00", "mtime_ts": 1039693314.0, "ctime": "2002-12-12T11:41:54+00:00", "sha256_file": "132bae7f731ab2e4948e5f17dffa747a3c90bfb6f6a935899572684081c5feec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:41:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4162", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:41:55", "EXIF DateTimeDigitized": "2002:12:12 12:41:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3806"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "207c6bf30796c630098ec7e87978a78ce7447749be3ef1355a41c0f165c2f36e", "phash": "e7829ca1611e1ee7", "dhash": "88c825c7cf0e0800", "phash_int": -1.7646758870427814e+18, "collected_at": "2026-05-22T04:30:14.592127+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0025_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0025_IMG_2.JPG", "file_name": "100-0025_IMG_2.JPG", "file_stem": "100-0025_IMG_2", "file_ext": ".jpg", "file_size": 1539319.0, "mtime": "2003-01-04T10:31:36+00:00", "mtime_ts": 1041676296.0, "ctime": "2003-01-04T10:31:36+00:00", "sha256_file": "250f48d930558861719da022d1e216c375ceb5c1829a69ca56667cdc73b2d58c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:48:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7981", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:12 12:48:40", "EXIF DateTimeDigitized": "2002:12:12 12:48:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3819d2054cfe045877aef22587949204a9b85124b266a0d30533527e1e04730f", "phash": "a7f259498c8969b6", "dhash": "da0c8cecc68adac4", "phash_int": -6.344910752586308e+18, "collected_at": "2026-05-22T04:30:14.655336+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0026_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0026_IMG_2.JPG", "file_name": "100-0026_IMG_2.JPG", "file_stem": "100-0026_IMG_2", "file_ext": ".jpg", "file_size": 864956.0, "mtime": "2002-12-12T11:48:46+00:00", "mtime_ts": 1039693726.0, "ctime": "2002-12-12T11:48:46+00:00", "sha256_file": "16a1c29ad25be17a5170f7c1ec25f6eef6f2465c699cd1e28a1c90b837909738", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:48:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4932", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:48:47", "EXIF DateTimeDigitized": "2002:12:12 12:48:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2071/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2071"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b626c779c74d172d8fd1b05f75f6605ec2bf6c0e59736f86bad66473afadbe32", "phash": "e6d9fde7829208b0", "dhash": "1002b0ec4ccccccc", "phash_int": -1.8121382042700326e+18, "collected_at": "2026-05-22T04:30:14.662920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0027_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0027_IMG_2.JPG", "file_name": "100-0027_IMG_2.JPG", "file_stem": "100-0027_IMG_2", "file_ext": ".jpg", "file_size": 573145.0, "mtime": "2002-12-12T11:48:56+00:00", "mtime_ts": 1039693736.0, "ctime": "2002-12-12T11:48:56+00:00", "sha256_file": "42bd395a83ab6b5d5912a4c9f368898d12c12536458f71e1029e268b238fee1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 12:48:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3845", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 12:48:58", "EXIF DateTimeDigitized": "2002:12:12 12:48:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "483/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "966"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16aea855b6396f8928a0cedab8bac6f3c78c4a88ebb5891b7bcef73e80f17ea5", "phash": "d0f08f2c70dac70f", "dhash": "303050988c3771f8", "phash_int": -3.391053098375264e+18, "collected_at": "2026-05-22T04:30:14.752427+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0028_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0028_IMG_2.JPG", "file_name": "100-0028_IMG_2.JPG", "file_stem": "100-0028_IMG_2", "file_ext": ".jpg", "file_size": 782362.0, "mtime": "2002-12-12T12:34:34+00:00", "mtime_ts": 1039696474.0, "ctime": "2002-12-12T12:34:34+00:00", "sha256_file": "d938ac4b7a650687cf64a1cc955b4cf576b1b998b4fb6a854657a0956568f4de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 13:34:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4975", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 13:34:35", "EXIF DateTimeDigitized": "2002:12:12 13:34:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[45, 221, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08682b487f46b10b102541dc1196826f28b1649a99b00d64cf4aec780a90fd95", "phash": "84e8d733c53a4eb1", "dhash": "fcb5b7a7d6ee5ef0", "phash_int": -8.869602848753955e+18, "collected_at": "2026-05-22T04:30:14.778523+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0029_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0029_IMG_2.JPG", "file_name": "100-0029_IMG_2.JPG", "file_stem": "100-0029_IMG_2", "file_ext": ".jpg", "file_size": 859812.0, "mtime": "2002-12-12T12:34:48+00:00", "mtime_ts": 1039696488.0, "ctime": "2002-12-12T12:34:48+00:00", "sha256_file": "c8358f967e5ea8dc98286846eb1676cc5ff3fbfa090f2f5ab8e6ca848c79decc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 13:34:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4375", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 13:34:49", "EXIF DateTimeDigitized": "2002:12:12 13:34:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5cff5598965fc98465e9c8c682fd90d719e3489af5ad1b09498bb263bf8b2d72", "phash": "82aace6d35d56e28", "dhash": "e9b9a98e97e3f8f8", "phash_int": -9.031179134288171e+18, "collected_at": "2026-05-22T04:30:14.789523+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0031_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0031_IMG_2.JPG", "file_name": "100-0031_IMG_2.JPG", "file_stem": "100-0031_IMG_2", "file_ext": ".jpg", "file_size": 659749.0, "mtime": "2002-12-12T12:35:02+00:00", "mtime_ts": 1039696502.0, "ctime": "2002-12-12T12:35:02+00:00", "sha256_file": "34a460b346cd7603942f6cb6e00db37c025a629475cd1ff9be20db7cec2f2209", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 13:35:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4861", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 13:35:03", "EXIF DateTimeDigitized": "2002:12:12 13:35:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "144", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5355b0c69c6935dd4a37fe66706995fb42406cc1b03987392c5ec173a8608e4", "phash": "f87c6c9831c9ee30", "dhash": "0603030a98311204", "phash_int": -5.4143845426515603e+17, "collected_at": "2026-05-22T04:30:14.821688+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0030_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0030_IMG_2.JPG", "file_name": "100-0030_IMG_2.JPG", "file_stem": "100-0030_IMG_2", "file_ext": ".jpg", "file_size": 738137.0, "mtime": "2002-12-12T12:34:56+00:00", "mtime_ts": 1039696496.0, "ctime": "2002-12-12T12:34:56+00:00", "sha256_file": "ea1bb5da7e0f635ce84879b1bd3ebaf14ddfefcc1894632359f56901ce352c42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 13:34:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4665", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 13:34:57", "EXIF DateTimeDigitized": "2002:12:12 13:34:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "81", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4afcc59be9008b5a4ebbdaf4650eb03818a9a860102ce44dd181dd1af11eb16f", "phash": "fd9f7ec208b9c600", "dhash": "7a3e1e12e3ce1312", "phash_int": -1.7127888898164173e+17, "collected_at": "2026-05-22T04:30:14.826762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0032_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0032_IMG_2.JPG", "file_name": "100-0032_IMG_2.JPG", "file_stem": "100-0032_IMG_2", "file_ext": ".jpg", "file_size": 954577.0, "mtime": "2002-12-12T14:44:50+00:00", "mtime_ts": 1039704290.0, "ctime": "2002-12-12T14:44:50+00:00", "sha256_file": "b54d5f5cf22039b289a030ca891e653b7cbf946c6eb72f0301f216e429e2210d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 15:44:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3172", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 15:44:51", "EXIF DateTimeDigitized": "2002:12:12 15:44:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e56fab8977a87e102ab5caabf8a1bd8cea0dcb625ccc22d8a84c87fe643af599", "phash": "9d8d60191fbfe4c0", "dhash": "f2f0e47978fcfcfe", "phash_int": -7.093908177015545e+18, "collected_at": "2026-05-22T04:30:14.862754+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0033_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0033_IMG_2.JPG", "file_name": "100-0033_IMG_2.JPG", "file_stem": "100-0033_IMG_2", "file_ext": ".jpg", "file_size": 909483.0, "mtime": "2002-12-12T14:44:56+00:00", "mtime_ts": 1039704296.0, "ctime": "2002-12-12T14:44:56+00:00", "sha256_file": "aa88747c475d8d13227b9259748eeeee28d734e13ad76256891e32f4520c21fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:12 15:44:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3203", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:12 15:44:57", "EXIF DateTimeDigitized": "2002:12:12 15:44:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ca73ef91c09949e8f582310dc68b9d87076b2e440f62d2d302f81abdd954230", "phash": "80802f2f5157edaf", "dhash": "fcfffefcf8fcfcfe", "phash_int": -9.187291359561127e+18, "collected_at": "2026-05-22T04:30:14.875938+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 681052.0, "mtime": "2002-12-13T13:50:38+00:00", "mtime_ts": 1039787438.0, "ctime": "2002-12-13T13:50:38+00:00", "sha256_file": "0016065f0fd8ec8c86b5489a1155fb3924b1351104495ca2498d0f2ae3f2098b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:50:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5676", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:50:39", "EXIF DateTimeDigitized": "2002:12:13 14:50:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[38, 229, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3cba4c195c93bbf4bb8e92d36827e5af7684dbd87e77e636da1ed95d178ea032", "phash": "81cc1ee2799de619", "dhash": "e3e3f65b9bccfc5b", "phash_int": -9.09385958951604e+18, "collected_at": "2026-05-22T04:30:14.917941+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 800793.0, "mtime": "2002-12-13T13:50:46+00:00", "mtime_ts": 1039787446.0, "ctime": "2002-12-13T13:50:46+00:00", "sha256_file": "d3ca261417817022fec64c21980983f85d26a7b97354633afcc10a42887340e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:50:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5175", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:50:48", "EXIF DateTimeDigitized": "2002:12:13 14:50:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36964322d965bce002f57714cc8d1a2b12c00f513aadf116c7aed57f76641a4f", "phash": "8e6a95c733c21c67", "dhash": "cbc323cdcd65ecfa", "phash_int": -8.184564689993065e+18, "collected_at": "2026-05-22T04:30:14.924940+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 728519.0, "mtime": "2002-12-13T13:50:56+00:00", "mtime_ts": 1039787456.0, "ctime": "2002-12-13T13:50:56+00:00", "sha256_file": "78b953bcac623427b06496aaa066406876ed81cfbe95b218b8d4ed2951128ccd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:50:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4532", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:50:57", "EXIF DateTimeDigitized": "2002:12:13 14:50:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b259f479fbb7491ebaf354710e7c121a634b762438ba64471002d56352735bb3", "phash": "e2cab54f68366895", "dhash": "c1c3898de3e72e8e", "phash_int": -2.1046705231868454e+18, "collected_at": "2026-05-22T04:30:14.990944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 605382.0, "mtime": "2002-12-13T13:51:26+00:00", "mtime_ts": 1039787486.0, "ctime": "2002-12-13T13:51:26+00:00", "sha256_file": "7648bc32265218d855ae08c1e6306db226e928d353a5b482f205f06d27a42117", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:51:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5243", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:51:27", "EXIF DateTimeDigitized": "2002:12:13 14:51:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "647be693221ebf377eda4dff8c7051874bceafd613b42d64e71788298466081f", "phash": "df8d6113666236e4", "dhash": "3333332175594104", "phash_int": -2.338105895585434e+18, "collected_at": "2026-05-22T04:30:14.993944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 793469.0, "mtime": "2002-12-13T13:51:42+00:00", "mtime_ts": 1039787502.0, "ctime": "2002-12-13T13:51:42+00:00", "sha256_file": "6a0e29a902178276dd940f453709420fe19e08a0e417f0f856a2f9803cca38b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:51:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5817", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:51:44", "EXIF DateTimeDigitized": "2002:12:13 14:51:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[111, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "154", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6dcc921cab8b5ec8f75fcc630d92d6f18adbef70b96c46722449c62d58d2974e", "phash": "c68ee457316c4fd0", "dhash": "e4676363d863879c", "phash_int": -4.1391199443644375e+18, "collected_at": "2026-05-22T04:30:15.045160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 808914.0, "mtime": "2002-12-13T13:51:30+00:00", "mtime_ts": 1039787490.0, "ctime": "2002-12-13T13:51:30+00:00", "sha256_file": "e23c275d9df53fcecf7424570913b7980c58ea82294eddec52c7d150acfb016e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:51:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5332", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:51:32", "EXIF DateTimeDigitized": "2002:12:13 14:51:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[65, 200, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "207bd8557434f2e9ccb154126cf21f2a8b3892f65915edca73fad8bbdb27c4f6", "phash": "f9b97f4c17060b12", "dhash": "1a1b9b9a98b3e758", "phash_int": -4.5219032279351014e+17, "collected_at": "2026-05-22T04:30:15.049265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 632024.0, "mtime": "2002-12-13T13:51:48+00:00", "mtime_ts": 1039787508.0, "ctime": "2002-12-13T13:51:48+00:00", "sha256_file": "719f3262ad3e3585a05064d9fa3ece8dc506c2a8973f1027c86b70ee12f12b1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:51:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5196", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:51:49", "EXIF DateTimeDigitized": "2002:12:13 14:51:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "457e91395e5fbadc6131149f8565e56437dbb50a99601d9621d81c275351d0b2", "phash": "f0fb591e66047e22", "dhash": "181a9e0e0c349480", "phash_int": -1.082173298357011e+18, "collected_at": "2026-05-22T04:30:15.088385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 764830.0, "mtime": "2002-12-13T13:51:54+00:00", "mtime_ts": 1039787514.0, "ctime": "2002-12-13T13:51:54+00:00", "sha256_file": "b707862938306b5a714676d20b43833ef7309e6958b7932cda72f1b404a5a6ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:51:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5348", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:51:55", "EXIF DateTimeDigitized": "2002:12:13 14:51:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93ff3fad93aefc9a69b99cf76a63cd6cfe3f5535ace5fd761cacf4ecf85482fb", "phash": "d6f1143947b1ce23", "dhash": "40c0c8cacb31bce4", "phash_int": -2.958561243957179e+18, "collected_at": "2026-05-22T04:30:15.095383+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 744927.0, "mtime": "2002-12-13T13:52:04+00:00", "mtime_ts": 1039787524.0, "ctime": "2002-12-13T13:52:04+00:00", "sha256_file": "1fe6fd0d597b3d12ec814bfae33add057a5e62bb9e323dbe1e7b133c22cea1d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:52:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5084", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:52:05", "EXIF DateTimeDigitized": "2002:12:13 14:52:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e547d9ed2dae95b523dbf07114e4b4549e3f03dc3ef10a52b7ecda48a6d7a2f7", "phash": "cbfa403522ce39e6", "dhash": "c1c9d9511f72f0d2", "phash_int": -3.7486131428711316e+18, "collected_at": "2026-05-22T04:30:15.130386+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 738142.0, "mtime": "2002-12-13T13:52:14+00:00", "mtime_ts": 1039787534.0, "ctime": "2002-12-13T13:52:14+00:00", "sha256_file": "a5db929dc7b40a21d427bb92fc836b039dcd29f8e5488d18543a28c46993cfd1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 14:52:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4812", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 14:52:15", "EXIF DateTimeDigitized": "2002:12:13 14:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 184, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5116b8e05799dae3fb1f0b85405cd0a404ef5db2fdc4bb7a6c87c8ccccd79434", "phash": "959519bb66c4d14e", "dhash": "3838fccc441ce6d2", "phash_int": -7.668194497854648e+18, "collected_at": "2026-05-22T04:30:15.146456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 902120.0, "mtime": "2002-12-13T14:05:30+00:00", "mtime_ts": 1039788330.0, "ctime": "2002-12-13T14:05:30+00:00", "sha256_file": "a2a117ad868944f388427b486a88ad4c0105ffd68d1cb26d6cf5bd5986785ef0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:05:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4339", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:05:31", "EXIF DateTimeDigitized": "2002:12:13 15:05:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4461e18e80fea24d74b36f75340c0d271a7386d2911627193e69a7ec0d6d08b1", "phash": "c7f61b1bcf043870", "dhash": "48480c666218d468", "phash_int": -4.038010209639844e+18, "collected_at": "2026-05-22T04:30:15.174335+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 730666.0, "mtime": "2002-12-13T14:37:22+00:00", "mtime_ts": 1039790242.0, "ctime": "2002-12-13T14:37:22+00:00", "sha256_file": "aba1f99759296607302775bfae6c6e6208c022731c638879763e7ad854f7c1f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:37:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3778", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:37:23", "EXIF DateTimeDigitized": "2002:12:13 15:37:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1751/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1751"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4a8fcb810c0d31f92fd1eda6ed642ea4298475ea4bac224c5fb85625d537a28", "phash": "a1d256517f51dc26", "dhash": "edecd6929ad2d626", "phash_int": -6.786266780465505e+18, "collected_at": "2026-05-22T04:30:15.249675+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 797042.0, "mtime": "2002-12-13T14:42:34+00:00", "mtime_ts": 1039790554.0, "ctime": "2002-12-13T14:42:34+00:00", "sha256_file": "995f3e5579d96933713bdfd6289451631bb49cfb41e3d3d3bc39b2f39cffb034", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:42:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4815", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:42:35", "EXIF DateTimeDigitized": "2002:12:13 15:42:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "27954e6a67764776ef6dea5a84ab62c11f9049e80da40555c85a17c46d04afa5", "phash": "f285354a86f31ed1", "dhash": "cececccce529991d", "phash_int": -9.713115504205417e+17, "collected_at": "2026-05-22T04:30:15.257677+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 751874.0, "mtime": "2002-12-13T14:48:00+00:00", "mtime_ts": 1039790880.0, "ctime": "2002-12-13T14:48:00+00:00", "sha256_file": "f42f9af1e5c7244c2afa4bdfe5592c0ec39f59b7d88ee2d6c31b0b4ef29d2348", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:48:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4651", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:48:02", "EXIF DateTimeDigitized": "2002:12:13 15:48:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5190a7bc0b6d1c7c30e24eae85f0353631fe01e646e99be3a820c39272dcb8a2", "phash": "a6c7710eb05332f5", "dhash": "cececeece4ed2c9c", "phash_int": -6.42904563514637e+18, "collected_at": "2026-05-22T04:30:15.295678+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 846526.0, "mtime": "2002-12-13T14:48:08+00:00", "mtime_ts": 1039790888.0, "ctime": "2002-12-13T14:48:08+00:00", "sha256_file": "4ed6aa788c720b6c602bede0af9ed2e07b2b6c96ee0539c85564788dde55b76c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:48:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5263", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:48:10", "EXIF DateTimeDigitized": "2002:12:13 15:48:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8dce6a6aab8259007abdefaf0275665a18affa8e5cefea7f8a1fc09d530e2e8", "phash": "854cd63781bd5f90", "dhash": "e6e430e6c34b1cdc", "phash_int": -8.841456434546909e+18, "collected_at": "2026-05-22T04:30:15.330035+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 776579.0, "mtime": "2002-12-13T14:49:42+00:00", "mtime_ts": 1039790982.0, "ctime": "2002-12-13T14:49:42+00:00", "sha256_file": "162dc857d246a43f262e34321cd58c04ecc7c7e19953d030fae62efd7ec488c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:49:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4674", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:49:43", "EXIF DateTimeDigitized": "2002:12:13 15:49:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "34d145cea399e1e1d38d767c09863d0ee07215a7751a0fb2daff59ae872932f9", "phash": "b14b76b5410fdca4", "dhash": "78d870f196161796", "phash_int": -5.671308784890291e+18, "collected_at": "2026-05-22T04:30:15.369159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 663394.0, "mtime": "2002-12-13T14:51:20+00:00", "mtime_ts": 1039791080.0, "ctime": "2002-12-13T14:51:20+00:00", "sha256_file": "98167d0ec74d66ba90c23a3a4baf869e15eae9d5d8a4ead23e1a06ca39191127", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:51:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4867", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:51:21", "EXIF DateTimeDigitized": "2002:12:13 15:51:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c68096bd46058de2fdc994d42913bfc5878176faf1fe2f681b8a5f491404dd85", "phash": "926d3d36d1b9c845", "dhash": "254dd3d8dd2d3838", "phash_int": -7.89558726605447e+18, "collected_at": "2026-05-22T04:30:15.408600+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 861193.0, "mtime": "2002-12-13T20:53:38+00:00", "mtime_ts": 1039812818.0, "ctime": "2002-12-13T20:53:38+00:00", "sha256_file": "429a81114ecfb62c5dea8ee57a4d0ac849e52db5980c1c580dfdcb27848c81e8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:53:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:53:40", "EXIF DateTimeDigitized": "2002:12:13 21:53:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28dc517653833c08833db9b36442b350e2e1a9c6b0f2a5249ce89f5e9473dc52", "phash": "857a897ce3c54bb0", "dhash": "f8f44bea2e2cf6d2", "phash_int": -8.828592950016128e+18, "collected_at": "2026-05-22T04:30:15.454674+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 702840.0, "mtime": "2002-12-13T14:51:32+00:00", "mtime_ts": 1039791092.0, "ctime": "2002-12-13T14:51:32+00:00", "sha256_file": "f9bf56a35ab61886852d9a5006b8cc84bfaec2729f786c398e6f00827c6ffa8d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 15:51:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4650", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 15:51:33", "EXIF DateTimeDigitized": "2002:12:13 15:51:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2211/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "86", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2211"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa349e3548e46601eeff346ad85f558973875c5b8da9149d2612cf66585f04b4", "phash": "c07ad5e07a91ec47", "dhash": "a9a571998d85d8f4", "phash_int": -4.577110911162914e+18, "collected_at": "2026-05-22T04:30:15.456676+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 840703.0, "mtime": "2002-12-13T20:54:46+00:00", "mtime_ts": 1039812886.0, "ctime": "2002-12-13T20:54:46+00:00", "sha256_file": "b979cd8375f594b6c72067f5fa7eb17b719470f39d882f1a5dd1929a997b3017", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:54:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5085", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:54:47", "EXIF DateTimeDigitized": "2002:12:13 21:54:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51e86bba021f36cc78cb6fa020e20d267ca21ce19e8f07cc2f60dfa960e2fa6c", "phash": "d56a1fad78e38015", "dhash": "2868da99b4f670b8", "phash_int": -3.068605366181593e+18, "collected_at": "2026-05-22T04:30:15.509920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 813885.0, "mtime": "2002-12-13T20:55:10+00:00", "mtime_ts": 1039812910.0, "ctime": "2002-12-13T20:55:10+00:00", "sha256_file": "b69830108abbab3845843ceceb4f8bc4e7031430cf515e3620e8ea166a885f5f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:55:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4860", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:55:11", "EXIF DateTimeDigitized": "2002:12:13 21:55:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a38158376eab87eeabec6e7ac8f49745eed4103c8403fc79fec474dba39c310a", "phash": "906f9bf827439ca1", "dhash": "aba9c4ecaeb4b4fc", "phash_int": -8.039035319720109e+18, "collected_at": "2026-05-22T04:30:15.512918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 817700.0, "mtime": "2002-12-13T20:55:18+00:00", "mtime_ts": 1039812918.0, "ctime": "2002-12-13T20:55:18+00:00", "sha256_file": "5ef8ca36efa30fb790ef003c1b8c1057631a31348e8d92b171ea573e1894dc3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:55:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4432", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:55:19", "EXIF DateTimeDigitized": "2002:12:13 21:55:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa7aa493e5a6cbeed57940c01fe0bbd949ed1dc4787696b2e701a1357766983f", "phash": "d12ee6ba11e0cb17", "dhash": "21636292ba998cb0", "phash_int": -3.3735053840156723e+18, "collected_at": "2026-05-22T04:30:15.578921+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 1016347.0, "mtime": "2002-12-13T20:55:42+00:00", "mtime_ts": 1039812942.0, "ctime": "2002-12-13T20:55:42+00:00", "sha256_file": "e32a59107048d9522b1dba53f008394612c8ae0a07c5fac93794adeeb8acbc46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:55:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5168", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:55:44", "EXIF DateTimeDigitized": "2002:12:13 21:55:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "280e42b6e5386a0c081d0e363864ef1f2595f95fcae6c630bfd40eaca42d088f", "phash": "d138d5e5b9574238", "dhash": "1a8a949493c0ccb0", "phash_int": -3.3707091384530857e+18, "collected_at": "2026-05-22T04:30:15.583921+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 981984.0, "mtime": "2002-12-13T20:55:58+00:00", "mtime_ts": 1039812958.0, "ctime": "2002-12-13T20:55:58+00:00", "sha256_file": "ccf317b0a57472e6cbffa9c2ed5373b36824fc3151e66438b37e3a8943714ee0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:55:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4861", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:55:59", "EXIF DateTimeDigitized": "2002:12:13 21:55:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "337c17d515535f8c00f3580496ef0a8093aa9ba8b27a874ee2755f564f3d3485", "phash": "9332aed50bb64d1a", "dhash": "0a28a9ddd850aca9", "phash_int": -7.840011771250849e+18, "collected_at": "2026-05-22T04:30:15.627099+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 860424.0, "mtime": "2002-12-13T20:56:08+00:00", "mtime_ts": 1039812968.0, "ctime": "2002-12-13T20:56:08+00:00", "sha256_file": "213baf345e16517894065e0389342dd28409a09b2fb33dee4a12c6fb43e817fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:56:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4958", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:56:09", "EXIF DateTimeDigitized": "2002:12:13 21:56:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b974fed691f2831802cb89b8c8fd6dc20f7d4910e296d2452a0579b9357d158", "phash": "986f918ef19c4ba4", "dhash": "e8997bb2ec79b598", "phash_int": -7.462586014404687e+18, "collected_at": "2026-05-22T04:30:15.633243+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 901247.0, "mtime": "2002-12-13T20:56:24+00:00", "mtime_ts": 1039812984.0, "ctime": "2002-12-13T20:56:24+00:00", "sha256_file": "dbd51db7b0c45e59fd1840f99e6103d99430c45289689effa3a1261d8ea5ce4a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:56:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5119", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:56:25", "EXIF DateTimeDigitized": "2002:12:13 21:56:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65480", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17163a0e43223f4aa74cf70091ea7deaa9ee8502ae54d3c05aa6e7758951bfbf", "phash": "924cef31c42b7c93", "dhash": "e028cda1989889c3", "phash_int": -7.904680248918443e+18, "collected_at": "2026-05-22T04:30:15.703467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 809168.0, "mtime": "2002-12-13T20:56:46+00:00", "mtime_ts": 1039813006.0, "ctime": "2002-12-13T20:56:46+00:00", "sha256_file": "537b2fffb6dcf77349e4284d570d5c1534b8b77561f60c845eb8f26af672fbc1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:56:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4741", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:56:47", "EXIF DateTimeDigitized": "2002:12:13 21:56:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "246b633a5b92e5a90e656eec94c64f4d74811772bef1855d947f70d097f092f3", "phash": "d8267983dc4996ad", "dhash": "8c7cccb074d8d830", "phash_int": -2.871474105158626e+18, "collected_at": "2026-05-22T04:30:15.712535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 839317.0, "mtime": "2002-12-13T20:57:00+00:00", "mtime_ts": 1039813020.0, "ctime": "2002-12-13T20:57:00+00:00", "sha256_file": "2b7f7bd300e78bc0021b0880c27f26d5fc4544aa4d80152a0891f6c645df101a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:57:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4638", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:57:02", "EXIF DateTimeDigitized": "2002:12:13 21:57:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d681e80f92c695f172b3bf36c5cf4cc964c73ee1bbc260bc3683ca6750efa18", "phash": "cc3960a51b6a6dda", "dhash": "323c347868e6e5e1", "phash_int": -3.730844554053915e+18, "collected_at": "2026-05-22T04:30:15.797761+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 894356.0, "mtime": "2002-12-13T20:57:10+00:00", "mtime_ts": 1039813030.0, "ctime": "2002-12-13T20:57:10+00:00", "sha256_file": "61a8d56758d22440ce8cce9d94a0975e32fd2c9207e62f3e0324c8725ca4c90a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:13 21:57:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4761", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:13 21:57:12", "EXIF DateTimeDigitized": "2002:12:13 21:57:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "790774317c1e3d92f78ccb68c7e6f59470d90433ba72f5b5ee037c4df49e1359", "phash": "d866b14fb24c3758", "dhash": "8a8a94b0b050b29e", "phash_int": -2.8533983580407583e+18, "collected_at": "2026-05-22T04:30:15.824763+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 824383.0, "mtime": "2002-12-14T08:32:18+00:00", "mtime_ts": 1039854738.0, "ctime": "2002-12-14T08:32:18+00:00", "sha256_file": "51632b8c57eda1dbdfeaa0dc22dcb6f99e9d77628a9860fa122b507d8dc9d899", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 09:32:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5528", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 09:32:19", "EXIF DateTimeDigitized": "2002:12:14 09:32:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7c675e7796adf877799cd0a03b5a0cd0bc5ad9006c396ef4e4b304d00a7a77f2", "phash": "bf58822dd33ca31a", "dhash": "200111105353664c", "phash_int": -4.658830681185672e+18, "collected_at": "2026-05-22T04:30:15.843762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 889832.0, "mtime": "2002-12-14T08:32:24+00:00", "mtime_ts": 1039854744.0, "ctime": "2002-12-14T08:32:24+00:00", "sha256_file": "ec652c3e1880199eef65d3e33ce4c9e7cc953d2a8adf823efdd96820eea62898", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 09:32:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6515", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 09:32:26", "EXIF DateTimeDigitized": "2002:12:14 09:32:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7c4f27fe9a7d4fdd4013d421f061bf870e32303624168c65a700acc8b7a11612", "phash": "c56c331e93cf4493", "dhash": "40939752586648d8", "phash_int": -4.220942544331128e+18, "collected_at": "2026-05-22T04:30:15.941668+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 871756.0, "mtime": "2002-12-14T08:32:28+00:00", "mtime_ts": 1039854748.0, "ctime": "2002-12-14T08:32:28+00:00", "sha256_file": "1575c68c51f855b05e608f0aa82de964c1da21186f7995afcd54ec1704c8b6a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 09:32:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6304", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 09:32:30", "EXIF DateTimeDigitized": "2002:12:14 09:32:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d1235d9290478f142d47290725fa8a5d91eb3e0ebd4dab0d417e62dd4d156ad", "phash": "c16c331ed19f609b", "dhash": "c0b39756746558d8", "phash_int": -4.5091729194457907e+18, "collected_at": "2026-05-22T04:30:15.949669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 744823.0, "mtime": "2002-12-14T08:32:36+00:00", "mtime_ts": 1039854756.0, "ctime": "2002-12-14T08:32:36+00:00", "sha256_file": "b14ea5fc25a044c38ba96dd0525efb2ec215da8b16ab1c3dce26cfa2348811ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 09:32:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5885", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 09:32:37", "EXIF DateTimeDigitized": "2002:12:14 09:32:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3cfb41979fda2f3fc91f84b6637b93faab8fb8444622990b92c84b1f41b747c", "phash": "f7c11664321b2f87", "dhash": "c4c2622a06161c1c", "phash_int": -5.941690562430117e+17, "collected_at": "2026-05-22T04:30:15.986669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 898565.0, "mtime": "2002-12-14T15:50:16+00:00", "mtime_ts": 1039881016.0, "ctime": "2002-12-14T15:50:16+00:00", "sha256_file": "5b8609fd12dbd48b3ef23cdd7e4915d4604c70789f95fa0bd84cbd3311ab1fa1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3841", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:17", "EXIF DateTimeDigitized": "2002:12:14 16:50:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2d40fb61d3cdb44267eb9a899cae06ff335e4ad9d6bf66b896f4fd4b1475ac8", "phash": "c2ab998a6d6fc485", "dhash": "c1d9e480e4e0c8c0", "phash_int": -4.419269789513432e+18, "collected_at": "2026-05-22T04:30:16.044032+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 856358.0, "mtime": "2002-12-14T15:50:22+00:00", "mtime_ts": 1039881022.0, "ctime": "2002-12-14T15:50:22+00:00", "sha256_file": "1470620f2a8167faff45017c38511c0d97f70731daf6a80f32424fa7bae30f63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3923", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:23", "EXIF DateTimeDigitized": "2002:12:14 16:50:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "294", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61433f6a21feda23f26aefd2d54d8478c14a511da5490b395784f0fd274c9e0c", "phash": "f5c70aa64747a1aa", "dhash": "ec1c8e001e8e3c9c", "phash_int": -7.366083047750611e+17, "collected_at": "2026-05-22T04:30:16.062743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 737958.0, "mtime": "2002-12-14T15:50:26+00:00", "mtime_ts": 1039881026.0, "ctime": "2002-12-14T15:50:26+00:00", "sha256_file": "456cdfcbe69d72f6fa4e2ff10b822e3cc2e9a35a42db66e9b6cee1c659b0f831", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3436", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:27", "EXIF DateTimeDigitized": "2002:12:14 16:50:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "278fc500a68d80376c8f10a94c05c47fc26aacf6604a0281d3c418ac5696b9a1", "phash": "d0d42e2c652396fb", "dhash": "e4b0b8d090f0f9c8", "phash_int": -3.399041050547612e+18, "collected_at": "2026-05-22T04:30:16.088743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 700492.0, "mtime": "2002-12-14T15:50:30+00:00", "mtime_ts": 1039881030.0, "ctime": "2002-12-14T15:50:30+00:00", "sha256_file": "2592b59c989c3e70ec4382f32b447a16b4e8245995e2d094ace9fcaaf8275c15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3291", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:31", "EXIF DateTimeDigitized": "2002:12:14 16:50:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c741b793e6c89cbd206bd5912e67d4b6535c664e4ef7bb48cc5c503ee025842c", "phash": "9487603f177f0f84", "dhash": "64dcec7e7c3fba94", "phash_int": -7.744115210146869e+18, "collected_at": "2026-05-22T04:30:16.152817+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0077_IMG.JPG", "file_name": "100-0077_IMG.JPG", "file_stem": "100-0077_IMG", "file_ext": ".jpg", "file_size": 818205.0, "mtime": "2002-12-14T15:50:44+00:00", "mtime_ts": 1039881044.0, "ctime": "2002-12-14T15:50:44+00:00", "sha256_file": "08d19720b07e30e12de1de680fc2b72f9d4775a2f2f9a36e40f4d511f49db009", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4713", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:45", "EXIF DateTimeDigitized": "2002:12:14 16:50:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae7baa2604b0aaaeabd524b14d0587633c4aa24b1e770042adae724faa72a43a", "phash": "e99ca2dbd6a5241a", "dhash": "02938262685adb8b", "phash_int": -1.6132355014227958e+18, "collected_at": "2026-05-22T04:30:16.160815+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0078_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0078_IMG.JPG", "file_name": "100-0078_IMG.JPG", "file_stem": "100-0078_IMG", "file_ext": ".jpg", "file_size": 883227.0, "mtime": "2002-12-14T15:50:52+00:00", "mtime_ts": 1039881052.0, "ctime": "2002-12-14T15:50:52+00:00", "sha256_file": "50cbe50fbd5f7d02a1d616f2e1631c1e97372bfd1eafe3e09582ca5e72ef750f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3718", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:53", "EXIF DateTimeDigitized": "2002:12:14 16:50:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3cbacdbdcbfd2c6cf62379a0ce0f3cebd9c76ab9d97bd1bca2e9061e269b37e", "phash": "b4c6cf643719057c", "dhash": "64249c1c8e9f3d7e", "phash_int": -5.420417072165748e+18, "collected_at": "2026-05-22T04:30:16.239027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0079_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0079_IMG.JPG", "file_name": "100-0079_IMG.JPG", "file_stem": "100-0079_IMG", "file_ext": ".jpg", "file_size": 776970.0, "mtime": "2002-12-14T15:50:58+00:00", "mtime_ts": 1039881058.0, "ctime": "2002-12-14T15:50:58+00:00", "sha256_file": "97973c6736a4f3629748de817614d435108480f28387ca9bdb375e1c9b1f2049", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:50:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4561", "EXIF ExposureTime": "1/80", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:50:59", "EXIF DateTimeDigitized": "2002:12:14 16:50:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3199/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "207", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3199"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6cb291f0366949c72e83813ae9c973129e9434dc021a098ee1fec123adf2517", "phash": "add79669e17c801c", "dhash": "226b271717072f0f", "phash_int": -5.920097803656462e+18, "collected_at": "2026-05-22T04:30:16.245102+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0080_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0080_IMG.JPG", "file_name": "100-0080_IMG.JPG", "file_stem": "100-0080_IMG", "file_ext": ".jpg", "file_size": 838777.0, "mtime": "2002-12-14T15:51:36+00:00", "mtime_ts": 1039881096.0, "ctime": "2002-12-14T15:51:36+00:00", "sha256_file": "1455c1c8001766adbce0083bbd27629a9a8907b99f3385e38bc706f6d1b1c753", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:51:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3376", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:51:38", "EXIF DateTimeDigitized": "2002:12:14 16:51:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1016/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000080", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8128"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e89d3ac0434e7fca5314b5d94e65222f92c5dbed8ef455be1ff65c970b309f5", "phash": "d691ec8de6467231", "dhash": "e0f8fce0f8786005", "phash_int": -2.985344983772008e+18, "collected_at": "2026-05-22T04:30:16.314251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0081_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0081_IMG.JPG", "file_name": "100-0081_IMG.JPG", "file_stem": "100-0081_IMG", "file_ext": ".jpg", "file_size": 848072.0, "mtime": "2002-12-14T15:51:54+00:00", "mtime_ts": 1039881114.0, "ctime": "2002-12-14T15:51:54+00:00", "sha256_file": "12e441816e0b03ed681b65900f8630ebb6987ffae73a38b5d97331b2960d69e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:51:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4869", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:51:55", "EXIF DateTimeDigitized": "2002:12:14 16:51:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d3f455f489f5b15bcd64b1bb7dca49b12152e04391a2d8b623b6029f2a71fec7", "phash": "f4cb8aa4247b18db", "dhash": "9111190806262484", "phash_int": -8.073992705915553e+17, "collected_at": "2026-05-22T04:30:16.331256+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0082_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0082_IMG.JPG", "file_name": "100-0082_IMG.JPG", "file_stem": "100-0082_IMG", "file_ext": ".jpg", "file_size": 734155.0, "mtime": "2002-12-14T15:52:42+00:00", "mtime_ts": 1039881162.0, "ctime": "2002-12-14T15:52:42+00:00", "sha256_file": "d88994ba6f09ba2312ea187dc6a35565513504e7be336c579fb3eb0bd38d12f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:52:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4807", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:52:44", "EXIF DateTimeDigitized": "2002:12:14 16:52:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 154, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8b64323a180db14e13f070e17e5ce9d3753393baec7bef4150d4ecc39118257", "phash": "fa450cb06fba152e", "dhash": "d2c56849498c3d71", "phash_int": -4.1290983890628883e+17, "collected_at": "2026-05-22T04:30:16.370410+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0083_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0083_IMG.JPG", "file_name": "100-0083_IMG.JPG", "file_stem": "100-0083_IMG", "file_ext": ".jpg", "file_size": 852479.0, "mtime": "2002-12-14T15:52:50+00:00", "mtime_ts": 1039881170.0, "ctime": "2002-12-14T15:52:50+00:00", "sha256_file": "5b936883784a2c45549cb31f3204cc81c902bd5c02ab0d776b81a2b6f610410c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:52:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6531", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:52:51", "EXIF DateTimeDigitized": "2002:12:14 16:52:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6188cdc744b20a9a6e14cc0d59fe11a0339940265655c7bf24c4bd85e1bff892", "phash": "c33708f0effb100e", "dhash": "c6c76849099cd1d3", "phash_int": -4.3800222816831365e+18, "collected_at": "2026-05-22T04:30:16.445687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0084_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0084_IMG.JPG", "file_name": "100-0084_IMG.JPG", "file_stem": "100-0084_IMG", "file_ext": ".jpg", "file_size": 841303.0, "mtime": "2002-12-14T15:52:52+00:00", "mtime_ts": 1039881172.0, "ctime": "2002-12-14T15:52:52+00:00", "sha256_file": "4a97822b0ea1c888398bbdcc8e0747015ae24d491c95ad2ebcb73e1f12b9efe1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:52:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6426", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:52:54", "EXIF DateTimeDigitized": "2002:12:14 16:52:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14c7f381f8e99ea1927c3195da35b20905108925abd969aaa58b53c542cffa8c", "phash": "c3b708f0eff9102c", "dhash": "c6c768494c9dd1d3", "phash_int": -4.3439934846643036e+18, "collected_at": "2026-05-22T04:30:16.454684+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0085_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0085_IMG.JPG", "file_name": "100-0085_IMG.JPG", "file_stem": "100-0085_IMG", "file_ext": ".jpg", "file_size": 855118.0, "mtime": "2002-12-14T15:52:58+00:00", "mtime_ts": 1039881178.0, "ctime": "2002-12-14T15:52:58+00:00", "sha256_file": "728d52eb3ccb47edabdb9ec46d79aa1955982139b573003cfc5d357a8d121ce8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:52:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6533", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:52:59", "EXIF DateTimeDigitized": "2002:12:14 16:52:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bae9009d82c5eead4f79b0cc7f5d5b729be19cf0831287aa321c121e5d8359fb", "phash": "e2bf08f0cfeb100e", "dhash": "c6c768410d9cc1c3", "phash_int": -2.1079562702126408e+18, "collected_at": "2026-05-22T04:30:16.547939+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0086_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0086_IMG.JPG", "file_name": "100-0086_IMG.JPG", "file_stem": "100-0086_IMG", "file_ext": ".jpg", "file_size": 823184.0, "mtime": "2002-12-14T15:53:02+00:00", "mtime_ts": 1039881182.0, "ctime": "2002-12-14T15:53:02+00:00", "sha256_file": "8421ba8b0f337e4df82d0d1028b51ec688fdb25589f46e16c9ea8f0afc2e5452", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:53:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6465", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:53:04", "EXIF DateTimeDigitized": "2002:12:14 16:53:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db9ca55d41335d9cee2ad1d438a1eb55a9fd08ebe8dc60ee009a9d96ca02cd27", "phash": "eeb10cf0c9fc106e", "dhash": "c6c7694b491c21e3", "phash_int": -1.2472013934844928e+18, "collected_at": "2026-05-22T04:30:16.570231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0087_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0087_IMG.JPG", "file_name": "100-0087_IMG.JPG", "file_stem": "100-0087_IMG", "file_ext": ".jpg", "file_size": 794946.0, "mtime": "2002-12-14T15:53:10+00:00", "mtime_ts": 1039881190.0, "ctime": "2002-12-14T15:53:10+00:00", "sha256_file": "57f00668dfc996732e1832a74b14499c5ee9fcadd7b47e5322e382cec3066190", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:53:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6629", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:53:12", "EXIF DateTimeDigitized": "2002:12:14 16:53:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000087", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6099d79303bc8495a12aa8802098625244b84692a2832ad7d4fbe82c74a27f3", "phash": "952364a1add633b9", "dhash": "d6f6a8ecbae8a4b6", "phash_int": -7.700200292304408e+18, "collected_at": "2026-05-22T04:30:16.635407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0088_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0088_IMG.JPG", "file_name": "100-0088_IMG.JPG", "file_stem": "100-0088_IMG", "file_ext": ".jpg", "file_size": 1861230.0, "mtime": "2002-12-14T15:56:56+00:00", "mtime_ts": 1039881416.0, "ctime": "2002-12-14T15:56:56+00:00", "sha256_file": "ccd1ae96351a8814df7c041f908aa7e2f8a320f173b425a43abc0183886cdceb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:56:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7335", "EXIF ExposureTime": "1", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:56:58", "EXIF DateTimeDigitized": "2002:12:14 16:56:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Tv-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d068e7af11e2024864e627f1cd98ec170eec2d63e41d7eb00ab461399db2a50d", "phash": "f8c835c39a1dd127", "dhash": "a1b39331c988060c", "phash_int": -5.2010664274075206e+17, "collected_at": "2026-05-22T04:30:16.713070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0089_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0089_IMG.JPG", "file_name": "100-0089_IMG.JPG", "file_stem": "100-0089_IMG", "file_ext": ".jpg", "file_size": 1694446.0, "mtime": "2002-12-14T15:58:24+00:00", "mtime_ts": 1039881504.0, "ctime": "2002-12-14T15:58:24+00:00", "sha256_file": "bdd18b9bd3bacb394a635742147f4de97009154d7389a2b3ac17fd3f04a28665", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:58:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6571", "EXIF ExposureTime": "8", "EXIF FNumber": "8", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:58:25", "EXIF DateTimeDigitized": "2002:12:14 16:58:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "-3", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Tv-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "65440", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "778ca995558c476a4fdb3668f4f0808214b8eca56e05b479a2da3794856b483e", "phash": "8fe4781dab42dc68", "dhash": "6626e76b73616923", "phash_int": -8.078199762773157e+18, "collected_at": "2026-05-22T04:30:16.721237+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0091_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0091_IMG.JPG", "file_name": "100-0091_IMG.JPG", "file_stem": "100-0091_IMG", "file_ext": ".jpg", "file_size": 1022663.0, "mtime": "2002-12-14T15:59:14+00:00", "mtime_ts": 1039881554.0, "ctime": "2002-12-14T15:59:14+00:00", "sha256_file": "c9c6bf898a2258d777e842b0c6c2d1d9b7c502bc905097fd509201853f69eacb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:59:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4619", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:59:15", "EXIF DateTimeDigitized": "2002:12:14 16:59:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Tv-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35c18c3f39826dac94fdb15a898aa53869cbee9f0199e82db2f64dbc07b4b5b1", "phash": "ade2569da95256a1", "dhash": "52a6e56373736962", "phash_int": -5.91707172526081e+18, "collected_at": "2026-05-22T04:30:16.832011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0090_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0090_IMG.JPG", "file_name": "100-0090_IMG.JPG", "file_stem": "100-0090_IMG", "file_ext": ".jpg", "file_size": 1280755.0, "mtime": "2002-12-14T15:59:00+00:00", "mtime_ts": 1039881540.0, "ctime": "2002-12-14T15:59:00+00:00", "sha256_file": "9343ef45c659b88db849970f895cda3f27ae9234b6cca94c7d66c6e1509426c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 16:59:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5661", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 16:59:01", "EXIF DateTimeDigitized": "2002:12:14 16:59:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Tv-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08136566b83719f257293816c39f9cdd06bd166fb98dfeb1676d04ce37f261b3", "phash": "ada2529cad5a5aa5", "dhash": "a6aecbf356726962", "phash_int": -5.935090526044136e+18, "collected_at": "2026-05-22T04:30:16.842773+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0092_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0092_IMG.JPG", "file_name": "100-0092_IMG.JPG", "file_stem": "100-0092_IMG", "file_ext": ".jpg", "file_size": 56035.0, "mtime": "2002-12-14T20:01:30+00:00", "mtime_ts": 1039896090.0, "ctime": "2002-12-14T20:01:30+00:00", "sha256_file": "33e25ad503252e2f6fd02d536bf4a1ee5782ed809095bedaaa46ffb0c00f70fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:01:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5288", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:01:32", "EXIF DateTimeDigitized": "2002:12:14 21:01:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 1040, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65497", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71810869f35f270b1f697bd05b23ebf19c8ecf0ecef9222b627c5666e54dd337", "phash": "b94286b94f6e91a9", "dhash": "c7960f071b1a1b76", "phash_int": -5.097363697770263e+18, "collected_at": "2026-05-22T04:30:16.863825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0093_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0093_IMG.JPG", "file_name": "100-0093_IMG.JPG", "file_stem": "100-0093_IMG", "file_ext": ".jpg", "file_size": 853766.0, "mtime": "2002-12-14T20:01:50+00:00", "mtime_ts": 1039896110.0, "ctime": "2002-12-14T20:01:50+00:00", "sha256_file": "15230083e850cb825fbc14ae2367ef6d6b15a2eb6f1351b7e17ddfbd3318c791", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:01:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3785", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:01:51", "EXIF DateTimeDigitized": "2002:12:14 21:01:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000093", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fefce962ee2a40b9d60496ea9466d1f32b20fdaa6e45d451238e67d2af3d3751", "phash": "946b6397dc983364", "dhash": "f8f03c303c6cbc3c", "phash_int": -7.751992829696003e+18, "collected_at": "2026-05-22T04:30:16.892001+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0094_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0094_IMG.JPG", "file_name": "100-0094_IMG.JPG", "file_stem": "100-0094_IMG", "file_ext": ".jpg", "file_size": 705666.0, "mtime": "2002-12-14T20:02:30+00:00", "mtime_ts": 1039896150.0, "ctime": "2002-12-14T20:02:30+00:00", "sha256_file": "f9f2dfb5f45b299cdf1c51da473a2b9b13ae3dc1ddf36730b5c8e90fa7d1356f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:02:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3305", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:02:31", "EXIF DateTimeDigitized": "2002:12:14 21:02:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65460", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9938a0471019a347d6caccafd28efcefb929fd536f960fa39343dd708c057c99", "phash": "936c94cf34ccc33c", "dhash": "febecb174949f8f8", "phash_int": -7.823714834984418e+18, "collected_at": "2026-05-22T04:30:16.918208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0095_IMG.JPG", "file_name": "100-0095_IMG.JPG", "file_stem": "100-0095_IMG", "file_ext": ".jpg", "file_size": 647049.0, "mtime": "2002-12-14T20:02:48+00:00", "mtime_ts": 1039896168.0, "ctime": "2002-12-14T20:02:48+00:00", "sha256_file": "87fde0a28da44eb79c8c2679b06a06dc3bc57d66b00b42ae25384745944dff8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:02:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2935", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:02:50", "EXIF DateTimeDigitized": "2002:12:14 21:02:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000095", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39e3f70e4d956988a9cf592a0b38234e0f70066deae533759276df2b1b42b737", "phash": "9c6396d863b4c972", "dhash": "c18c33cd3232343e", "phash_int": -7.177727524968544e+18, "collected_at": "2026-05-22T04:30:16.937570+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0096_IMG.JPG", "file_name": "100-0096_IMG.JPG", "file_stem": "100-0096_IMG", "file_ext": ".jpg", "file_size": 953922.0, "mtime": "2002-12-14T20:12:50+00:00", "mtime_ts": 1039896770.0, "ctime": "2002-12-14T20:12:50+00:00", "sha256_file": "2034e9c6eacccc54bdf58e1471e9ef9549a9f69dac8cf0afeb9c3293ff7fd539", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:12:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3661", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:12:51", "EXIF DateTimeDigitized": "2002:12:14 21:12:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000096", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65441", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "522c75d2ad2bf03f28b3c0f3ef269406a141797278da8fff7bfb1f0abf4cff1f", "phash": "995e1bd066a41be9", "dhash": "f8797bf6d8d8def8", "phash_int": -7.395442956206597e+18, "collected_at": "2026-05-22T04:30:16.997686+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0097_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0097_IMG.JPG", "file_name": "100-0097_IMG.JPG", "file_stem": "100-0097_IMG", "file_ext": ".jpg", "file_size": 1015251.0, "mtime": "2002-12-14T20:12:58+00:00", "mtime_ts": 1039896778.0, "ctime": "2002-12-14T20:12:58+00:00", "sha256_file": "fe731c13d10b083b99e96cfc8b149ca72e48cfd533d2bd5b039046b4f2f8dadd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:13:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5163", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:13:00", "EXIF DateTimeDigitized": "2002:12:14 21:13:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000097", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43a1fbabf40c74b1fa76904497ee22fbe72f28fdbedddfb85092fbf7b3527dc1", "phash": "a5dad26b784fc045", "dhash": "d9fde666d2dbe69e", "phash_int": -6.495648153506693e+18, "collected_at": "2026-05-22T04:30:17.000684+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0099_IMG.JPG", "file_name": "100-0099_IMG.JPG", "file_stem": "100-0099_IMG", "file_ext": ".jpg", "file_size": 1005842.0, "mtime": "2002-12-14T20:14:02+00:00", "mtime_ts": 1039896842.0, "ctime": "2002-12-14T20:14:02+00:00", "sha256_file": "b8d7b1fbe5b9bc3cf07acd25a32b3ff6341852139da46e94cfebfec871318482", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:14:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5933", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:14:04", "EXIF DateTimeDigitized": "2002:12:14 21:14:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000099", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c14bc4425a665c77e92214cedea38d6bc9c422855333ac95db5084f665e134c4", "phash": "96f469db2ac26986", "dhash": "bcfcfcfcfcfcfcfc", "phash_int": -7.569308683666823e+18, "collected_at": "2026-05-22T04:30:17.081760+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0098_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0098_IMG.JPG", "file_name": "100-0098_IMG.JPG", "file_stem": "100-0098_IMG", "file_ext": ".jpg", "file_size": 891527.0, "mtime": "2002-12-14T20:13:24+00:00", "mtime_ts": 1039896804.0, "ctime": "2002-12-14T20:13:24+00:00", "sha256_file": "ddae6bc1e469cd4fcc72031ef6068d5797feff442bb34f28e33c166646ed8715", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:13:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2793", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:13:25", "EXIF DateTimeDigitized": "2002:12:14 21:13:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000098", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65409", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e05a290816ed1366bb4a389fcffd52a20ec05cacc4cb2f74f77af7083a2f5c2", "phash": "c5d49c2d239cdc47", "dhash": "b0e0e0d848c0a4f0", "phash_int": -4.1915536354901453e+18, "collected_at": "2026-05-22T04:30:17.095762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0101_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0101_IMG.JPG", "file_name": "101-0101_IMG.JPG", "file_stem": "101-0101_IMG", "file_ext": ".jpg", "file_size": 755198.0, "mtime": "2002-12-14T20:14:18+00:00", "mtime_ts": 1039896858.0, "ctime": "2002-12-14T20:14:18+00:00", "sha256_file": "b8b04d6e91b89de8a6f6a581f50d5dc483a072c64bdbdbe2f2983712d3e58a41", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:14:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3658", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:14:20", "EXIF DateTimeDigitized": "2002:12:14 21:14:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010101", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65486", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "664acfa60251a9f37f448006c52259784156fa3a64048e0c62500d984a892d65", "phash": "a5353552588fda56", "dhash": "b6c6c6e7eeefefcf", "phash_int": -6.542264255896364e+18, "collected_at": "2026-05-22T04:30:17.165763+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\100-0100_IMG.JPG", "file_name": "100-0100_IMG.JPG", "file_stem": "100-0100_IMG", "file_ext": ".jpg", "file_size": 907282.0, "mtime": "2002-12-14T20:14:08+00:00", "mtime_ts": 1039896848.0, "ctime": "2002-12-14T20:14:08+00:00", "sha256_file": "883f055b78c122c27caffe46f2a90c08dc90c1441e0d04781cd4827733f4269d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:14:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4464", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:14:10", "EXIF DateTimeDigitized": "2002:12:14 21:14:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000100", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65451", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f25c6f94ac958bd2331f4dafe4ca4a09e641d24fd35f6a630d1f8b10210e35f4", "phash": "b3627e19405abf83", "dhash": "bfcfcfcede5e7f3e", "phash_int": -5.520711546283835e+18, "collected_at": "2026-05-22T04:30:17.176333+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0102_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0102_IMG.JPG", "file_name": "101-0102_IMG.JPG", "file_stem": "101-0102_IMG", "file_ext": ".jpg", "file_size": 957890.0, "mtime": "2002-12-14T20:24:38+00:00", "mtime_ts": 1039897478.0, "ctime": "2002-12-14T20:24:38+00:00", "sha256_file": "6320690d470aab48b2bdec778137b45979d21c8f8907f8615dd933fd383fe80e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:24:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4753", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:24:40", "EXIF DateTimeDigitized": "2002:12:14 21:24:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010102", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d6755b12f56d55759a048e025047b8deab13fcd7090e2093e944b97dd922223", "phash": "c21d3d061f3e56e1", "dhash": "e0d0c8e8e9e9e4c0", "phash_int": -4.459340959523646e+18, "collected_at": "2026-05-22T04:30:17.251424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0103_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0103_IMG.JPG", "file_name": "101-0103_IMG.JPG", "file_stem": "101-0103_IMG", "file_ext": ".jpg", "file_size": 1005282.0, "mtime": "2002-12-14T20:24:46+00:00", "mtime_ts": 1039897486.0, "ctime": "2002-12-14T20:24:46+00:00", "sha256_file": "174e938372c2fb82e4449052c77c188a095579c6acf9f5734225a1f314c2d4f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:24:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5128", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:24:47", "EXIF DateTimeDigitized": "2002:12:14 21:24:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010103", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4f0a85cc60b584e3c0d41460ba00981e89515d55af4f36ae428c3a3292ff323c", "phash": "a7592d164db0daa6", "dhash": "9a4b4b92c4cded6f", "phash_int": -6.388025022632371e+18, "collected_at": "2026-05-22T04:30:17.265636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0104_IMG.JPG", "file_name": "101-0104_IMG.JPG", "file_stem": "101-0104_IMG", "file_ext": ".jpg", "file_size": 23325.0, "mtime": "2002-12-14T20:25:14+00:00", "mtime_ts": 1039897514.0, "ctime": "2002-12-14T20:25:14+00:00", "sha256_file": "690e90f7b81932e21701ed92fc54ba0fa7b531472e4354b1270379868b239b3f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:25:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2114", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:25:15", "EXIF DateTimeDigitized": "2002:12:14 21:25:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010104", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f2b38e19c935afd29a2d3bafc8408f8afb3334af30b33d35c7092e2ec1977d2", "phash": "bfec2002249f9dad", "dhash": "0b0932741159581e", "phash_int": -4.617280324385138e+18, "collected_at": "2026-05-22T04:30:17.282691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0105_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0105_IMG.JPG", "file_name": "101-0105_IMG.JPG", "file_stem": "101-0105_IMG", "file_ext": ".jpg", "file_size": 48253.0, "mtime": "2002-12-14T20:25:22+00:00", "mtime_ts": 1039897522.0, "ctime": "2002-12-14T20:25:22+00:00", "sha256_file": "0276f57c677e19a9d0769ec5cff2b266bac8e6d7187aaf31c6f1d6475c12f6c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:25:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4469", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:25:24", "EXIF DateTimeDigitized": "2002:12:14 21:25:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 1, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010105", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "288", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b3dab1a0cf4b912190a428a99e3cdb06ca98216e61f9bc876e4625b54500d8f", "phash": "ad4abc4ad4ad9558", "dhash": "33356646c6633636", "phash_int": -5.959744127289683e+18, "collected_at": "2026-05-22T04:30:17.304692+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0106_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0106_IMG.JPG", "file_name": "101-0106_IMG.JPG", "file_stem": "101-0106_IMG", "file_ext": ".jpg", "file_size": 39974.0, "mtime": "2002-12-14T20:25:32+00:00", "mtime_ts": 1039897532.0, "ctime": "2002-12-14T20:25:32+00:00", "sha256_file": "606d6dd0338cea300078595e62aca90816ff7117ac8d0ffcc562737b813d86f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:25:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3653", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:25:33", "EXIF DateTimeDigitized": "2002:12:14 21:25:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "480", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "640", "Interoperability RelatedImageLength": "480", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "16000/7", "EXIF FocalPlaneYResolution": "16000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 1, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010106", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Normal", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Small", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65473", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "288", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 480.0, "megapixels": 0.31, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3a24aafedc1938f4f2dc6974cf281f616fae50651f5f6a8cef12cebb8fae717a", "phash": "dc01fc03fc1c89ed", "dhash": "32347074444c2428", "phash_int": -2.593514816343865e+18, "collected_at": "2026-05-22T04:30:17.309699+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0107_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0107_IMG.JPG", "file_name": "101-0107_IMG.JPG", "file_stem": "101-0107_IMG", "file_ext": ".jpg", "file_size": 811984.0, "mtime": "2002-12-14T20:29:12+00:00", "mtime_ts": 1039897752.0, "ctime": "2002-12-14T20:29:12+00:00", "sha256_file": "4d9eb988023bd659bc20d888f2f8293a155898d34d47f441fbd87e9af60c1c76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:29:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5442", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:29:13", "EXIF DateTimeDigitized": "2002:12:14 21:29:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 1, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "288", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08436e4bb093e0d7f82db054f15ba0631bd2005cfb8e60f460026ee25606c769", "phash": "9c619e47728af54a", "dhash": "bc7c95b551323139", "phash_int": -7.178282301350284e+18, "collected_at": "2026-05-22T04:30:17.376959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0108_IMG.JPG", "file_name": "101-0108_IMG.JPG", "file_stem": "101-0108_IMG", "file_ext": ".jpg", "file_size": 462740.0, "mtime": "2002-12-14T20:29:20+00:00", "mtime_ts": 1039897760.0, "ctime": "2002-12-14T20:29:20+00:00", "sha256_file": "57dc62c073706104317943292c124dedc76a1d4bf524ae53de40221c7c61f913", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:29:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3069", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:29:21", "EXIF DateTimeDigitized": "2002:12:14 21:29:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddfbf10e114138b048cb552b3f609a06bdfc155eb27bbf645f7bf06ec4dc84a0", "phash": "994bb46e64a1d19b", "dhash": "80399a9a39b81a9e", "phash_int": -7.40062317642555e+18, "collected_at": "2026-05-22T04:30:17.393959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0109_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0109_IMG.JPG", "file_name": "101-0109_IMG.JPG", "file_stem": "101-0109_IMG", "file_ext": ".jpg", "file_size": 603431.0, "mtime": "2002-12-14T20:29:40+00:00", "mtime_ts": 1039897780.0, "ctime": "2002-12-14T20:29:40+00:00", "sha256_file": "6be3215e97664649126f8495fa5c3ff6996cf6f0aa5d3bcb9b6f681d466c8aa5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:29:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3856", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:29:41", "EXIF DateTimeDigitized": "2002:12:14 21:29:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4abd7a6c5efdae09cfb34fb9aa4f64b9af1d07d755bdca090025c620b8a53f1b", "phash": "914bbc46643de5d1", "dhash": "98d9da9a98189a9e", "phash_int": -7.977075304441191e+18, "collected_at": "2026-05-22T04:30:17.419959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0110_IMG.JPG", "file_name": "101-0110_IMG.JPG", "file_stem": "101-0110_IMG", "file_ext": ".jpg", "file_size": 704396.0, "mtime": "2002-12-14T20:29:48+00:00", "mtime_ts": 1039897788.0, "ctime": "2002-12-14T20:29:48+00:00", "sha256_file": "9ee65a9b37fa61969d466a7b1f15b06a97e36c2ee4a389f8680f919735785e91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:29:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5218", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:29:49", "EXIF DateTimeDigitized": "2002:12:14 21:29:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c3b69f91cd4e3d92d93a19b9d9c6a9ff69bb48a793e866e5bf506ba02fe95fd", "phash": "8e6cb25031a373de", "dhash": "e525276371717d7d", "phash_int": -8.18397036533911e+18, "collected_at": "2026-05-22T04:30:17.470094+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0111_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0111_IMG.JPG", "file_name": "101-0111_IMG.JPG", "file_stem": "101-0111_IMG", "file_ext": ".jpg", "file_size": 834565.0, "mtime": "2002-12-14T20:29:54+00:00", "mtime_ts": 1039897794.0, "ctime": "2002-12-14T20:29:54+00:00", "sha256_file": "09c51e32a41468f4e8e39b324e3e3b8dae14c57fffcca4ef8bc38ab6094adadf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:29:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6162", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:29:56", "EXIF DateTimeDigitized": "2002:12:14 21:29:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65526", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f865193ce45cc7f2e853604c7b896a3b095eb6a46b94a2ebb6d17a3d1801372", "phash": "9e689753370272dc", "dhash": "75b535373231756d", "phash_int": -7.032204434478042e+18, "collected_at": "2026-05-22T04:30:17.491095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0112_IMG.JPG", "file_name": "101-0112_IMG.JPG", "file_stem": "101-0112_IMG", "file_ext": ".jpg", "file_size": 911622.0, "mtime": "2002-12-14T20:30:04+00:00", "mtime_ts": 1039897804.0, "ctime": "2002-12-14T20:30:04+00:00", "sha256_file": "3b9fd42bdddab9ee3ac79a3c3f71f7859062479a108f13fc291c947ed4fc775b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:30:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6282", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:30:06", "EXIF DateTimeDigitized": "2002:12:14 21:30:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "50", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4539db1075bec9d42d08017ff4731271310b00c0c229fbf66f43bae881335b3", "phash": "b4394e439d6fc8a4", "dhash": "a6bcae2a9c8f6725", "phash_int": -5.460247020898892e+18, "collected_at": "2026-05-22T04:30:17.527098+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0113_IMG.JPG", "file_name": "101-0113_IMG.JPG", "file_stem": "101-0113_IMG", "file_ext": ".jpg", "file_size": 781556.0, "mtime": "2002-12-14T20:30:22+00:00", "mtime_ts": 1039897822.0, "ctime": "2002-12-14T20:30:22+00:00", "sha256_file": "649a09368a6c53ce35b308c04f3a4923b039670c0df035f1833f5fe8d672c7f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:30:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5010", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:30:24", "EXIF DateTimeDigitized": "2002:12:14 21:30:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "574a4cb18cf2c3d5cba5e793f56f731c564dd5ae899d7cc6c5dc12e73cf8b693", "phash": "c42cf3add41eef00", "dhash": "1092a4b4a472e8d0", "phash_int": -4.310802815386718e+18, "collected_at": "2026-05-22T04:30:17.541096+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0114_IMG.JPG", "file_name": "101-0114_IMG.JPG", "file_stem": "101-0114_IMG", "file_ext": ".jpg", "file_size": 906605.0, "mtime": "2002-12-14T20:39:48+00:00", "mtime_ts": 1039898388.0, "ctime": "2002-12-14T20:39:48+00:00", "sha256_file": "a357f18710fcf4c74adb58133b73db146750c10e66e7df22cb94b2f6e6ee0f91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:39:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5397", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:39:50", "EXIF DateTimeDigitized": "2002:12:14 21:39:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a0bcbb8423ccb7897278233b5b3a553378503859c5b14bb171d8029d984a21e", "phash": "867cd01b67e01b7c", "dhash": "dc24e46565f9ece8", "phash_int": -8.755894759389652e+18, "collected_at": "2026-05-22T04:30:17.573098+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0115_IMG.JPG", "file_name": "101-0115_IMG.JPG", "file_stem": "101-0115_IMG", "file_ext": ".jpg", "file_size": 981154.0, "mtime": "2002-12-14T20:39:54+00:00", "mtime_ts": 1039898394.0, "ctime": "2002-12-14T20:39:54+00:00", "sha256_file": "ba1ba532ceae5f43e7348a191b6e05ef811ad6c218dcb61b4597a1dd1407d111", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:39:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6044", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:39:55", "EXIF DateTimeDigitized": "2002:12:14 21:39:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60fee32d1763e1e999a55e77e5548f3a0a07a6f757bc461ad330ce9143811a8b", "phash": "d57efa05a293443a", "dhash": "293028ce96f2dc4d", "phash_int": -3.062735794456018e+18, "collected_at": "2026-05-22T04:30:17.600101+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0116_IMG.JPG", "file_name": "101-0116_IMG.JPG", "file_stem": "101-0116_IMG", "file_ext": ".jpg", "file_size": 904309.0, "mtime": "2002-12-14T20:39:58+00:00", "mtime_ts": 1039898398.0, "ctime": "2002-12-14T20:39:58+00:00", "sha256_file": "c9198d96e815b7e24868ecd64239fbf69f9fca3c2f281f628930fcb3b53b29af", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:40:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5528", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:40:00", "EXIF DateTimeDigitized": "2002:12:14 21:40:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95417f534a7bb923e5a4fd48f932f84c157e1416ace3dbc107ff3bce4ca763fb", "phash": "962bf9720ff94224", "dhash": "1a5beb6ae4c4b474", "phash_int": -7.625727275732221e+18, "collected_at": "2026-05-22T04:30:17.636159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0117_IMG.JPG", "file_name": "101-0117_IMG.JPG", "file_stem": "101-0117_IMG", "file_ext": ".jpg", "file_size": 872050.0, "mtime": "2002-12-14T20:40:04+00:00", "mtime_ts": 1039898404.0, "ctime": "2002-12-14T20:40:04+00:00", "sha256_file": "03be47542d4bac70042018d8883ab39f21dfb2efe625b6613d10cf210e13bc1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:40:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5617", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:40:05", "EXIF DateTimeDigitized": "2002:12:14 21:40:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3364a8d633a769a272f771d98590431c7787d8ab11f8c15d9929920f859cbe0f", "phash": "d26de0da87e9e405", "dhash": "c09446686851c8cc", "phash_int": -3.283721324095479e+18, "collected_at": "2026-05-22T04:30:17.682161+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0118_IMG.JPG", "file_name": "101-0118_IMG.JPG", "file_stem": "101-0118_IMG", "file_ext": ".jpg", "file_size": 914457.0, "mtime": "2002-12-14T20:40:26+00:00", "mtime_ts": 1039898426.0, "ctime": "2002-12-14T20:40:26+00:00", "sha256_file": "58c72654882156266be543ecb37c14f9f5bc4549c92994eb59eac97d22b152ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:40:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5669", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:40:28", "EXIF DateTimeDigitized": "2002:12:14 21:40:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be098a2458767680c1b47e12bd3773dfb9767c8615eba1b665a2a5428c1523c9", "phash": "d03dc992361ae772", "dhash": "f8f0d0acaca0b0c0", "phash_int": -3.4413729104310497e+18, "collected_at": "2026-05-22T04:30:17.707219+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0119_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0119_IMG.JPG", "file_name": "101-0119_IMG.JPG", "file_stem": "101-0119_IMG", "file_ext": ".jpg", "file_size": 966891.0, "mtime": "2002-12-14T20:54:42+00:00", "mtime_ts": 1039899282.0, "ctime": "2002-12-14T20:54:42+00:00", "sha256_file": "73453f2819a0c5d36d73df73532842b25aada320eeabeb1834163939b0e8c666", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:54:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6072", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:54:43", "EXIF DateTimeDigitized": "2002:12:14 21:54:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010119", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bea5954bcae0bcca61d79a2552bc16385412b009a4fad5e8d8228878be65c684", "phash": "bc529d4319e689bc", "dhash": "d8882e283aaa2636", "phash_int": -4.876662534965918e+18, "collected_at": "2026-05-22T04:30:17.763221+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0120_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0120_IMG.JPG", "file_name": "101-0120_IMG.JPG", "file_stem": "101-0120_IMG", "file_ext": ".jpg", "file_size": 793435.0, "mtime": "2002-12-14T20:57:32+00:00", "mtime_ts": 1039899452.0, "ctime": "2002-12-14T20:57:32+00:00", "sha256_file": "1db99b97b59435e3dfbab1ed92239c16b209a5a5a8bce4eb1b03147fa0b9178b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:57:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5378", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:57:34", "EXIF DateTimeDigitized": "2002:12:14 21:57:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010120", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4739e6d65c1fcf441e30ff876c6adee831a69ef33beb84739d9488e10c54c359", "phash": "b4e14d460b1fb9b4", "dhash": "d4b6be3a2c242454", "phash_int": -5.412960313892948e+18, "collected_at": "2026-05-22T04:30:17.790493+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0121_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0121_IMG.JPG", "file_name": "101-0121_IMG.JPG", "file_stem": "101-0121_IMG", "file_ext": ".jpg", "file_size": 865199.0, "mtime": "2002-12-14T20:57:52+00:00", "mtime_ts": 1039899472.0, "ctime": "2002-12-14T20:57:52+00:00", "sha256_file": "16bd7d7bec9a629f6da57a77cc9835aa21466610025d5a3ed92ab9d5e5837648", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 21:57:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6133", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 21:57:53", "EXIF DateTimeDigitized": "2002:12:14 21:57:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87652cd632e24448feacae49aef33484a34e3b4764420b7b1d9813997998c8c1", "phash": "e8fbdddc1c30a0a2", "dhash": "205bdd954da6a652", "phash_int": -1.6584881003204032e+18, "collected_at": "2026-05-22T04:30:17.809664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0122_IMG.JPG", "file_name": "101-0122_IMG.JPG", "file_stem": "101-0122_IMG", "file_ext": ".jpg", "file_size": 993141.0, "mtime": "2002-12-14T22:40:08+00:00", "mtime_ts": 1039905608.0, "ctime": "2002-12-14T22:40:08+00:00", "sha256_file": "1296613d4228c49a6368daf08e78ef74f9cf31785c9b1ffe3eb5d9578541d8e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:40:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5687", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:40:10", "EXIF DateTimeDigitized": "2002:12:14 23:40:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "869/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3476"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bdaf510fac41e4babb6f972a011a265b99b56927dfe00419f94679bbba907fb5", "phash": "fc484eb109de1d0f", "dhash": "b0a032b49a0e2c66", "phash_int": -2.6787765554681523e+17, "collected_at": "2026-05-22T04:30:17.865728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0123_IMG.JPG", "file_name": "101-0123_IMG.JPG", "file_stem": "101-0123_IMG", "file_ext": ".jpg", "file_size": 934637.0, "mtime": "2002-12-14T22:40:20+00:00", "mtime_ts": 1039905620.0, "ctime": "2002-12-14T22:40:20+00:00", "sha256_file": "2ae5f2bf61640dacf261bab9f9909ba52ef834b1b84a9e78c78b36ea76fad0c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:40:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5478", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:40:22", "EXIF DateTimeDigitized": "2002:12:14 23:40:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "15647/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "208", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "15647"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8b230e48799bf4b93134d4a9327971081b551490a1ccee6b201a3a2d87d86ce", "phash": "d22d72c7395e4529", "dhash": "016de5b0b2c8a98d", "phash_int": -3.3018567518061676e+18, "collected_at": "2026-05-22T04:30:17.878800+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0124_IMG.JPG", "file_name": "101-0124_IMG.JPG", "file_stem": "101-0124_IMG", "file_ext": ".jpg", "file_size": 846068.0, "mtime": "2002-12-14T22:40:32+00:00", "mtime_ts": 1039905632.0, "ctime": "2002-12-14T22:40:32+00:00", "sha256_file": "f848ab7ccb51b3aa61e81bbc299187a942dc98b1d01807e9e371b7280eb8380b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:40:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5546", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:40:34", "EXIF DateTimeDigitized": "2002:12:14 23:40:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f0047aea3aaac06f9b20e81593535f49127e83f90dc640570fa765dfb1fd399", "phash": "8d726ed0594eb54a", "dhash": "934b3272b2fa6573", "phash_int": -8.254413325886115e+18, "collected_at": "2026-05-22T04:30:17.913802+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0125_IMG.JPG", "file_name": "101-0125_IMG.JPG", "file_stem": "101-0125_IMG", "file_ext": ".jpg", "file_size": 884887.0, "mtime": "2002-12-14T22:40:44+00:00", "mtime_ts": 1039905644.0, "ctime": "2002-12-14T22:40:44+00:00", "sha256_file": "75537669b02220dbab15af98db8fe7f43461b6c0cc670bf0f2cd7fbeda318561", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:40:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5022", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:40:46", "EXIF DateTimeDigitized": "2002:12:14 23:40:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65509", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f72893ebea462c19fb395bca1a010eec3301f59486bf7eae2f0de795be5821c0", "phash": "b4d655b6a0a55953", "dhash": "fc6c79b69d1c4eda", "phash_int": -5.416047258998843e+18, "collected_at": "2026-05-22T04:30:17.945803+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0126_IMG.JPG", "file_name": "101-0126_IMG.JPG", "file_stem": "101-0126_IMG", "file_ext": ".jpg", "file_size": 802135.0, "mtime": "2002-12-14T22:41:00+00:00", "mtime_ts": 1039905660.0, "ctime": "2002-12-14T22:41:00+00:00", "sha256_file": "e57b565b6e48f3b571f41c6328026603c715252a43343da4b6ad96bb09b9f389", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:41:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4330", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:41:01", "EXIF DateTimeDigitized": "2002:12:14 23:41:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "17", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20082ba84cbcab94b21c88094ef516d247509b0f7f7c2bb99168979f9ae05631", "phash": "b6957a27498aed22", "dhash": "cc2c3c1e5e6dada9", "phash_int": -5.290187878120625e+18, "collected_at": "2026-05-22T04:30:17.969904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0128_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0128_IMG.JPG", "file_name": "101-0128_IMG.JPG", "file_stem": "101-0128_IMG", "file_ext": ".jpg", "file_size": 649033.0, "mtime": "2002-12-14T22:42:16+00:00", "mtime_ts": 1039905736.0, "ctime": "2002-12-14T22:42:16+00:00", "sha256_file": "648fd44402f6e5b0611bbea6264603d2dfe4617acea3d52f719adbb359b3389e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:42:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5181", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:42:18", "EXIF DateTimeDigitized": "2002:12:14 23:42:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1064bb7a035368c4bec3ac0a68a9183f43ea0ec874a5a4a4e73f357fe3bd7b71", "phash": "81875619364fd973", "dhash": "eacad2c7d3b3f3c0", "phash_int": -9.113220654675536e+18, "collected_at": "2026-05-22T04:30:18.043103+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0127_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0127_IMG.JPG", "file_name": "101-0127_IMG.JPG", "file_stem": "101-0127_IMG", "file_ext": ".jpg", "file_size": 833033.0, "mtime": "2002-12-14T22:41:06+00:00", "mtime_ts": 1039905666.0, "ctime": "2002-12-14T22:41:06+00:00", "sha256_file": "f1a8da80b2b5d1124682d26e2aba26f1c43c96a1b1768d7fbc146c01b3c48fc3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:41:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5414", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:41:07", "EXIF DateTimeDigitized": "2002:12:14 23:41:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3c97d4be860041d284663b808afa51d4948becbf01af830ccef0066322d869e", "phash": "9196262f4969c9fa", "dhash": "ce2c3c9a5a5bbf99", "phash_int": -7.956129707166415e+18, "collected_at": "2026-05-22T04:30:18.045105+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0130_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0130_IMG.JPG", "file_name": "101-0130_IMG.JPG", "file_stem": "101-0130_IMG", "file_ext": ".jpg", "file_size": 742746.0, "mtime": "2002-12-14T22:42:40+00:00", "mtime_ts": 1039905760.0, "ctime": "2002-12-14T22:42:40+00:00", "sha256_file": "aefaaaacd59f66db80e43b6fe32df4ae932fd925e9b44f1b7a572f3aaf7ddb8f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:42:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5396", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:42:42", "EXIF DateTimeDigitized": "2002:12:14 23:42:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 1008, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "241", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a7f77457972c8ac336411e422426e798a62f937a505071f157e990b9220fb2ab", "phash": "8b865438765bd167", "dhash": "ece5cbebeb9bf9c0", "phash_int": -8.39292825407771e+18, "collected_at": "2026-05-22T04:30:18.116224+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0129_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0129_IMG.JPG", "file_name": "101-0129_IMG.JPG", "file_stem": "101-0129_IMG", "file_ext": ".jpg", "file_size": 745318.0, "mtime": "2002-12-14T22:42:30+00:00", "mtime_ts": 1039905750.0, "ctime": "2002-12-14T22:42:30+00:00", "sha256_file": "bc2848fa1fb324392de83eb834893c4f8940bd9adf450e0bfcf84ee8076755d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:42:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5280", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:42:32", "EXIF DateTimeDigitized": "2002:12:14 23:42:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 1008, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "241", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "84cb78fd73992fe95d28f6a3ba8ac9fd676166b8deeeec8a9140ed176cb9f2b7", "phash": "8a8c553a3c1bd367", "dhash": "b4e7e969e9d9f9e0", "phash_int": -8.463295891131084e+18, "collected_at": "2026-05-22T04:30:18.123222+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0131_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0131_IMG.JPG", "file_name": "101-0131_IMG.JPG", "file_stem": "101-0131_IMG", "file_ext": ".jpg", "file_size": 751459.0, "mtime": "2002-12-14T22:42:50+00:00", "mtime_ts": 1039905770.0, "ctime": "2002-12-14T22:42:50+00:00", "sha256_file": "2d1be2c13abaa16976da02025662102a87f7248468206dc0b006baa5cfd6ee36", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:42:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5656", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:42:52", "EXIF DateTimeDigitized": "2002:12:14 23:42:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "69", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2addb3b124122ffef364ff30bb45a4bd550ab7982fabcd1221bb3eb33b27f9c0", "phash": "8b8e3430369f7167", "dhash": "6de1e9e9c999b9d9", "phash_int": -8.390711674065162e+18, "collected_at": "2026-05-22T04:30:18.190044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0132_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0132_IMG.JPG", "file_name": "101-0132_IMG.JPG", "file_stem": "101-0132_IMG", "file_ext": ".jpg", "file_size": 756382.0, "mtime": "2002-12-14T22:42:56+00:00", "mtime_ts": 1039905776.0, "ctime": "2002-12-14T22:42:56+00:00", "sha256_file": "80b886fabddf9bdde24df9cefb563b8e57a2aba9cb6c305df1de447a1e355b8b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:14 23:42:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5807", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:14 23:42:57", "EXIF DateTimeDigitized": "2002:12:14 23:42:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010132", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3eec2655175914ad1c9a5707647ef24cab9d5be2857ba63a31b461ffd5568006", "phash": "8b86363837d97165", "dhash": "6c69c3cbcb9bbbdb", "phash_int": -8.392961240475275e+18, "collected_at": "2026-05-22T04:30:18.205043+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0133_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0133_IMG.JPG", "file_name": "101-0133_IMG.JPG", "file_stem": "101-0133_IMG", "file_ext": ".jpg", "file_size": 1212333.0, "mtime": "2002-12-15T10:30:10+00:00", "mtime_ts": 1039948210.0, "ctime": "2002-12-15T10:30:10+00:00", "sha256_file": "bdc301e55624eafff554089e550a206e49949f668771c516a6608a2b1f54e6ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 11:30:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5618", "EXIF ExposureTime": "1/100", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 11:30:11", "EXIF DateTimeDigitized": "2002:12:15 11:30:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6729/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010133", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6729"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c96cac1ad9144ee434df492606354a77e0f79c38f99a831bb1e0012e94c31a4", "phash": "fc97ec91fdd10081", "dhash": "78e8604040880323", "phash_int": -2.4546754289565683e+17, "collected_at": "2026-05-22T04:30:18.239787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0134_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0134_IMG.JPG", "file_name": "101-0134_IMG.JPG", "file_stem": "101-0134_IMG", "file_ext": ".jpg", "file_size": 1016465.0, "mtime": "2002-12-15T10:30:24+00:00", "mtime_ts": 1039948224.0, "ctime": "2002-12-15T10:30:24+00:00", "sha256_file": "2531f156365f55ef953bd9535a1b09390cc8e7efadb12d5a21db18cc6b008f81", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 11:30:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5465", "EXIF ExposureTime": "1/125", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 11:30:25", "EXIF DateTimeDigitized": "2002:12:15 11:30:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "179/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010134", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1790"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7874aca00b131493bb0881730e31596cb35475e7b682f9105f1a3e463cfd31a", "phash": "df8db094a1356353", "dhash": "ae60514141404081", "phash_int": -2.33801847912914e+18, "collected_at": "2026-05-22T04:30:18.261944+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0136_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0136_IMG.JPG", "file_name": "101-0136_IMG.JPG", "file_stem": "101-0136_IMG", "file_ext": ".jpg", "file_size": 822543.0, "mtime": "2002-12-15T10:47:58+00:00", "mtime_ts": 1039949278.0, "ctime": "2002-12-15T10:47:58+00:00", "sha256_file": "e4f6346f8f0f222153d90b4bdf4414c757ce9bd63dbebee9c7074190ec748d29", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 11:47:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5783", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 11:47:59", "EXIF DateTimeDigitized": "2002:12:15 11:47:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010136", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "182", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e290d071c0b2f7a7391720fba6918b35fb4b6055968f94fe1495d939b14b30a", "phash": "a0809696df877b2b", "dhash": "e4969b8b9b9f9624", "phash_int": -6.881334655882659e+18, "collected_at": "2026-05-22T04:30:18.305166+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0135_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0135_IMG.JPG", "file_name": "101-0135_IMG.JPG", "file_stem": "101-0135_IMG", "file_ext": ".jpg", "file_size": 1074351.0, "mtime": "2002-12-15T10:47:48+00:00", "mtime_ts": 1039949268.0, "ctime": "2002-12-15T10:47:48+00:00", "sha256_file": "298a86227474ac69da8662aca99d2991da0e8c70532ce7db130e59d24d6e5db1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 11:47:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5627", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 11:47:50", "EXIF DateTimeDigitized": "2002:12:15 11:47:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010135", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b549d4b61b60873d27ac894d6fe626de0be21396f538a693bc44cb6d2cdb5080", "phash": "80e0f17d312bde87", "dhash": "8684c587a6e5c694", "phash_int": -9.160056122073424e+18, "collected_at": "2026-05-22T04:30:18.309164+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0138_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0138_IMG.JPG", "file_name": "101-0138_IMG.JPG", "file_stem": "101-0138_IMG", "file_ext": ".jpg", "file_size": 929091.0, "mtime": "2002-12-15T11:31:48+00:00", "mtime_ts": 1039951908.0, "ctime": "2002-12-15T11:31:48+00:00", "sha256_file": "11472028157a08922d60505fdbc82788066cdef2e98b3d23ef6caabd9c6226f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 12:31:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4456", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 12:31:50", "EXIF DateTimeDigitized": "2002:12:15 12:31:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010138", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b7563d4a2b469cababfb08059cbe015a35d8f432386b6dfe74ba9ea87354b8c", "phash": "c4d19d3da566ca58", "dhash": "f6d0e1c482611766", "phash_int": -4.264454484049606e+18, "collected_at": "2026-05-22T04:30:18.374946+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0137_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0137_IMG.JPG", "file_name": "101-0137_IMG.JPG", "file_stem": "101-0137_IMG", "file_ext": ".jpg", "file_size": 726428.0, "mtime": "2002-12-15T11:30:48+00:00", "mtime_ts": 1039951848.0, "ctime": "2002-12-15T11:30:48+00:00", "sha256_file": "4320854d1eb6c4e93b0d1a9fc07b9a1b4ae256f22ac46310370441f5b733556f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 12:30:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4228", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 12:30:50", "EXIF DateTimeDigitized": "2002:12:15 12:30:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "412/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010137", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "347", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3296"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20fc92f338e2dd4db34672e6d64d6d903cb89c5d3ecd9becda0cadd0e7597172", "phash": "a0ecdf63ac9c501b", "dhash": "b555b5a58f9dfdef", "phash_int": -6.850855313946685e+18, "collected_at": "2026-05-22T04:30:18.383261+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0139_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0139_IMG.JPG", "file_name": "101-0139_IMG.JPG", "file_stem": "101-0139_IMG", "file_ext": ".jpg", "file_size": 803626.0, "mtime": "2002-12-15T11:32:42+00:00", "mtime_ts": 1039951962.0, "ctime": "2002-12-15T11:32:42+00:00", "sha256_file": "9a1fe30d601dcd36a54980ad856335d9e454f785b739388f2283165aaf9c76cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 12:32:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4320", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 12:32:43", "EXIF DateTimeDigitized": "2002:12:15 12:32:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1162/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010139", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9296"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a2fcaadfb659e97b991a2ca6dbec5caba10f430bedb0173a9495f2c47ce48b6", "phash": "a4a0c69f7fe9a106", "dhash": "84a5872375e9eee5", "phash_int": -6.584044266867548e+18, "collected_at": "2026-05-22T04:30:18.459948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0140_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0140_IMG.JPG", "file_name": "101-0140_IMG.JPG", "file_stem": "101-0140_IMG", "file_ext": ".jpg", "file_size": 687654.0, "mtime": "2002-12-15T12:21:58+00:00", "mtime_ts": 1039954918.0, "ctime": "2002-12-15T12:21:58+00:00", "sha256_file": "e174c22a83ce50f4c59da4d63ad3b638b9ff63bfcab472eb06cb005f86698478", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:22:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4255", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:22:00", "EXIF DateTimeDigitized": "2002:12:15 13:22:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 184, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010140", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f069fb61b9b54e5b63a620433eaaf0a8bbf480d121c0bdd1aae378bca98ce5b", "phash": "9e90552aed35926b", "dhash": "f4f4fcf4636d6f6c", "phash_int": -7.021018176213904e+18, "collected_at": "2026-05-22T04:30:18.496948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0141_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0141_IMG.JPG", "file_name": "101-0141_IMG.JPG", "file_stem": "101-0141_IMG", "file_ext": ".jpg", "file_size": 793986.0, "mtime": "2002-12-15T12:22:06+00:00", "mtime_ts": 1039954926.0, "ctime": "2002-12-15T12:22:06+00:00", "sha256_file": "50af5efc0905fe72538862cacb5e95024d0b7bf6df6d7faa1b9a876ae2fd936e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:22:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5115", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:22:07", "EXIF DateTimeDigitized": "2002:12:15 13:22:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010141", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "25d7b8375115691d007d224fecabf59463a04a05f74c5c6dc524fa763498bc50", "phash": "9f8096384aa5d77a", "dhash": "f4f47457373f6f6c", "phash_int": -6.953392656145328e+18, "collected_at": "2026-05-22T04:30:18.504949+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0142_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0142_IMG.JPG", "file_name": "101-0142_IMG.JPG", "file_stem": "101-0142_IMG", "file_ext": ".jpg", "file_size": 670487.0, "mtime": "2002-12-15T12:22:10+00:00", "mtime_ts": 1039954930.0, "ctime": "2002-12-15T12:22:10+00:00", "sha256_file": "1ea9363f2d4cae087b948058159be7da0c93c763612c2a4a6eb268b982419f7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:22:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5171", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:22:11", "EXIF DateTimeDigitized": "2002:12:15 13:22:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010142", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b898b7824466786600c37759dc70d47b06367097118292f2edc4e6d543d05c12", "phash": "b08e9174bf8be864", "dhash": "faf8ba3914969a9a", "phash_int": -5.724478145725471e+18, "collected_at": "2026-05-22T04:30:18.570954+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0143_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0143_IMG.JPG", "file_name": "101-0143_IMG.JPG", "file_stem": "101-0143_IMG", "file_ext": ".jpg", "file_size": 825340.0, "mtime": "2002-12-15T12:28:06+00:00", "mtime_ts": 1039955286.0, "ctime": "2002-12-15T12:28:06+00:00", "sha256_file": "49ab5a09f39db8fef6bf6dfa0c2abe4b157723ea9ef93fc3ae0c1ed8d45efcba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:28:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6071", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:28:08", "EXIF DateTimeDigitized": "2002:12:15 13:28:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010143", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a3efa2d781524c1300f3578f4abf8e9b6f52f2f79b2b2f0247c734337b45ac0", "phash": "b1ee97632822676a", "dhash": "cfc82aab9b999838", "phash_int": -5.625392432408271e+18, "collected_at": "2026-05-22T04:30:18.585952+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0144_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0144_IMG.JPG", "file_name": "101-0144_IMG.JPG", "file_stem": "101-0144_IMG", "file_ext": ".jpg", "file_size": 833154.0, "mtime": "2002-12-15T12:28:14+00:00", "mtime_ts": 1039955294.0, "ctime": "2002-12-15T12:28:14+00:00", "sha256_file": "e4718cf708209093882edc646ebe56c2880f8f7b14f80c155c89e53f17b6e6b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:28:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6129", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:28:16", "EXIF DateTimeDigitized": "2002:12:15 13:28:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010144", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2e5cee8e37706c690ff305a32365f5b308313ec7ecc19e211d8934e049e8c59", "phash": "a2ee97e32a32606e", "dhash": "cfe8a9abab8a9898", "phash_int": -6.706255793186775e+18, "collected_at": "2026-05-22T04:30:18.661956+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0145_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0145_IMG.JPG", "file_name": "101-0145_IMG.JPG", "file_stem": "101-0145_IMG", "file_ext": ".jpg", "file_size": 770534.0, "mtime": "2002-12-15T12:53:30+00:00", "mtime_ts": 1039956810.0, "ctime": "2002-12-15T12:53:30+00:00", "sha256_file": "c36302bc977a28adefec096d5fadb1deded793b07337ffe765fb7126a9a4ec84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 13:53:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5542", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 13:53:32", "EXIF DateTimeDigitized": "2002:12:15 13:53:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010145", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e1ee2f519ae1599ebdd0d6620251a6fed550ec1f34e579dbfe53099bb6e302bc", "phash": "8ff3b0815b75a486", "dhash": "989e2e6a616276f4", "phash_int": -8.073915637313461e+18, "collected_at": "2026-05-22T04:30:18.665055+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0147_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0147_IMG.JPG", "file_name": "101-0147_IMG.JPG", "file_stem": "101-0147_IMG", "file_ext": ".jpg", "file_size": 727304.0, "mtime": "2002-12-15T14:38:42+00:00", "mtime_ts": 1039963122.0, "ctime": "2002-12-15T14:38:42+00:00", "sha256_file": "f9b302da2f22ff52af79abd529bc8858b18732c584ba3fc5fc77305a7f3a79a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:38:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3260", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:38:43", "EXIF DateTimeDigitized": "2002:12:15 15:38:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010147", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "306", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52a1d808a067661c36cd104ff86f6bcbe6f87ef35bc7af597d86ee76e23b3fb0", "phash": "9dd0612f2695d66a", "dhash": "8441f8f43f0e1a1e", "phash_int": -7.075048159460338e+18, "collected_at": "2026-05-22T04:30:18.723260+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0146_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0146_IMG.JPG", "file_name": "101-0146_IMG.JPG", "file_stem": "101-0146_IMG", "file_ext": ".jpg", "file_size": 676992.0, "mtime": "2002-12-15T14:38:36+00:00", "mtime_ts": 1039963116.0, "ctime": "2002-12-15T14:38:36+00:00", "sha256_file": "f09edd7fbd623a58b61dd31c20ce6d1b5a758e94cf3106a6bb7ddc510e815ae3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:38:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2769", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:38:37", "EXIF DateTimeDigitized": "2002:12:15 15:38:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010146", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5381326e662c06286a4c33b48664c951a387afa978d8c98cb714b7de9aa77b75", "phash": "c1dd41fd10fa3136", "dhash": "d0f090b0b8d6e3e0", "phash_int": -4.4773498993690414e+18, "collected_at": "2026-05-22T04:30:18.731258+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0148_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0148_IMG.JPG", "file_name": "101-0148_IMG.JPG", "file_stem": "101-0148_IMG", "file_ext": ".jpg", "file_size": 736254.0, "mtime": "2002-12-15T14:38:48+00:00", "mtime_ts": 1039963128.0, "ctime": "2002-12-15T14:38:48+00:00", "sha256_file": "9b36a49ac4acb7dc39e0f8750ce666e7c2a781bb7c40ef854ba7d4016b2d6394", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:38:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3283", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:38:49", "EXIF DateTimeDigitized": "2002:12:15 15:38:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010148", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a0b85335ef1d005ca51300dd26dfe3d56413cf4fa6607937a41e0b4275dcd1bf", "phash": "95c2652f20d4db6b", "dhash": "fcfbf8fc7f5f1e3e", "phash_int": -7.655445163487733e+18, "collected_at": "2026-05-22T04:30:18.779424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0149_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0149_IMG.JPG", "file_name": "101-0149_IMG.JPG", "file_stem": "101-0149_IMG", "file_ext": ".jpg", "file_size": 691923.0, "mtime": "2002-12-15T14:38:52+00:00", "mtime_ts": 1039963132.0, "ctime": "2002-12-15T14:38:52+00:00", "sha256_file": "084e6110d688eec094138b64cf488500df3b3b19d7fb348da1e2ea061638b7f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:38:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3697", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:38:53", "EXIF DateTimeDigitized": "2002:12:15 15:38:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010149", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b7d8f672c896bb32315a3787f0275196e8300960d3ba017bdf8f3964c983ca32", "phash": "d5ad2a15ca627b1c", "dhash": "fafe0280b0dcccec", "phash_int": -3.049735099581826e+18, "collected_at": "2026-05-22T04:30:18.794497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0150_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0150_IMG.JPG", "file_name": "101-0150_IMG.JPG", "file_stem": "101-0150_IMG", "file_ext": ".jpg", "file_size": 692228.0, "mtime": "2002-12-15T14:38:56+00:00", "mtime_ts": 1039963136.0, "ctime": "2002-12-15T14:38:56+00:00", "sha256_file": "ffaab5a918cedc0dec105bd4a85ecc339f845c4c833316adcfc33fb54ee8893a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:38:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3776", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:38:58", "EXIF DateTimeDigitized": "2002:12:15 15:38:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010150", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd5e7398ab32f3377c47aec05cae1f0012eaba8ab6f2579add960dce60ea34c3", "phash": "d5b52b160dca693a", "dhash": "fc3c80f0bcdcc8e1", "phash_int": -3.0474821991256284e+18, "collected_at": "2026-05-22T04:30:18.849547+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0151_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Barcelona\\101-0151_IMG.JPG", "file_name": "101-0151_IMG.JPG", "file_stem": "101-0151_IMG", "file_ext": ".jpg", "file_size": 651502.0, "mtime": "2002-12-15T14:39:02+00:00", "mtime_ts": 1039963142.0, "ctime": "2002-12-15T14:39:02+00:00", "sha256_file": "10141d593ae1e8e92d49ed000ec0ac026520b7e77970fa0cf7455f6ebea783f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:15 15:39:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3244", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:15 15:39:03", "EXIF DateTimeDigitized": "2002:12:15 15:39:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010151", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1a7040984ed93c1c6273611c355009465e53525ae616c00ada625f1a5afb84e", "phash": "94ac72d529d835ab", "dhash": "bcfcb6d5eeecc0f2", "phash_int": -7.733680200246349e+18, "collected_at": "2026-05-22T04:30:18.852550+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 730284.0, "mtime": "2002-12-19T08:59:04+00:00", "mtime_ts": 1040288344.0, "ctime": "2002-12-19T08:59:04+00:00", "sha256_file": "0b551a0c73537899e7789fe0b773887edae86cfa3bd685d4e902e419cf192875", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 09:59:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4307", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 09:59:05", "EXIF DateTimeDigitized": "2002:12:19 09:59:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1553/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 235, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1553"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28fff154410169b6db227c4e613887ba58424207ba347acdfc0cf41f84127bd1", "phash": "90e79f6807b3c463", "dhash": "f2e8cc0ca7b0b8f4", "phash_int": -8.00525454347313e+18, "collected_at": "2026-05-22T04:30:18.931600+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 650940.0, "mtime": "2002-12-19T08:58:54+00:00", "mtime_ts": 1040288334.0, "ctime": "2002-12-19T08:58:54+00:00", "sha256_file": "21797e20e50e9f870dfd8ec144b447405cb2fe231a97f660a8fadb5a9eef9027", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 09:58:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3783", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 09:58:55", "EXIF DateTimeDigitized": "2002:12:19 09:58:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "131/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1310"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6230bc5dabfd76a1c0320d6180defc43d320eac7c12d5c3a46bb90aa2f26ecc8", "phash": "d2ca22fd5eb5c20a", "dhash": "e9e9f1e0e19212ac", "phash_int": -3.2577529088380923e+18, "collected_at": "2026-05-22T04:30:18.940758+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 740788.0, "mtime": "2002-12-19T08:59:10+00:00", "mtime_ts": 1040288350.0, "ctime": "2002-12-19T08:59:10+00:00", "sha256_file": "235d10ae7eaa1225888bfce3bab50b828092919f72cda5b2857a38fbd79b43c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 09:59:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4477", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 09:59:12", "EXIF DateTimeDigitized": "2002:12:19 09:59:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1223/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1223"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebe024d853a2c7253442de00ff499f987c8fb58905005745c835f996added39e", "phash": "c4f596606d7ae524", "dhash": "e6ecce2386cccce0", "phash_int": -4.254328932083768e+18, "collected_at": "2026-05-22T04:30:18.973757+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 596810.0, "mtime": "2002-12-19T09:10:24+00:00", "mtime_ts": 1040289024.0, "ctime": "2002-12-19T09:10:24+00:00", "sha256_file": "cb8fd0b6b139acd4a45a945a2f8a4f2dd1758be3f96f8e5a05649cbf5a69cd4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 10:10:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4487", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 10:10:25", "EXIF DateTimeDigitized": "2002:12:19 10:10:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a7d42b812bbd67ec68692fb18fbe20e429ec33dbc7c8edfe06af0872c226bc87", "phash": "c2eb0f94e06d16b3", "dhash": "e16dcf888cdcf6e4", "phash_int": -4.401407078729706e+18, "collected_at": "2026-05-22T04:30:19.001932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0006_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0006_IMG.JPG", "file_name": "100-0006_IMG.JPG", "file_stem": "100-0006_IMG", "file_ext": ".jpg", "file_size": 628475.0, "mtime": "2002-12-19T09:10:32+00:00", "mtime_ts": 1040289032.0, "ctime": "2002-12-19T09:10:32+00:00", "sha256_file": "99db053a63489a84ad3d37feeb6284da1b51adc51feb1cc2d1ef89b8d31149db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 10:10:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4632", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 10:10:33", "EXIF DateTimeDigitized": "2002:12:19 10:10:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "232", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d72a512f77d4352b542a369837b4f826804ea2b60c3bb78e4caf061831c97e6", "phash": "87eb1c9ce0e996a2", "dhash": "f06acdcdccdcf2f6", "phash_int": -8.652790798948395e+18, "collected_at": "2026-05-22T04:30:19.052396+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0005_IMG_2.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0005_IMG_2.JPG", "file_name": "100-0005_IMG_2.JPG", "file_stem": "100-0005_IMG_2", "file_ext": ".jpg", "file_size": 1865298.0, "mtime": "2002-12-23T11:47:46+00:00", "mtime_ts": 1040644066.0, "ctime": "2002-12-23T11:47:46+00:00", "sha256_file": "e78ba707c8c7ded7e8269564bfbe78df64d510cad6e1d9059685c1e43fbec12d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:23 12:47:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5956", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:23 12:47:47", "EXIF DateTimeDigitized": "2002:12:23 12:47:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08babbd1848eec891fce5973df934c07e95af3f4fd115809013dbca2a0acd981", "phash": "d4ea859da72035cd", "dhash": "8681958d2c3cb06c", "phash_int": -3.10452208095827e+18, "collected_at": "2026-05-22T04:30:19.081396+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0007_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0007_IMG.JPG", "file_name": "100-0007_IMG.JPG", "file_stem": "100-0007_IMG", "file_ext": ".jpg", "file_size": 670247.0, "mtime": "2002-12-19T09:10:36+00:00", "mtime_ts": 1040289036.0, "ctime": "2002-12-19T09:10:36+00:00", "sha256_file": "291c6f6e18847adce475c6361e20d8308b6c81486cf40981f28d79ea5d4f7cf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 10:10:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4828", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 10:10:38", "EXIF DateTimeDigitized": "2002:12:19 10:10:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9575b52c4639e3477a8ae76581c7f7b7b5d2769a5d0840d0710d6eba0fa8b563", "phash": "f8f021074bed76a8", "dhash": "9a9e1630f9ccd293", "phash_int": -5.0887044267052474e+17, "collected_at": "2026-05-22T04:30:19.136396+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0008_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0008_IMG.JPG", "file_name": "100-0008_IMG.JPG", "file_stem": "100-0008_IMG", "file_ext": ".jpg", "file_size": 1646828.0, "mtime": "2002-12-19T11:08:36+00:00", "mtime_ts": 1040296116.0, "ctime": "2002-12-19T11:08:36+00:00", "sha256_file": "2b34834357c80df2a3d4575c31dd4b6809c26ad69fb519964a55d6c93b824710", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:08:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3111", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 12:08:38", "EXIF DateTimeDigitized": "2002:12:19 12:08:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "364", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a26ffe038884bb1bb4bcf448d43f3680a95a86000adf239830be7a6ef720f510", "phash": "807e7f0880ff7f80", "dhash": "c0e060c8d8fb00d8", "phash_int": -9.187766515288539e+18, "collected_at": "2026-05-22T04:30:19.175594+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0009_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0009_IMG.JPG", "file_name": "100-0009_IMG.JPG", "file_stem": "100-0009_IMG", "file_ext": ".jpg", "file_size": 2477255.0, "mtime": "2003-01-04T10:18:14+00:00", "mtime_ts": 1041675494.0, "ctime": "2003-01-04T10:18:14+00:00", "sha256_file": "f5b42b2f715a8a514f7ef2759bc0ce97b3911910e6c56fbf648abd833191a431", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:08:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9796", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:19 12:08:45", "EXIF DateTimeDigitized": "2002:12:19 12:08:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "293def7f26234c825643faef08926788dac100b2a49d8a8a2cdc8e503d78e040", "phash": "c3d25af8343cde03", "dhash": "29c9e96ecac2c400", "phash_int": -4.336303469129573e+18, "collected_at": "2026-05-22T04:30:19.224767+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0010_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0010_IMG.JPG", "file_name": "100-0010_IMG.JPG", "file_stem": "100-0010_IMG", "file_ext": ".jpg", "file_size": 2482419.0, "mtime": "2003-01-04T10:18:22+00:00", "mtime_ts": 1041675502.0, "ctime": "2003-01-04T10:18:22+00:00", "sha256_file": "113afbf001223544aec6162c92e29fc979469bfe24b1405286fd9db64f77d73a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:08:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9210", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:19 12:08:52", "EXIF DateTimeDigitized": "2002:12:19 12:08:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e289df2c35ae995041240953120894918951db7921445d24cd83dce2ae5aece", "phash": "d9d943e63a32e60c", "dhash": "19daf23832c68400", "phash_int": -2.749091441435024e+18, "collected_at": "2026-05-22T04:30:19.274837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 2065141.0, "mtime": "2002-12-19T11:10:54+00:00", "mtime_ts": 1040296254.0, "ctime": "2002-12-19T11:10:54+00:00", "sha256_file": "4fedf10fddc794a63aead7c10df7a7dd7674456925dd16dc91dcd493373ba65e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:10:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8984", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 12:10:55", "EXIF DateTimeDigitized": "2002:12:19 12:10:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1023/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4092"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "258e510ba41e11298724b5c53a0af08f553ca2e8af4e3d5bd66cf3697c78e90c", "phash": "b44d4de4b9247b49", "dhash": "33212a2f8c0c8f1c", "phash_int": -5.454617928921744e+18, "collected_at": "2026-05-22T04:30:19.291839+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 1831798.0, "mtime": "2002-12-19T11:53:30+00:00", "mtime_ts": 1040298810.0, "ctime": "2002-12-19T11:53:30+00:00", "sha256_file": "f29b0d7cd6a771f48281e3b09634a470c2ff0e73eec25741e67dd04fe48b87b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:53:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4723", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 12:53:32", "EXIF DateTimeDigitized": "2002:12:19 12:53:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7094c1a308fe4266ba3bd9c35d05eb61eb9bf00e3a292a62e798df8800d5bddc", "phash": "878b587e17c168b5", "dhash": "fbfbf2ea6c01d09a", "phash_int": -8.679746558238824e+18, "collected_at": "2026-05-22T04:30:19.364842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 1734873.0, "mtime": "2002-12-19T11:53:18+00:00", "mtime_ts": 1040298798.0, "ctime": "2002-12-19T11:53:18+00:00", "sha256_file": "551b03169c3efafaba0321b40182956f7e171aed2d0af13ba0c44a71ba5a2cf9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:53:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4760", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 12:53:19", "EXIF DateTimeDigitized": "2002:12:19 12:53:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "309", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abe27aa71cd34ce185100ed2f84ab32c84ae70dd627c031229cac9006bb4fcfd", "phash": "c5af3a5165a49aca", "dhash": "425ae7a6c2f897f0", "phash_int": -4.2020758060413353e+18, "collected_at": "2026-05-22T04:30:19.376840+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 1635964.0, "mtime": "2002-12-19T14:04:30+00:00", "mtime_ts": 1040306670.0, "ctime": "2002-12-19T14:04:30+00:00", "sha256_file": "0e24bcb7eeead391a555ccc9c8fac5ee0afd1c312190bae030698fa63108ed0d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 15:04:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6027", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 15:04:31", "EXIF DateTimeDigitized": "2002:12:19 15:04:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "354/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "103", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2832"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ab12efe1833ddd1cf85844cb91db9358854173db1c1f18ff65ced76be0aef71", "phash": "b4ba9b4ff4300ba4", "dhash": "191c1c86a666e63c", "phash_int": -5.42385203351283e+18, "collected_at": "2026-05-22T04:30:19.493358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 1744871.0, "mtime": "2002-12-19T11:53:36+00:00", "mtime_ts": 1040298816.0, "ctime": "2002-12-19T11:53:36+00:00", "sha256_file": "8f67a200c9716ebc94cbd00fdc8dd42f8464f2e6352499e8482f1a42c206957d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 12:53:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4628", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 12:53:37", "EXIF DateTimeDigitized": "2002:12:19 12:53:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "351", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1812c127cd663a2bec33c460a80a1ac7c4f5df220181c5f1667c8da406738cae", "phash": "d5ba6515c8f730c8", "dhash": "d8e0e8c5b03e02e2", "phash_int": -3.046011053722358e+18, "collected_at": "2026-05-22T04:30:19.512359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 1732294.0, "mtime": "2002-12-19T14:09:26+00:00", "mtime_ts": 1040306966.0, "ctime": "2002-12-19T14:09:26+00:00", "sha256_file": "3ab6f57318ec4f4218d8690c2568ff937d50687305da6596158c8081067660ac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 15:09:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7458", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 15:09:27", "EXIF DateTimeDigitized": "2002:12:19 15:09:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "113/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2260"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7949acf748e527f08a13aa787767756d74b78d49d03162e6d06f40d8caf16ac8", "phash": "e04f2031f0bcce9f", "dhash": "97c4e1c4d4cd9487", "phash_int": -2.2835710871891602e+18, "collected_at": "2026-05-22T04:30:19.646561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 1731548.0, "mtime": "2002-12-19T14:09:40+00:00", "mtime_ts": 1040306980.0, "ctime": "2002-12-19T14:09:40+00:00", "sha256_file": "c533eb09b24ca7b592f8481e532edaebbde38c6bd02df5d9aebc9e7d47bc8064", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 15:09:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6113", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 15:09:42", "EXIF DateTimeDigitized": "2002:12:19 15:09:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2687/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2687"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d56b0c71b2ed7f6ea2c4f6ff1cebf87e434d25682376a1cab0494592b46d146d", "phash": "855aa44bdb2b4ae5", "dhash": "31948cd8d073cec6", "phash_int": -8.837570673054627e+18, "collected_at": "2026-05-22T04:30:19.666561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 1511789.0, "mtime": "2002-12-19T14:39:20+00:00", "mtime_ts": 1040308760.0, "ctime": "2002-12-19T14:39:20+00:00", "sha256_file": "7ebbc858f41d309b050389319df933abe5b6bfb5f46ae0473936d78e0a4614c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 15:39:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3796", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 15:39:21", "EXIF DateTimeDigitized": "2002:12:19 15:39:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "309", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "146366f5221d7349c6ada0a01ff4a8d11c5882e35a8ec811a625437dbf568ec0", "phash": "d5a2f25d0562789d", "dhash": "f0f8b1e07020c0f0", "phash_int": -3.0526111160675553e+18, "collected_at": "2026-05-22T04:30:19.776744+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 1461684.0, "mtime": "2002-12-19T14:39:24+00:00", "mtime_ts": 1040308764.0, "ctime": "2002-12-19T14:39:24+00:00", "sha256_file": "0e6e0b14389c27d0d514da64c4bf3ffd9a6e03a857e59243dca8b29758649b21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:19 15:39:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3912", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:19 15:39:26", "EXIF DateTimeDigitized": "2002:12:19 15:39:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "313", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4dd1063ebbde23bff9a75d8aa9df2268a9a2b6714e4b1e388d074d90227ee967", "phash": "c4abb95e00697f86", "dhash": "e0f063c0e06080f4", "phash_int": -4.2751196078731756e+18, "collected_at": "2026-05-22T04:30:19.800911+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 1291016.0, "mtime": "2002-12-20T10:20:20+00:00", "mtime_ts": 1040379620.0, "ctime": "2002-12-20T10:20:20+00:00", "sha256_file": "328f524a94a9b4ec9d668257c51b107b0c2454e8a7eb2047aa28c2b725f5110c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:20:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2986", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:20:22", "EXIF DateTimeDigitized": "2002:12:20 11:20:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "355", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0bd3c666c8e6edb4ac251f8860a5f4de0528b3946dc736b21063eb4e7951dc11", "phash": "d1d0f87d3746c0e8", "dhash": "5898f0e89ae040c0", "phash_int": -3.3278869079448125e+18, "collected_at": "2026-05-22T04:30:19.864290+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1919838.0, "mtime": "2002-12-20T10:54:46+00:00", "mtime_ts": 1040381686.0, "ctime": "2002-12-20T10:54:46+00:00", "sha256_file": "da84e0bd3458bb3052985056ca999b10029ddabd46c7d00f16597bb25746ea9f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:54:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5288", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:54:48", "EXIF DateTimeDigitized": "2002:12:20 11:54:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "315", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f6e72ae569fa65201fab4d765ec3cd4962eaf2245649743bccb3c8eae4ce6721", "phash": "c4d3dc4b61a2ce53", "dhash": "81008cd6c2a6b434", "phash_int": -4.2638222058710103e+18, "collected_at": "2026-05-22T04:30:19.902763+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 1890976.0, "mtime": "2002-12-20T10:54:50+00:00", "mtime_ts": 1040381690.0, "ctime": "2002-12-20T10:54:50+00:00", "sha256_file": "c36e64f8a27c95211e2c0e9773a5997f66cb34e500f4843e967c8a9b1e388c7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:54:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5371", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:54:52", "EXIF DateTimeDigitized": "2002:12:20 11:54:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cdea5cbafed4fdbab15d19e64b6f8c593b6bf11e3b452ecd77ce67aff5014fba", "phash": "87f4655c2f82956a", "dhash": "2405cee929784d43", "phash_int": -8.650177537663397e+18, "collected_at": "2026-05-22T04:30:20.010847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 1925808.0, "mtime": "2002-12-20T10:54:54+00:00", "mtime_ts": 1040381694.0, "ctime": "2002-12-20T10:54:54+00:00", "sha256_file": "5c9ba99bc57ab296fbcdaaa73e1382aa1d23435a2c3d0aa90bb07137bbc01797", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:54:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5332", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:54:56", "EXIF DateTimeDigitized": "2002:12:20 11:54:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7567e26cc493a02f76cf1a5b461b7c3d3bce80ee3d3a2bdb33b7a74b375b8c5", "phash": "91b74f726899e41a", "dhash": "6858fcda9d8c7ab3", "phash_int": -7.946795664672169e+18, "collected_at": "2026-05-22T04:30:20.027847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 1879827.0, "mtime": "2002-12-20T10:55:00+00:00", "mtime_ts": 1040381700.0, "ctime": "2002-12-20T10:55:00+00:00", "sha256_file": "b990bdd114cc00b3d6bb9b3ce1ea43be1c7d12fc4a1566f4779f148aebdcc2c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:55:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5016", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:55:01", "EXIF DateTimeDigitized": "2002:12:20 11:55:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91cdd16f99e2965fea04a18e5cb3c5aa9fac9c1c965840db171d9ad1d608a941", "phash": "c182714378eddf31", "dhash": "83cdd8a39b608a2a", "phash_int": -4.502912142811472e+18, "collected_at": "2026-05-22T04:30:20.157075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 1624392.0, "mtime": "2002-12-20T10:55:04+00:00", "mtime_ts": 1040381704.0, "ctime": "2002-12-20T10:55:04+00:00", "sha256_file": "4fe5a6127e288b8ea32457357adf20dd9fbb389bd8bec1526dd51c86f65e998f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:55:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5934", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:55:05", "EXIF DateTimeDigitized": "2002:12:20 11:55:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c47be4ff07bab5a482ed3d7160f9ddbca040e60278cede56c3022bf07523db1a", "phash": "e6d9c42d265bde10", "dhash": "8391282d4e0606a6", "phash_int": -1.8122016768437868e+18, "collected_at": "2026-05-22T04:30:20.160086+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 1450030.0, "mtime": "2002-12-20T10:55:30+00:00", "mtime_ts": 1040381730.0, "ctime": "2002-12-20T10:55:30+00:00", "sha256_file": "3a242ccc400ec06562a17a4e73bb88e2fc3cf065f3788cddd0fabc83719c6dc9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:55:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5808", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:55:31", "EXIF DateTimeDigitized": "2002:12:20 11:55:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c304084176118db04bfd581eb8c4624352d8bbffbd32b378dea72bb14e48202", "phash": "c99cfa1947788ec2", "dhash": "303034c6c2521148", "phash_int": -3.9189825892389647e+18, "collected_at": "2026-05-22T04:30:20.267642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 1792373.0, "mtime": "2002-12-20T10:55:40+00:00", "mtime_ts": 1040381740.0, "ctime": "2002-12-20T10:55:40+00:00", "sha256_file": "0945f4ff15352d66f4a1516bda13ec7aaef45a13b5c0a814c50c045ee89b0ced", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 11:55:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5572", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 11:55:42", "EXIF DateTimeDigitized": "2002:12:20 11:55:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "377a1b0fd12d38740d3de7a4d42e428c0d46ab0461d03ee1e97f179b7f95f685", "phash": "8dc9932c4e11ef5c", "dhash": "c8e018f23737be6c", "phash_int": -8.229885025545228e+18, "collected_at": "2026-05-22T04:30:20.271639+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 1729809.0, "mtime": "2002-12-20T11:46:18+00:00", "mtime_ts": 1040384778.0, "ctime": "2002-12-20T11:46:18+00:00", "sha256_file": "0c06b3d49e65f879cff7f9bbaf737a883114fa86e3177b513e146b98683af7a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 12:46:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7118", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 12:46:20", "EXIF DateTimeDigitized": "2002:12:20 12:46:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "189", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "625e1a42c8f9bddcefd523b5b0dad954f403f42d64d358cbe305afec96ccef71", "phash": "aca2d9c9b9fcc0e0", "dhash": "3a66666e7f733636", "phash_int": -6.006999492526817e+18, "collected_at": "2026-05-22T04:30:20.394012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 1912280.0, "mtime": "2002-12-20T11:46:08+00:00", "mtime_ts": 1040384768.0, "ctime": "2002-12-20T11:46:08+00:00", "sha256_file": "3a02f8c47e179268bc1413578bbac3cec06a439189807791fed0a1382066e7ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 12:46:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7452", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 12:46:09", "EXIF DateTimeDigitized": "2002:12:20 12:46:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "708b47d392041044a90be21f14ee634314ca33416426989a09d2debd11080469", "phash": "9df695c919d9c106", "dhash": "3a2c2c3979707476", "phash_int": -7.064294274529378e+18, "collected_at": "2026-05-22T04:30:20.402011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1880623.0, "mtime": "2002-12-20T12:05:38+00:00", "mtime_ts": 1040385938.0, "ctime": "2002-12-20T12:05:38+00:00", "sha256_file": "f13ff13365c4b351971551a8c7b9641ee375d79e5a841904f8ada81347b39a81", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 13:05:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5810", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 13:05:40", "EXIF DateTimeDigitized": "2002:12:20 13:05:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6790f16119112c6afea10eb0276d9cad10b5618872a7f23666695e4f9a9531ac", "phash": "9622e85732d49f69", "dhash": "ccc1f8fc5c78a0b8", "phash_int": -7.628279357599605e+18, "collected_at": "2026-05-22T04:30:20.495780+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 1873037.0, "mtime": "2002-12-20T12:05:46+00:00", "mtime_ts": 1040385946.0, "ctime": "2002-12-20T12:05:46+00:00", "sha256_file": "604b170dd10d02863d2329dd0cbc45c6b8f22bbf6a3e018109623469d811d77d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 13:05:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5817", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 13:05:47", "EXIF DateTimeDigitized": "2002:12:20 13:05:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7e694270c8aeb81fae048239c5046eca1b19162510635ac97c9f6917e645464", "phash": "9026efc97d649615", "dhash": "c7c8fc3c1cd89020", "phash_int": -8.059490834461714e+18, "collected_at": "2026-05-22T04:30:20.507857+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 1885239.0, "mtime": "2002-12-20T13:07:00+00:00", "mtime_ts": 1040389620.0, "ctime": "2002-12-20T13:07:00+00:00", "sha256_file": "5e6764bc7e7d3477107bf9c232a081ee6917c6554f37b8260a8afd027ff91458", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 14:07:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7782", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 14:07:01", "EXIF DateTimeDigitized": "2002:12:20 14:07:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "daf12594e19ba3660c9fe853a9ddf3b135e6314cb540c9ab3a97e699c912338f", "phash": "a5a70f4d43e29e52", "dhash": "670e0d9e92b2f271", "phash_int": -6.510217911814939e+18, "collected_at": "2026-05-22T04:30:20.592908+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 1702963.0, "mtime": "2002-12-20T13:07:10+00:00", "mtime_ts": 1040389630.0, "ctime": "2002-12-20T13:07:10+00:00", "sha256_file": "440678b32b83ab2361898980b621e39ff2ac6b5340ddb1352268f3afa92d4108", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 14:07:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7578", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 14:07:12", "EXIF DateTimeDigitized": "2002:12:20 14:07:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "343", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72663c30089c2c72e2db9718d479c6cc063b75b31d732b426bd98b277bd7ce58", "phash": "b3b4a6171b523ab8", "dhash": "1c2e9999d1c8e9ca", "phash_int": -5.4975866269397e+18, "collected_at": "2026-05-22T04:30:20.599907+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0035_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0035_IMG.JPG", "file_name": "100-0035_IMG.JPG", "file_stem": "100-0035_IMG", "file_ext": ".jpg", "file_size": 1321143.0, "mtime": "2002-12-21T10:22:50+00:00", "mtime_ts": 1040466170.0, "ctime": "2002-12-21T10:22:50+00:00", "sha256_file": "1d7aabaea7caadd6fa38c308c1c81dbd7a6d4551fba15e8b569c594ff7a53ff2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 11:22:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2767", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 11:22:52", "EXIF DateTimeDigitized": "2002:12:21 11:22:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae1ca3799d9fbd2270990415b90d32bcaf71445440580b33a2b95f2c6da5a633", "phash": "95352da8a6969717", "dhash": "5edaeeece0f0d0e0", "phash_int": -7.695194185919982e+18, "collected_at": "2026-05-22T04:30:20.714081+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 1557464.0, "mtime": "2002-12-20T16:15:36+00:00", "mtime_ts": 1040400936.0, "ctime": "2002-12-20T16:15:36+00:00", "sha256_file": "4ca89e8445c60ebd2410b9f470f7f1e47ad4fdad1acdb2d0e4bb3fbd7940eaf7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:20 17:15:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5521", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:20 17:15:38", "EXIF DateTimeDigitized": "2002:12:20 17:15:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1707c15cc273faf29cc89097ff36bdcf2d19ea6d385ea536821a6250de182970", "phash": "d8f1259e10999b9d", "dhash": "12869a98b829a6a6", "phash_int": -2.8144269313162865e+18, "collected_at": "2026-05-22T04:30:20.736164+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0036_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0036_IMG.JPG", "file_name": "100-0036_IMG.JPG", "file_stem": "100-0036_IMG", "file_ext": ".jpg", "file_size": 1338271.0, "mtime": "2002-12-21T10:22:56+00:00", "mtime_ts": 1040466176.0, "ctime": "2002-12-21T10:22:56+00:00", "sha256_file": "d503954e1488d09a53cc3843290c1c55fa2568f4ee03ef7a0146f4fc1985ce49", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 11:22:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3095", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 11:22:57", "EXIF DateTimeDigitized": "2002:12:21 11:22:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ed8b78e5ff4b99dd2fb259b63857986b3237787fb766cd19dae9b47dd00f575", "phash": "d6141c27f7d59492", "dhash": "6cbcfcc8c8c8c0f0", "phash_int": -3.0207584920714885e+18, "collected_at": "2026-05-22T04:30:20.806174+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0037_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0037_IMG.JPG", "file_name": "100-0037_IMG.JPG", "file_stem": "100-0037_IMG", "file_ext": ".jpg", "file_size": 2630399.0, "mtime": "2003-01-04T10:19:06+00:00", "mtime_ts": 1041675546.0, "ctime": "2003-01-04T10:19:06+00:00", "sha256_file": "e0ac778bf7feda22e2dc14b8b5cabaccc46716ba9d793a14498d3809a2e7031b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 11:23:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6804", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 11:23:04", "EXIF DateTimeDigitized": "2002:12:21 11:23:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "505de43760fc8ad6649b91971ab306732ffcea1c8c2e4519b510269f7458d757", "phash": "f75d1e22a161d2e2", "dhash": "d42108868ecccdcc", "phash_int": -6.223080394219963e+17, "collected_at": "2026-05-22T04:30:20.835168+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0038_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0038_IMG.JPG", "file_name": "100-0038_IMG.JPG", "file_stem": "100-0038_IMG", "file_ext": ".jpg", "file_size": 1182314.0, "mtime": "2002-12-21T11:11:58+00:00", "mtime_ts": 1040469118.0, "ctime": "2002-12-21T11:11:58+00:00", "sha256_file": "5991cafebc53e79abe9f5b14830edf51733d31409539ca88b0a533bcf41d8e9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:12:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2320", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:12:00", "EXIF DateTimeDigitized": "2002:12:21 12:12:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "287", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be352d94a0d863c2f324c16fa8326098195cbcc2cd1d923b7befbbdbbe1273dc", "phash": "c74ff0b0a2474d4d", "dhash": "804050c8c8f0e0e0", "phash_int": -4.084781695574258e+18, "collected_at": "2026-05-22T04:30:20.916291+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0039_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0039_IMG.JPG", "file_name": "100-0039_IMG.JPG", "file_stem": "100-0039_IMG", "file_ext": ".jpg", "file_size": 1205786.0, "mtime": "2002-12-21T11:12:02+00:00", "mtime_ts": 1040469122.0, "ctime": "2002-12-21T11:12:02+00:00", "sha256_file": "9344b87fd5c2e3946074eb50c5c5a77ef4c2f4d7b94fbca55bbf95c95d911c55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:12:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2597", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:12:04", "EXIF DateTimeDigitized": "2002:12:21 12:12:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bb944182bb5d22dcd02b913de8f2c66d6dd9ba945ce627b4cdb7001a729e12a", "phash": "c64999a4b6db5163", "dhash": "e042c0ecece4f0e0", "phash_int": -4.1586238481784294e+18, "collected_at": "2026-05-22T04:30:20.950293+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0040_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0040_IMG.JPG", "file_name": "100-0040_IMG.JPG", "file_stem": "100-0040_IMG", "file_ext": ".jpg", "file_size": 1319560.0, "mtime": "2002-12-21T11:12:10+00:00", "mtime_ts": 1040469130.0, "ctime": "2002-12-21T11:12:10+00:00", "sha256_file": "373bba66fe787fc7061a5cae46a7de76db22a721541e8933a601d3e8470f179e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:12:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2529", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:12:12", "EXIF DateTimeDigitized": "2002:12:21 12:12:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87d1bb6445535202b6f61b7979da933b0643e443332f066b2e5915746d481273", "phash": "d52af08a5faab04b", "dhash": "e0e0c06060e4e0e0", "phash_int": -3.086390117507879e+18, "collected_at": "2026-05-22T04:30:21.076660+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 1393665.0, "mtime": "2002-12-21T11:12:20+00:00", "mtime_ts": 1040469140.0, "ctime": "2002-12-21T11:12:20+00:00", "sha256_file": "66fc6de67288e133d59590a4fdca8044d72d290839ddc89e3667b81941cafeb2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:12:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2746", "EXIF ExposureTime": "1/500", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:12:22", "EXIF DateTimeDigitized": "2002:12:21 12:12:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "124/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4960"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4c696d7e40268e1a07462f68ec8f880ac3016de5b67d449baa407cd41f97617", "phash": "8076ff991777a081", "dhash": "40a081ece2b3e0e0", "phash_int": -9.189876956614124e+18, "collected_at": "2026-05-22T04:30:21.100827+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 1809077.0, "mtime": "2002-12-21T11:56:56+00:00", "mtime_ts": 1040471816.0, "ctime": "2002-12-21T11:56:56+00:00", "sha256_file": "8f1adb8036c549a0046d35be4533a12b0e42ffb9fcd6ee6963eb93c85f037e5d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:56:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6722", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:56:58", "EXIF DateTimeDigitized": "2002:12:21 12:56:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "826ab33591802225a3164b0196aef110e7697da8b7eabc03d77da2765287ce83", "phash": "f0021cfbcdc66339", "dhash": "bdc5cdc682481416", "phash_int": -1.1523266868387259e+18, "collected_at": "2026-05-22T04:30:21.156361+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 1887166.0, "mtime": "2002-12-21T11:57:02+00:00", "mtime_ts": 1040471822.0, "ctime": "2002-12-21T11:57:02+00:00", "sha256_file": "3727efcb128c4baf4a5b7861cd0e783cec2744deff72214ddfe1e6331cd132ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:57:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:57:04", "EXIF DateTimeDigitized": "2002:12:21 12:57:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "729fd48ebe50c745276dbd907ac8965e40d8ecb668c10461a7aacc68002eb446", "phash": "fb0d0f5c83792c86", "dhash": "72523a1a0924286b", "phash_int": -3.5661190547523674e+17, "collected_at": "2026-05-22T04:30:21.216362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 1716831.0, "mtime": "2002-12-21T11:57:20+00:00", "mtime_ts": 1040471840.0, "ctime": "2002-12-21T11:57:20+00:00", "sha256_file": "d587837744f00a9897287c655e34e8898e7927a6912029b336c7722526e19f04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:57:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5752", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 12:57:22", "EXIF DateTimeDigitized": "2002:12:21 12:57:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a251d77c623d89ffa344754dcd40fd8c7fd4ae64ad29684153cddfc1f53b90b0", "phash": "f00e1c629c6dc3af", "dhash": "24a40410448c92b0", "phash_int": -1.1489496450760859e+18, "collected_at": "2026-05-22T04:30:21.275365+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 2725474.0, "mtime": "2003-01-04T10:21:08+00:00", "mtime_ts": 1041675668.0, "ctime": "2003-01-04T10:21:08+00:00", "sha256_file": "a1ac443a99dcbf927e81f793b51f758ec311f6b0edfeae7a84ff1156e31b5310", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 12:57:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7376", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 12:57:47", "EXIF DateTimeDigitized": "2002:12:21 12:57:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dbd72c01f6c806d1bb9a0fcacfd05be7ec3dae1545c13e487d7a9742409ce5f4", "phash": "c82f78f6252f5e80", "dhash": "e1f171f0c8a0a0f0", "phash_int": -4.0218629436374144e+18, "collected_at": "2026-05-22T04:30:21.345631+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 1458287.0, "mtime": "2002-12-21T12:00:26+00:00", "mtime_ts": 1040472026.0, "ctime": "2002-12-21T12:00:26+00:00", "sha256_file": "a33bf7b24b069c1c41da084d648cc37663ccf1030923b1c1826d7b9276e9433d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:00:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6073", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:00:28", "EXIF DateTimeDigitized": "2002:12:21 13:00:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87cddd23084c428c7a61dc6496b60870235806ab3550f92c44a8bc2606ffd538", "phash": "c1051f62ffcc1e43", "dhash": "d2d2c282808c8298", "phash_int": -4.5381865394470835e+18, "collected_at": "2026-05-22T04:30:21.411970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 1465083.0, "mtime": "2002-12-21T12:00:42+00:00", "mtime_ts": 1040472042.0, "ctime": "2002-12-21T12:00:42+00:00", "sha256_file": "43e0476b36d8d465e3b9c2843f857b01259db001665131bab8fe1ce791f44ff7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:00:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:00:44", "EXIF DateTimeDigitized": "2002:12:21 13:00:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba98ae298cf9c1920439bda8e527f0cdbbb3eea7e0d3d6a9bafae5bff01e54e0", "phash": "dcd6434f9f5ac808", "dhash": "60cc943036321513", "phash_int": -2.533763731094321e+18, "collected_at": "2026-05-22T04:30:21.431971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 1490293.0, "mtime": "2002-12-21T12:00:50+00:00", "mtime_ts": 1040472050.0, "ctime": "2002-12-21T12:00:50+00:00", "sha256_file": "5f83ada8da0a812e2137bda6fa7967833d97a423d4307695bb6690c5c4a3b97a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:00:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6016", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:00:51", "EXIF DateTimeDigitized": "2002:12:21 13:00:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65530", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7287caa26d2c5c2c1806f911a9a4dafcc484c45d4a42d3ddb29f5a8e8f07bceb", "phash": "dcc343438f4edc4c", "dhash": "408c242424342636", "phash_int": -2.539111807460648e+18, "collected_at": "2026-05-22T04:30:21.531387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 1385200.0, "mtime": "2002-12-21T12:01:12+00:00", "mtime_ts": 1040472072.0, "ctime": "2002-12-21T12:01:12+00:00", "sha256_file": "669fa5d22a1f642b4d38bdff61a47ca15ed4cbb085e07c12d3c52cc1f6504a95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:01:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5403", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:01:14", "EXIF DateTimeDigitized": "2002:12:21 13:01:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "39/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1560"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5ec6eb79036839164e8dcc10634edd80b771030a865d153359fcc86c5196ea0", "phash": "d90d24f39ad69b88", "dhash": "58b2303939598989", "phash_int": -2.806546364088542e+18, "collected_at": "2026-05-22T04:30:21.552572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 2559657.0, "mtime": "2003-01-04T10:20:38+00:00", "mtime_ts": 1041675638.0, "ctime": "2003-01-04T10:20:38+00:00", "sha256_file": "0fe8c52e2ba91eb63bfd94ef4b031f7dd4c3f28fa49c8a13c0cfbb86ed105f41", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:22:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9302", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 13:22:19", "EXIF DateTimeDigitized": "2002:12:21 13:22:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1786f87206e1f54985b1b8fab9960096d9891237b86fc5e6df27c49b1d18298c", "phash": "f549076c90b615cf", "dhash": "e243481e92266c4c", "phash_int": -7.720776982516147e+17, "collected_at": "2026-05-22T04:30:21.671666+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 2675138.0, "mtime": "2003-01-04T10:20:30+00:00", "mtime_ts": 1041675630.0, "ctime": "2003-01-04T10:20:30+00:00", "sha256_file": "5bc65d0a39fa4084d78638d57073b701e0fabb3aefbac7b15ba697220f86fe23", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:22:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9702", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 13:22:11", "EXIF DateTimeDigitized": "2002:12:21 13:22:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ca957871dd47f26387e198e6d25e99485b3ebcd00ccb38c100f3fa3fade4e8a", "phash": "f40b0669c0beb59e", "dhash": "e3c21c169216aca4", "phash_int": -8.615878524362615e+17, "collected_at": "2026-05-22T04:30:21.691667+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 1356920.0, "mtime": "2002-12-21T12:26:08+00:00", "mtime_ts": 1040473568.0, "ctime": "2002-12-21T12:26:08+00:00", "sha256_file": "6d39960478e84c8d8b43dc7146ab1802ff7f584aa3007ea9c33f9af889a9c45a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5603", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:09", "EXIF DateTimeDigitized": "2002:12:21 13:26:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 271, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c09f807c1dbdfdfdf3feea519d50ac512a0eefc61fcf43ed36b2d5a6b7f406de", "phash": "814a6f1fd44c74bc", "dhash": "61c8d4f0fcd8f2ce", "phash_int": -9.13036311204381e+18, "collected_at": "2026-05-22T04:30:21.849858+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 1515877.0, "mtime": "2002-12-21T12:26:16+00:00", "mtime_ts": 1040473576.0, "ctime": "2002-12-21T12:26:16+00:00", "sha256_file": "cc7b0cc99b0e6936d897964c9fa3468d61e4e1eb6207b7355adf34501a6b1967", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5820", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:17", "EXIF DateTimeDigitized": "2002:12:21 13:26:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "097a2421f5eda9d4caf8216adbcd6be3d0f127d31204f8495957ee7973724099", "phash": "c145122eb91b6ff8", "dhash": "c5c4d292506c989c", "phash_int": -4.520186659113046e+18, "collected_at": "2026-05-22T04:30:21.889027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 1515047.0, "mtime": "2002-12-21T12:26:22+00:00", "mtime_ts": 1040473582.0, "ctime": "2002-12-21T12:26:22+00:00", "sha256_file": "718f1b29952ecb55d8ac263d32013de7e1c0eebef6a6a21e23a6cfa040e8c0bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5832", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:23", "EXIF DateTimeDigitized": "2002:12:21 13:26:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61488a4d5d23f7a1cfea1c2d5181214d91d333eaa4a129ff4db3f7da7853f660", "phash": "c16136669963de78", "dhash": "c2c6d2d2b068cc38", "phash_int": -4.5122655373605033e+18, "collected_at": "2026-05-22T04:30:21.986972+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 1431454.0, "mtime": "2002-12-21T12:26:28+00:00", "mtime_ts": 1040473588.0, "ctime": "2002-12-21T12:26:28+00:00", "sha256_file": "c914ebb56919a09fdf88f4c41db3d4f60c0a072a3c7f3c99c46e7928eeaf79a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6010", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:30", "EXIF DateTimeDigitized": "2002:12:21 13:26:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7996aa14174f2c93c04018449db942b357242204e0a308a8d14c53dc97012e69", "phash": "c441166bdb67f870", "dhash": "c1e4a6c29242ecac", "phash_int": -4.305135116291148e+18, "collected_at": "2026-05-22T04:30:22.011970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 1340404.0, "mtime": "2002-12-21T12:26:34+00:00", "mtime_ts": 1040473594.0, "ctime": "2002-12-21T12:26:34+00:00", "sha256_file": "9e7041c767c1c1556715f750cd077d0abb3c86217b085e94fb0fc873f566c852", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4013", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:35", "EXIF DateTimeDigitized": "2002:12:21 13:26:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c187d8eeacfc47997af7f4730ff9d68b04979cc73b1236c76a9e8a1a8c997603", "phash": "c83c77f31bdcc009", "dhash": "8c33b333f3c4e0c0", "phash_int": -4.018204881493115e+18, "collected_at": "2026-05-22T04:30:22.109483+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 1305954.0, "mtime": "2002-12-21T12:26:40+00:00", "mtime_ts": 1040473600.0, "ctime": "2002-12-21T12:26:40+00:00", "sha256_file": "d7663d114944e00c620d8b6ea64964bbec91bbca6fe1b62203455e6d7f5d9241", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4106", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:41", "EXIF DateTimeDigitized": "2002:12:21 13:26:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88427d691e53d8a184ba5b62f75a08949ced96742570b31e307dfcc63ffd3e80", "phash": "c83c33f31bddc481", "dhash": "c933b333f1c4c2c0", "phash_int": -4.018279648283737e+18, "collected_at": "2026-05-22T04:30:22.114484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 1390465.0, "mtime": "2002-12-21T12:27:18+00:00", "mtime_ts": 1040473638.0, "ctime": "2002-12-21T12:27:18+00:00", "sha256_file": "dcfa3edde937e263fa3052be3c82796e2fcf94426b190d0c8a4248fa3a623a45", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:27:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6022", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:27:20", "EXIF DateTimeDigitized": "2002:12:21 13:27:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a18f20a845e17d2f75913f5430721682386a21d5cac2d605c6ccab2faaa59745", "phash": "cf3278a30ccb639c", "dhash": "99b8c960e64b7372", "phash_int": -3.5166157173332777e+18, "collected_at": "2026-05-22T04:30:22.233496+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 1455034.0, "mtime": "2002-12-21T12:26:46+00:00", "mtime_ts": 1040473606.0, "ctime": "2002-12-21T12:26:46+00:00", "sha256_file": "8943acc418a8865acb60642d39e2abdf3709de32652ff026d64a479d032bec1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:26:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5910", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:26:47", "EXIF DateTimeDigitized": "2002:12:21 13:26:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb6b0e4dfb7f6b41fbafe654cf28c52f299649119ae729d72ade52f3d0ffbd40", "phash": "d97c2634813ec95e", "dhash": "6e22339292122c53", "phash_int": -2.7753012634185375e+18, "collected_at": "2026-05-22T04:30:22.241489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 1439412.0, "mtime": "2002-12-21T12:27:30+00:00", "mtime_ts": 1040473650.0, "ctime": "2002-12-21T12:27:30+00:00", "sha256_file": "6af63c15d732e7bbfea8aec42a25089fa80bbf40f53e2bb629ec0ac8ad8d8ee9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:27:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5368", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:27:32", "EXIF DateTimeDigitized": "2002:12:21 13:27:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "efe052d9231ae1676826120a4347ba9ab0e5422094ae4d2c7416ba07fc4183aa", "phash": "9b63d62b75842751", "dhash": "9c98d8d85879f0b0", "phash_int": -7.249715492992834e+18, "collected_at": "2026-05-22T04:30:22.385559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 1452490.0, "mtime": "2002-12-21T12:27:24+00:00", "mtime_ts": 1040473644.0, "ctime": "2002-12-21T12:27:24+00:00", "sha256_file": "9f040cc29b1c30f3ae87c8af0ff947a8cc032f2f9adb030d7833e1f62e9d62f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:27:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5726", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:27:25", "EXIF DateTimeDigitized": "2002:12:21 13:27:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abf28cc93eabea9e3b9d1150168a90ccd017ee0bdab33404793ea7914bff9a1b", "phash": "9a26719b2d764699", "dhash": "c898e866f3f9f9f0", "phash_int": -7.339053631457049e+18, "collected_at": "2026-05-22T04:30:22.392560+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 1377194.0, "mtime": "2002-12-21T12:27:36+00:00", "mtime_ts": 1040473656.0, "ctime": "2002-12-21T12:27:36+00:00", "sha256_file": "96927eb9e6bc2834ef6bc2d2fd0b9726214d52283039e293589dae99ea2cb548", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:27:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5366", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:27:38", "EXIF DateTimeDigitized": "2002:12:21 13:27:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "29", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2afc2fa9e6019c3aace5cb0c037452ae987aa6f2ea9301b3cc917b70dcbb520f", "phash": "9a63f60b51c42773", "dhash": "9898ccf87879b0b8", "phash_int": -7.321738040697412e+18, "collected_at": "2026-05-22T04:30:22.502274+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 2390127.0, "mtime": "2003-01-04T10:21:28+00:00", "mtime_ts": 1041675688.0, "ctime": "2003-01-04T10:21:28+00:00", "sha256_file": "6573872b7ad60a055dd85a2e3d3e827998646d94dae98b85df75904f3d920917", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:27:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "7553", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:12:21 13:27:43", "EXIF DateTimeDigitized": "2002:12:21 13:27:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c92f3fd9399baf56c596ac33988a0c6faa14ed7eefe5c104698a1437d2379677", "phash": "8b38f38a6c92e91e", "dhash": "38385874f2f3f8f0", "phash_int": -8.414708127889168e+18, "collected_at": "2026-05-22T04:30:22.538280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 1676072.0, "mtime": "2002-12-21T12:31:14+00:00", "mtime_ts": 1040473874.0, "ctime": "2002-12-21T12:31:14+00:00", "sha256_file": "30f5e080c50fb89d6d9ce5b8f5aacacf8b9824d229c50c2d13bbd8b6826a382e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:31:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6776", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:31:15", "EXIF DateTimeDigitized": "2002:12:21 13:31:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a55efc40d7cfb5c8a816368220524e82620896ed01879178d990312b3c473f4", "phash": "9c2967e2a20f72b3", "dhash": "e7b3b8f3bdb16266", "phash_int": -7.194104706668465e+18, "collected_at": "2026-05-22T04:30:22.608401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 1874404.0, "mtime": "2002-12-21T12:31:06+00:00", "mtime_ts": 1040473866.0, "ctime": "2002-12-21T12:31:06+00:00", "sha256_file": "6b00f66a92e794d19bac7c2eb6e1f66a3160ab9bc2412a8d82e7dc5a71f34042", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:31:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6628", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:31:08", "EXIF DateTimeDigitized": "2002:12:21 13:31:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86e77414368bdbb26d0fc1de60953e9d08fb03cd4fc24e8e583369e0747f4505", "phash": "9f6176e24654509f", "dhash": "437371717bd17074", "phash_int": -6.962152834723459e+18, "collected_at": "2026-05-22T04:30:22.620446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 1904224.0, "mtime": "2002-12-21T12:31:22+00:00", "mtime_ts": 1040473882.0, "ctime": "2002-12-21T12:31:22+00:00", "sha256_file": "c467633e5ca93b54ca891d348f1113da8e2acbfc1d934b907db0d910b2002f79", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:31:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7307", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:31:24", "EXIF DateTimeDigitized": "2002:12:21 13:31:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0288ae8c556c979ad31389abafe431ba563a1540862e48df433e82ffd73439e", "phash": "9f327ec2286f6164", "dhash": "7d7d7451f5707534", "phash_int": -6.975373500476334e+18, "collected_at": "2026-05-22T04:30:22.772016+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Flachau\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 1682666.0, "mtime": "2002-12-21T12:31:32+00:00", "mtime_ts": 1040473892.0, "ctime": "2002-12-21T12:31:32+00:00", "sha256_file": "bc487e0a2440c028c2dbd03e5346ba1dd3896f0c0da9de12c4ff65a4ba983e47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:12:21 13:31:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6968", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:12:21 13:31:33", "EXIF DateTimeDigitized": "2002:12:21 13:31:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70a66fd9d86729d7bab2e79391293023db725daf67c636cb6077ad3126dfc505", "phash": "88297be3865c566d", "dhash": "f3d3b4f4f4e83bb0", "phash_int": -8.635234593364224e+18, "collected_at": "2026-05-22T04:30:22.776016+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000489.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000489.JPG", "file_name": "IM000489.JPG", "file_stem": "IM000489", "file_ext": ".jpg", "file_size": 845174.0, "mtime": "2002-05-10T07:57:30+00:00", "mtime_ts": 1021017450.0, "ctime": "2002-05-10T07:57:30+00:00", "sha256_file": "64aca53434132e0d46274021ae3063623cdea5a763045af3adc22a1af9bf6126", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "31/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 20:16:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "12/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "191/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1993/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1280"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1280.0, "megapixels": 2.05, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af4700dc24495ffdf6cbd24d4ada78b651b5067c0b1e7fbe7f5381a45c0202b4", "phash": "e44a02e267becb35", "dhash": "a1a3323686841646", "phash_int": -1.9967803133589722e+18, "collected_at": "2026-05-22T04:30:22.863020+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000490.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000490.JPG", "file_name": "IM000490.JPG", "file_stem": "IM000490", "file_ext": ".jpg", "file_size": 739645.0, "mtime": "2002-05-10T07:57:30+00:00", "mtime_ts": 1021017450.0, "ctime": "2002-05-10T07:57:30+00:00", "sha256_file": "3c4c9ace6b843bd72a261dab7b771c96750267dfcf34c07431e3dee13238b94e", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "31/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 20:16:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "12/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "403/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1993/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1280"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1280.0, "megapixels": 2.05, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04da9925ab7afe053b90634e0cdd675fda1db1242fdc2deaba80cca17130ee16", "phash": "d27dc049b2d62c3d", "dhash": "9990c2d878e1c4d5", "phash_int": -3.279253530890327e+18, "collected_at": "2026-05-22T04:30:22.865019+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000492.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000492.JPG", "file_name": "IM000492.JPG", "file_stem": "IM000492", "file_ext": ".jpg", "file_size": 931254.0, "mtime": "2002-05-10T07:57:32+00:00", "mtime_ts": 1021017452.0, "ctime": "2002-05-10T07:57:32+00:00", "sha256_file": "d80cd6c2181acb9c47d1e07d83567a377ac0c3d392870d2c427dc3ee109fc26b", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "31/10", "EXIF ISOSpeedRatings": "70", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 20:29:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "12/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "81/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2081/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1280"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1280.0, "megapixels": 2.05, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bab27c7bd84d73d14400f88fc3bd45042e516ae3163212d0b6518211e456bf3", "phash": "9c2323ee8e39689d", "dhash": "cddcd2702424323c", "phash_int": -7.195868272112605e+18, "collected_at": "2026-05-22T04:30:22.917844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000491.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000491.JPG", "file_name": "IM000491.JPG", "file_stem": "IM000491", "file_ext": ".jpg", "file_size": 1008472.0, "mtime": "2002-05-10T07:57:32+00:00", "mtime_ts": 1021017452.0, "ctime": "2002-05-10T07:57:32+00:00", "sha256_file": "4e48f073eaac5c046b11114097ad50af7c84ea17b69faa5edf1dce076dc6b7ad", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "88", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 20:17:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "12/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1280"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1280.0, "megapixels": 2.05, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a672db467b7e598d8c3a9576c85b673db42a1f4f98aef925edb8e5374cbd7ed", "phash": "8631cdfa56698e32", "dhash": "d4e0fc68a9a963e1", "phash_int": -8.777007723693109e+18, "collected_at": "2026-05-22T04:30:22.931847+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000493.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000493.JPG", "file_name": "IM000493.JPG", "file_stem": "IM000493", "file_ext": ".jpg", "file_size": 136098.0, "mtime": "2002-05-10T07:57:32+00:00", "mtime_ts": 1021017452.0, "ctime": "2002-05-10T07:57:32+00:00", "sha256_file": "3a4a50299c8dd1f53e68dbbee608364753de8ae89ea5cf343a3859d53374118f", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "13/5", "EXIF ISOSpeedRatings": "80", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 20:33:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "372/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1201/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac8841fa1c85fa4ffc9fcfada1937f4e9e53b7621c097b9af956b34df05e06ee", "phash": "d6682bbf40392bcc", "dhash": "44c481d4a46c5ccc", "phash_int": -2.9970974515988285e+18, "collected_at": "2026-05-22T04:30:22.936846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000496.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000496.JPG", "file_name": "IM000496.JPG", "file_stem": "IM000496", "file_ext": ".jpg", "file_size": 149899.0, "mtime": "2002-05-10T07:57:02+00:00", "mtime_ts": 1021017422.0, "ctime": "2002-05-10T07:57:02+00:00", "sha256_file": "63c0a39188eb97ba4183cd91f12452605774ff90ffd72c11fae8767a50d48d8d", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:01:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2917/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14370ad8302f4da02a1aa6d2f34b3bff1023025c0b6e693c66fd53415bd4c328", "phash": "d35d2ce0dcc187d1", "dhash": "941948c8c8c88e8c", "phash_int": -3.216365214584699e+18, "collected_at": "2026-05-22T04:30:22.947851+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000497.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000497.JPG", "file_name": "IM000497.JPG", "file_stem": "IM000497", "file_ext": ".jpg", "file_size": 134975.0, "mtime": "2002-05-10T07:57:02+00:00", "mtime_ts": 1021017422.0, "ctime": "2002-05-10T07:57:02+00:00", "sha256_file": "49fe3136afeb487e3f153ee3649eec3daa58fc613526db207d15d602a7779c6a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "64", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:02:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "91/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2917/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bfa5dbb35268e88b16ba80f4773a3946ad1c8506c0ec3900fee3c5e389f5c66", "phash": "9795c36c9b2338c3", "dhash": "faf8d87a78654dcd", "phash_int": -7.523892731225885e+18, "collected_at": "2026-05-22T04:30:22.951928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000498.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000498.JPG", "file_name": "IM000498.JPG", "file_stem": "IM000498", "file_ext": ".jpg", "file_size": 135661.0, "mtime": "2002-05-10T07:57:02+00:00", "mtime_ts": 1021017422.0, "ctime": "2002-05-10T07:57:02+00:00", "sha256_file": "013abe8d4ec565b234ea8f2fc60ac0beedf09b8ca1dabf9c9610b424c6213b6c", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:11:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "69/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "135447248b79f7b5e01427fbc0bd895944f87a53e651e36eab2c9db2ca65f6a9", "phash": "963c79c72134ee94", "dhash": "7c3c2cececedeccd", "phash_int": -7.621082573255152e+18, "collected_at": "2026-05-22T04:30:22.988928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000500.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000500.JPG", "file_name": "IM000500.JPG", "file_stem": "IM000500", "file_ext": ".jpg", "file_size": 129420.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "3a3539959b7c53528e493b446729026078d926a82abea15c07fc7263680bcca9", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "17/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:36:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "4473/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2521/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c10e2a47feea4b139fa94bd76ab1ce452b88b171ce13b06e8c11d369e0f505e4", "phash": "f8e0431f75d89698", "dhash": "908791b232693158", "phash_int": -5.133365551200608e+17, "collected_at": "2026-05-22T04:30:22.992926+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000501.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000501.JPG", "file_name": "IM000501.JPG", "file_stem": "IM000501", "file_ext": ".jpg", "file_size": 131971.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "27e99e593ea700ef65213e2dba9e2309b5ec351a5efe2b136cae29f4d2b4321a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "33/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:37:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "111/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "469/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df4e15329583c1912ab09d8f75eb7daf4751dd2ffa8d8c29d3837785c0403901", "phash": "d2a9a63d926d1b46", "dhash": "c8e59999395164cc", "phash_int": -3.266897271300744e+18, "collected_at": "2026-05-22T04:30:23.007933+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000502.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000502.JPG", "file_name": "IM000502.JPG", "file_stem": "IM000502", "file_ext": ".jpg", "file_size": 144929.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "9524734e832c23822c20727d243774896de8fb5f520b45f47e8d6b25a62c3d4a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:51:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "39/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56137e1d49486508597a14a51b0f43ac86fb3d3fd512f23bf7190089a16af362", "phash": "cd60b37dcd8e084b", "dhash": "d840a363733264f2", "phash_int": -3.6477183452691804e+18, "collected_at": "2026-05-22T04:30:23.008927+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000503.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000503.JPG", "file_name": "IM000503.JPG", "file_stem": "IM000503", "file_ext": ".jpg", "file_size": 141157.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "3f3eb62d762b229114007b6b019bb0645e0eb285b2f4359c907feb0f988672c7", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 21:52:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "39/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf38365b93d066596e35028986be8b04720e98c85322f19ccf4d94b7cf0727c2", "phash": "8b7be4c62dc11659", "dhash": "4d4f737371ccc8f0", "phash_int": -8.395865540479871e+18, "collected_at": "2026-05-22T04:30:23.038248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000509.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000509.JPG", "file_name": "IM000509.JPG", "file_stem": "IM000509", "file_ext": ".jpg", "file_size": 138774.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "2852f08851a4b0ee2e086b39802c3b0915fa36ce8d8856444359ec24ab892312", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "27/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 22:31:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1377/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9d0e0e3ae6d6706d8947ff1736f3920d3a77e295b5f5a2acba6b82bc5768a3a", "phash": "944b63944cab9977", "dhash": "fefe5bb5b4beae2f", "phash_int": -7.761000044250294e+18, "collected_at": "2026-05-22T04:30:23.042251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000511.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000511.JPG", "file_name": "IM000511.JPG", "file_stem": "IM000511", "file_ext": ".jpg", "file_size": 151751.0, "mtime": "2002-05-10T07:57:04+00:00", "mtime_ts": 1021017424.0, "ctime": "2002-05-10T07:57:04+00:00", "sha256_file": "e8c343327944cc360a3d610c1c9c6a20bda52e34fe3154d1ca227ce1ed8c66de", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 22:38:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "34/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0dadabf77839b888e12694e397f3566c5dc62bf32cfdb0def1aec27536c46965", "phash": "8c9827274a7ba4be", "dhash": "f8f8b1b1e4665252", "phash_int": -8.315853662232796e+18, "collected_at": "2026-05-22T04:30:23.051362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000512.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000512.JPG", "file_name": "IM000512.JPG", "file_stem": "IM000512", "file_ext": ".jpg", "file_size": 143939.0, "mtime": "2002-05-10T07:57:06+00:00", "mtime_ts": 1021017426.0, "ctime": "2002-05-10T07:57:06+00:00", "sha256_file": "e88d70d43ae7a21845f7d092b72aff3fd858681d495803cedce1b5c1e853ed27", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 22:45:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "191/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "15a340ff65cd331e045ecfc7caf6c520ae024a89391a257831c8adaa47c19de3", "phash": "82367d7929d11b3a", "dhash": "d2ed6cfcb9f1e0f1", "phash_int": -9.06391924069046e+18, "collected_at": "2026-05-22T04:30:23.092359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000513.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000513.JPG", "file_name": "IM000513.JPG", "file_stem": "IM000513", "file_ext": ".jpg", "file_size": 135015.0, "mtime": "2002-05-10T07:57:06+00:00", "mtime_ts": 1021017426.0, "ctime": "2002-05-10T07:57:06+00:00", "sha256_file": "f5f1ece0e7fff4ff46e3129b6e8eec90f1b0b2983fc22b62f353a81aa07f289f", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "31/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 22:53:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "7/4", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2037/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1763c10afd6ae3d85f0ed336e7c709c807d3b670c5c33dfda89565f697277c54", "phash": "ad56216a568c5e76", "dhash": "fedf74e4e5ebd34b", "phash_int": -5.956536716548612e+18, "collected_at": "2026-05-22T04:30:23.093358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000514.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000514.JPG", "file_name": "IM000514.JPG", "file_stem": "IM000514", "file_ext": ".jpg", "file_size": 130309.0, "mtime": "2002-05-10T07:57:06+00:00", "mtime_ts": 1021017426.0, "ctime": "2002-05-10T07:57:06+00:00", "sha256_file": "d6eea4c23615834256fc3acf2ea67c490666816578e623cd77627e92e2a5c21d", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "19/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:12 22:54:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "91/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "3181/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2d9427e8789c451e3e88f7185ca27260067386f288a5586f5c90af3e17ffd00c", "phash": "ac5427a9ca54ad73", "dhash": "de8cb4f4f373e363", "phash_int": -6.029150390944749e+18, "collected_at": "2026-05-22T04:30:23.118504+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000517.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000517.JPG", "file_name": "IM000517.JPG", "file_stem": "IM000517", "file_ext": ".jpg", "file_size": 149833.0, "mtime": "2002-05-10T07:57:06+00:00", "mtime_ts": 1021017426.0, "ctime": "2002-05-10T07:57:06+00:00", "sha256_file": "74499762624a871368f703b463eaa8bd9d93dd4cf9e39ec76bdb6732e15854de", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 19:45:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c075616902a194a78c52757c6a35fe42194779edda9d17f030fa9d0ed8c9e23", "phash": "c7317428cf8f823e", "dhash": "dc0c6b4b69cb6360", "phash_int": -4.0933628676732677e+18, "collected_at": "2026-05-22T04:30:23.119509+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000523.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000523.JPG", "file_name": "IM000523.JPG", "file_stem": "IM000523", "file_ext": ".jpg", "file_size": 139926.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "56c7d3cdb81f13fa58d4813b7115d182f8bb6654e1cb973c794369932bfadac7", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:38:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8831a4c797357547b973abf598bf6102788245c4263fb2217300ef723be9231a", "phash": "d239e4b89ee13b50", "dhash": "9eb0dafab179a4e4", "phash_int": -3.298353770481501e+18, "collected_at": "2026-05-22T04:30:23.166724+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000522.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000522.JPG", "file_name": "IM000522.JPG", "file_stem": "IM000522", "file_ext": ".jpg", "file_size": 141922.0, "mtime": "2002-05-10T07:57:06+00:00", "mtime_ts": 1021017426.0, "ctime": "2002-05-10T07:57:06+00:00", "sha256_file": "bd1b1541e606f825c44c71aec2700ef0f50dbdb79bd671c896c9d2949f978344", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:00:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "159/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "af5e3004cb710efbaa976fb9b1666ba75dae71b8b300bfaef8e092726aba47e6", "phash": "ee75349a38104a7f", "dhash": "020686c363655567", "phash_int": -1.2640462834373565e+18, "collected_at": "2026-05-22T04:30:23.166724+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000524.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000524.JPG", "file_name": "IM000524.JPG", "file_stem": "IM000524", "file_ext": ".jpg", "file_size": 133679.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "49bd1b4096663e784311ecb79b26ed37f41716dbb51d7a4ee7b71f06ba293637", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "71", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:38:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43359f56e7920629cdf6647af2c6da16d6b1dddb93b601f63e4014718844548c", "phash": "df1965420472aff8", "dhash": "f8527271a84d4566", "phash_int": -2.3707523946169836e+18, "collected_at": "2026-05-22T04:30:23.179791+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000525.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000525.JPG", "file_name": "IM000525.JPG", "file_stem": "IM000525", "file_ext": ".jpg", "file_size": 142056.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "e7955dc0b495b1808e2e1d4abd4b65fa6c8b4dcd626e4319137c058b6ea37840", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:41:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "69/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2741/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1453c9177f64cd19c6d72de84aca58083d2ba6d077f360e72788ccf7dcf7d4cb", "phash": "9b6a00c37b71ad3c", "dhash": "49693f0878d87879", "phash_int": -7.247979810709722e+18, "collected_at": "2026-05-22T04:30:23.182790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000526.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000526.JPG", "file_name": "IM000526.JPG", "file_stem": "IM000526", "file_ext": ".jpg", "file_size": 125502.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "1cfe72f5db51364751d020cb9dd083916798ab995d22ad7395210e11bc33e119", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "27/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:42:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1377/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28d5b4fe83aeaa6eb1350dd8372e3a69517da93c63f285da889059d7a53878c2", "phash": "c33d3ec2d5573850", "dhash": "6bfb79d4c4c1c8f8", "phash_int": -4.3782742562104136e+18, "collected_at": "2026-05-22T04:30:23.192792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000527.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000527.JPG", "file_name": "IM000527.JPG", "file_stem": "IM000527", "file_ext": ".jpg", "file_size": 134450.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "bf85f5f22ef0933e49b4076b0bc1c4e55457de2b406b8d08bf77ddd11cc2e726", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "27/10", "EXIF ISOSpeedRatings": "92", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:42:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "33/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1377/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9a23df509312c25a5656d78c9493b7a11e610bf1a2ce4220a595da86f8ef5e4", "phash": "fa2915f087651e3a", "dhash": "1c13b3461d349c4c", "phash_int": -4.2078096737454534e+17, "collected_at": "2026-05-22T04:30:23.194791+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000528.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000528.JPG", "file_name": "IM000528.JPG", "file_stem": "IM000528", "file_ext": ".jpg", "file_size": 136515.0, "mtime": "2002-05-10T07:57:08+00:00", "mtime_ts": 1021017428.0, "ctime": "2002-05-10T07:57:08+00:00", "sha256_file": "702472287188e8354bb4b9f8d53a66d60911b0df6a1108f5efe4105290bd4b56", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "16/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:43:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "4473/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2301/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "067669b1ab34385fe6b81fea579260bf6d15ab2bcad825e321ba915befeb868a", "phash": "8b461c49620dddf7", "dhash": "b54ccfc3c7d3731d", "phash_int": -8.411004152564557e+18, "collected_at": "2026-05-22T04:30:23.216792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000529.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000529.JPG", "file_name": "IM000529.JPG", "file_stem": "IM000529", "file_ext": ".jpg", "file_size": 174731.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "b222e755d39606fc73d04838486fdab43c331d834c5f1355f1100d4620d15bdd", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "16/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:43:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "4473/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2301/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9b7347961a15a18cf0b22bc603660160892ccb2f3a579624ca5bd5fc5b54d82", "phash": "e1235e5d044ebfa4", "dhash": "c48b8fd6d69a91e4", "phash_int": -2.2238300373936538e+18, "collected_at": "2026-05-22T04:30:23.222869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000530.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000530.JPG", "file_name": "IM000530.JPG", "file_stem": "IM000530", "file_ext": ".jpg", "file_size": 137748.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "59a761c1f6b421faf238823cae76ec0992606f01a11117d196b97e87fa0e9ec8", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "16/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:44:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "369/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2301/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4931ae6c5f30d90821fefcc166da96e79a7746a345c9ec937af28e725c3302ac", "phash": "a5d01a1f754725d6", "dhash": "ea9b868686566767", "phash_int": -6.498665539881721e+18, "collected_at": "2026-05-22T04:30:23.235947+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000532.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000532.JPG", "file_name": "IM000532.JPG", "file_stem": "IM000532", "file_ext": ".jpg", "file_size": 165754.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "10b062fa74c9c1cd19ba0fb2241741ace54107c2d40558c3c80558a0bd06c336", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "3", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:44:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "3/2", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1817/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "004c9f2fd50471e52e846cf5d9e6617e6609a3ef9411cae1724ae1cdfff32fff", "phash": "b7e4454aa8a9d556", "dhash": "010c9c1f7d18399c", "phash_int": -5.195951883119111e+18, "collected_at": "2026-05-22T04:30:23.241942+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000535.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000535.JPG", "file_name": "IM000535.JPG", "file_stem": "IM000535", "file_ext": ".jpg", "file_size": 142867.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "7fb9a4a49a163a92538dae1f1add30091b1c7a672d67bb1525a0c1311978bcdb", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:55:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "403/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2917/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02eabd3fe823dd295cd2e0a73289ef7154e73221e431f2698a0602f45dcadb1f", "phash": "da8d7cb80766223b", "dhash": "32b2e8e949090808", "phash_int": -2.6983634718850985e+18, "collected_at": "2026-05-22T04:30:23.248942+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000539.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000539.JPG", "file_name": "IM000539.JPG", "file_stem": "IM000539", "file_ext": ".jpg", "file_size": 153142.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "0047b48f6cf2609916a6fa07234632e5359699f419a620f3fa1689fbccdf04f3", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "13/5", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:58:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "81/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1157/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1c29be3d08226dabddef2a0f375d81fb7fcfc04a7bff84ed79efa3d87435cca", "phash": "ddc848e6c969b516", "dhash": "90f070717c440430", "phash_int": -2.4656406399265203e+18, "collected_at": "2026-05-22T04:30:23.273075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000536.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000536.JPG", "file_name": "IM000536.JPG", "file_stem": "IM000536", "file_ext": ".jpg", "file_size": 129594.0, "mtime": "2002-05-10T07:57:10+00:00", "mtime_ts": 1021017430.0, "ctime": "2002-05-10T07:57:10+00:00", "sha256_file": "41fa8c69bbb57919b0582611e16a0b9323a69cf7dba559b2635630d56b66dc39", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 20:55:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "159/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c76174bbd30ae6cd1a7795a616c1da45ce2b44f009acc8f608fde9248b13afc2", "phash": "96d930064bb95cee", "dhash": "70f0b0f8ececdcac", "phash_int": -7.576972094475773e+18, "collected_at": "2026-05-22T04:30:23.273075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000542.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000542.JPG", "file_name": "IM000542.JPG", "file_stem": "IM000542", "file_ext": ".jpg", "file_size": 160013.0, "mtime": "2002-05-10T07:57:12+00:00", "mtime_ts": 1021017432.0, "ctime": "2002-05-10T07:57:12+00:00", "sha256_file": "377fadb3fd428e664f1d4c214ea68d1fa6d9948d01c4b12bc392f317f3ec72f2", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "33/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:03:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "259/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "469/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5a991e38008065bc2d41ffcb46c849cac0ecb200110e765e0840f6d29cb11e8", "phash": "9b8833734d968dcc", "dhash": "99b9b8a8aa182909", "phash_int": -7.239479830682105e+18, "collected_at": "2026-05-22T04:30:23.312139+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000541.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000541.JPG", "file_name": "IM000541.JPG", "file_stem": "IM000541", "file_ext": ".jpg", "file_size": 144614.0, "mtime": "2002-05-10T07:57:12+00:00", "mtime_ts": 1021017432.0, "ctime": "2002-05-10T07:57:12+00:00", "sha256_file": "adbf1086355c16161ab171bc382c71d29e87b9e7cb973f7da6857126b0db6308", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "19/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:03:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "139/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "3181/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da2f6b7cdc4df422ff5c4f30c1fe8de79014fd26a6f409fde02f781f2ab268ce", "phash": "936d5e666d122959", "dhash": "2676d2dec6cd3d38", "phash_int": -7.823493183663102e+18, "collected_at": "2026-05-22T04:30:23.314134+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000546.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000546.JPG", "file_name": "IM000546.JPG", "file_stem": "IM000546", "file_ext": ".jpg", "file_size": 133221.0, "mtime": "2002-05-10T07:57:12+00:00", "mtime_ts": 1021017432.0, "ctime": "2002-05-10T07:57:12+00:00", "sha256_file": "b9226c34e3b903a727ecc1b8312a79dbd6739c78cf0cd888918af327a3a8f333", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:32:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "223/20", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "293/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb1dc015cffcbfc992dd63c684731803be62dd45bce0213b8d65e0c337c1621e", "phash": "f709247a9bb021ee", "dhash": "b1c6ea7a790a8e4e", "phash_int": -6.45944962534334e+17, "collected_at": "2026-05-22T04:30:23.330216+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000544.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000544.JPG", "file_name": "IM000544.JPG", "file_stem": "IM000544", "file_ext": ".jpg", "file_size": 144100.0, "mtime": "2002-05-10T07:57:12+00:00", "mtime_ts": 1021017432.0, "ctime": "2002-05-10T07:57:12+00:00", "sha256_file": "14134807d22c958029778e6c60aad002eddc0f19fed01a5ad3368e14c295d1d4", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "11111/1000000", "EXIF FNumber": "31/10", "EXIF ISOSpeedRatings": "98", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:15:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "369/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "17", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7db77e77702ae484c2c2e919d551b71f23bdac56755675d63e6d8f9b1214ff5f", "phash": "8a42759ed227f89c", "dhash": "ccc3e3e9b9396cd1", "phash_int": -8.484089423021476e+18, "collected_at": "2026-05-22T04:30:23.332212+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000547.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000547.JPG", "file_name": "IM000547.JPG", "file_stem": "IM000547", "file_ext": ".jpg", "file_size": 128447.0, "mtime": "2002-05-10T07:57:12+00:00", "mtime_ts": 1021017432.0, "ctime": "2002-05-10T07:57:12+00:00", "sha256_file": "0e9ff7b230b2b9afc3499b56d10af4279c3b782f4f7179a60f821dd720ffd020", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:32:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6/5", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3dc5b6bde33274fa0f70a99c6731e6d500442ebedaa62341a16322badbf62c55", "phash": "b7405f4c9c3d887a", "dhash": "b65ddf9e3e7e1e3b", "phash_int": -5.242085183615826e+18, "collected_at": "2026-05-22T04:30:23.349211+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000549.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000549.JPG", "file_name": "IM000549.JPG", "file_stem": "IM000549", "file_ext": ".jpg", "file_size": 125271.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "42ac86206c4e70745b87b5fd6b74578d62156d1db0bb1bf1926e6e1aca725446", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:36:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "891/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0f24075db831bf89708da6b2a6e8023d8540ad830c158d41c04ea87078078cb", "phash": "c93083db26b3399d", "dhash": "d9b2b209c1d2c3e3", "phash_int": -3.9495118959335685e+18, "collected_at": "2026-05-22T04:30:23.350213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000551.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000551.JPG", "file_name": "IM000551.JPG", "file_stem": "IM000551", "file_ext": ".jpg", "file_size": 127828.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "b21baee192e9b104b40accbf78532007664549da11cc50f1cad6c013edc3b13e", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:37:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "93/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2961/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1ca6d2c066fd4014020bb2a8f6e00200fa47d32ec971dae2c0c144cbe8f4dc0", "phash": "d75b2d650eb4914a", "dhash": "6449686cd8cace60", "phash_int": -2.928697220612714e+18, "collected_at": "2026-05-22T04:30:23.408214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000550.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000550.JPG", "file_name": "IM000550.JPG", "file_stem": "IM000550", "file_ext": ".jpg", "file_size": 135352.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "6cc472e36d461eed402688d21809109b41c989e54b0ed13ed3318cdebda9be12", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:36:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "27/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2961/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0620915135f736b885a3aa5ea55a46509208829e6aaf53f44eb1599c5aa484d", "phash": "d07cb1b05bc38d9c", "dhash": "982c6061b196cde8", "phash_int": -3.4236662456965166e+18, "collected_at": "2026-05-22T04:30:23.409216+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000552.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000552.JPG", "file_name": "IM000552.JPG", "file_stem": "IM000552", "file_ext": ".jpg", "file_size": 127507.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "6ca039123048c2fcc49e67c5b5f91ed36bbd4cf08e796c7b22e8939d5af252c6", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "64", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:37:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "39/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2961/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3ff4c2cfa25a283fed3cd40591ca54fb308c57915cded2b8ae1d8e35e053e31", "phash": "d071a776da8c992a", "dhash": "989c98919998e6e8", "phash_int": -3.4267737125376097e+18, "collected_at": "2026-05-22T04:30:23.425213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000553.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000553.JPG", "file_name": "IM000553.JPG", "file_stem": "IM000553", "file_ext": ".jpg", "file_size": 169827.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "f2910137a1a9fc1c47513be5f3447315bc6977970eebc92c0dffe62a7e2b3c56", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "37/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:37:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "27/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2961/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "640", "EXIF ExifImageLength": "800"}, "format": "JPEG", "mode": "RGB", "width": 640.0, "height": 800.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96a9a112097e86af0a284bed4d68e2ab6b16b9ca5d9cdb6bc503a1c1430b2324", "phash": "dd7c5af220a08fc6", "dhash": "03317296c4e8d068", "phash_int": -2.4870128982393774e+18, "collected_at": "2026-05-22T04:30:23.426213+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000554.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000554.JPG", "file_name": "IM000554.JPG", "file_stem": "IM000554", "file_ext": ".jpg", "file_size": 130523.0, "mtime": "2002-05-10T07:57:14+00:00", "mtime_ts": 1021017434.0, "ctime": "2002-05-10T07:57:14+00:00", "sha256_file": "f09959330b3cc1d807a421235dfe1a0a94594c8d638c734bb879adc5ac1ac98d", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "94", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:37:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "139/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1553/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "54d1c9723b99952871c5f6ebde556dca0784b5e83250bc3b32bbbd193b83757c", "phash": "8f258250ff3b8a66", "dhash": "eae6665274f1d559", "phash_int": -8.131950267756475e+18, "collected_at": "2026-05-22T04:30:23.458221+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000555.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000555.JPG", "file_name": "IM000555.JPG", "file_stem": "IM000555", "file_ext": ".jpg", "file_size": 241760.0, "mtime": "2002-05-10T07:57:16+00:00", "mtime_ts": 1021017436.0, "ctime": "2002-05-10T07:57:16+00:00", "sha256_file": "e4833ab897b2c5b760a32258574ed53e5d3fe3c0a47bb27a76d0b3fea5ecae76", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:37:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "139/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1553/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "692b46c8eeea2a8c7476f46a116bf7713b730de9f0f6dcf9db981b51dbd3f4a5", "phash": "8e271952db799b22", "dhash": "ebe66652e5e1a3f8", "phash_int": -8.203560352571876e+18, "collected_at": "2026-05-22T04:30:23.462217+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000557.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000557.JPG", "file_name": "IM000557.JPG", "file_stem": "IM000557", "file_ext": ".jpg", "file_size": 128987.0, "mtime": "2002-05-10T07:57:16+00:00", "mtime_ts": 1021017436.0, "ctime": "2002-05-10T07:57:16+00:00", "sha256_file": "fbe57854cc21af508d645c352e74a7ac2ecece392aaa3ffe642eeabf09a9aa28", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:40:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff88eef98f202e05de534c824306db294d97f9fc53ac58473c9de3d3858119e9", "phash": "826d22f30c2fd9b3", "dhash": "8b8d9ba38819d9fd", "phash_int": -9.048537649040599e+18, "collected_at": "2026-05-22T04:30:23.488272+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000556.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000556.JPG", "file_name": "IM000556.JPG", "file_stem": "IM000556", "file_ext": ".jpg", "file_size": 293379.0, "mtime": "2002-05-10T07:57:16+00:00", "mtime_ts": 1021017436.0, "ctime": "2002-05-10T07:57:16+00:00", "sha256_file": "3d3aaacd4e8a785589db3274924d1365807c237f8bea33d82db63b8c5a4f278a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:40:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "139/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1553/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58595ffc7876025b29c09bb65b191cd2dd57009a0732bd4b7730b830de5d3b79", "phash": "c3c0f8f0b11b72da", "dhash": "10c0c1c6d6cc7343", "phash_int": -4.341196328137953e+18, "collected_at": "2026-05-22T04:30:23.489270+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000558.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000558.JPG", "file_name": "IM000558.JPG", "file_stem": "IM000558", "file_ext": ".jpg", "file_size": 140962.0, "mtime": "2002-05-10T07:57:16+00:00", "mtime_ts": 1021017436.0, "ctime": "2002-05-10T07:57:16+00:00", "sha256_file": "b3edfbe9c80b55b38c7cb87d51400e60b0d42cd4a45e1c12cbda36a95e68842d", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:41:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6/5", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5b4d3077017eee697d9cad2afba483dd5327392428f2e0e314c9cc3015bc2c6c", "phash": "cb6574bb87788168", "dhash": "46c2d1e1e979b1f0", "phash_int": -3.790495162581876e+18, "collected_at": "2026-05-22T04:30:23.539950+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000559.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000559.JPG", "file_name": "IM000559.JPG", "file_stem": "IM000559", "file_ext": ".jpg", "file_size": 160760.0, "mtime": "2002-05-10T07:57:18+00:00", "mtime_ts": 1021017438.0, "ctime": "2002-05-10T07:57:18+00:00", "sha256_file": "d73434e6702906352c75dfa50fbd79795e542f43259dfa2cdd3c79056be3c240", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:41:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "159/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ffc3f6e572cc307648f8aed85a9a55e73be16eb02580ab923efa29ebffefe8cb", "phash": "ded1443f3346f20a", "dhash": "81908808183567aa", "phash_int": -2.391054888923107e+18, "collected_at": "2026-05-22T04:30:23.542948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000561.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000561.JPG", "file_name": "IM000561.JPG", "file_stem": "IM000561", "file_ext": ".jpg", "file_size": 165058.0, "mtime": "2002-05-10T07:57:18+00:00", "mtime_ts": 1021017438.0, "ctime": "2002-05-10T07:57:18+00:00", "sha256_file": "4f872d97a91fd8394ff62ef173030093b1aec94ddec632f8a2367b5f0c5f10f1", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:41:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "42/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d32f53b4fb3a077af3051f277fd8a47561fbccb4fe7ea6ccea8590c3c4ce3543", "phash": "dfff9340b043a609", "dhash": "48286860b6e471f9", "phash_int": -2.305962578145991e+18, "collected_at": "2026-05-22T04:30:23.567949+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000560.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000560.JPG", "file_name": "IM000560.JPG", "file_stem": "IM000560", "file_ext": ".jpg", "file_size": 185070.0, "mtime": "2002-05-10T07:57:18+00:00", "mtime_ts": 1021017438.0, "ctime": "2002-05-10T07:57:18+00:00", "sha256_file": "d7093705e4b43d622f6f4fcbd37b8f33a1d3cbd30c083fbdc33faad7c352dc3c", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:41:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "42/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43276dc6b3561fe2cf2711ed96a8690a7f1277f5901bc5f20d674f766e250d9b", "phash": "c6f1319a5839b0f6", "dhash": "900646f1e0f57160", "phash_int": -4.111450445837652e+18, "collected_at": "2026-05-22T04:30:23.568951+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000562.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000562.JPG", "file_name": "IM000562.JPG", "file_stem": "IM000562", "file_ext": ".jpg", "file_size": 130536.0, "mtime": "2002-05-10T07:57:18+00:00", "mtime_ts": 1021017438.0, "ctime": "2002-05-10T07:57:18+00:00", "sha256_file": "68025727ecdc7889800d4dac4e06388a49b3eff561efc5a8f20156a0fac96d44", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "18/5", "EXIF ISOSpeedRatings": "97", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:42:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "27/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "557/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de9fd588d2234569e4ebc820b70205692b8cb5d8481a2cd15edabcd858540472", "phash": "cc6133d932d4f531", "dhash": "83f362e472727265", "phash_int": -3.719634809277582e+18, "collected_at": "2026-05-22T04:30:23.593176+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000565.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000565.JPG", "file_name": "IM000565.JPG", "file_stem": "IM000565", "file_ext": ".jpg", "file_size": 123366.0, "mtime": "2002-05-10T07:57:18+00:00", "mtime_ts": 1021017438.0, "ctime": "2002-05-10T07:57:18+00:00", "sha256_file": "55a373b374444edc16ddf81de20b6aac9954dcd85371eddd07e5becbf6db3e09", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 21:57:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "27/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8db43ec8433930f951e67a0adb11a6a634a09f91d5c45334bab1392f1286ccca", "phash": "d4a00b5b3c363bd3", "dhash": "e0e098a428485072", "phash_int": -3.1254856549150075e+18, "collected_at": "2026-05-22T04:30:23.596837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000566.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000566.JPG", "file_name": "IM000566.JPG", "file_stem": "IM000566", "file_ext": ".jpg", "file_size": 115182.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "5e5dc10da8ffa3c2a4617c73dcea88dd42a6c0c350f324dbd3756ea52deaf997", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:02:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c3623d74e861b1d88c038d1326a993d9f591e82af842ccbcb35734a5e314e02", "phash": "fd5a0eb199661127", "dhash": "98100492121a2f66", "phash_int": -1.908238782642214e+17, "collected_at": "2026-05-22T04:30:23.650532+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000568.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000568.JPG", "file_name": "IM000568.JPG", "file_stem": "IM000568", "file_ext": ".jpg", "file_size": 138694.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "09a727f9468475c1d38c2455c5e7a7678588036369951aa36454ee6ee0a8d6b9", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "27/10", "EXIF ISOSpeedRatings": "76", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:06:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "34/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "1289/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a02fb71583e0143d20ffbf5f6faf743f5d2f193454a3b2fb0b95ba59a0c60922", "phash": "923f6d349365b04d", "dhash": "6671f8ecdcbce2e1", "phash_int": -7.90848234806066e+18, "collected_at": "2026-05-22T04:30:23.665607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000570.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000570.JPG", "file_name": "IM000570.JPG", "file_stem": "IM000570", "file_ext": ".jpg", "file_size": 132505.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "8813ecdcaed08a1c2f4f1a9d6e51b7fdbe1509797bc5e1fb14755ab6e0832461", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:29:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "159/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b58bce50ea75ce3401ae0dd53a142bd22de622718928c59e0b15d168cb0748c", "phash": "fb5bb5e80c2702c9", "dhash": "18184924318bd276", "phash_int": -3.3447373906804666e+17, "collected_at": "2026-05-22T04:30:23.667534+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000573.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000573.JPG", "file_name": "IM000573.JPG", "file_stem": "IM000573", "file_ext": ".jpg", "file_size": 141685.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "ac86d2f8a0275cdffc0ecb9f2bd181ec0f78db3be58db21a6ff76e37596acc57", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:46:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "14/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b18dc1e749c2013b4eb3e77b1ec36c6c60fb6993026bbeecd9f51559212ea5c4", "phash": "e47422f77b807ea0", "dhash": "0ca4b4d55772c78f", "phash_int": -1.984923089439261e+18, "collected_at": "2026-05-22T04:30:23.699536+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000571.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000571.JPG", "file_name": "IM000571.JPG", "file_stem": "IM000571", "file_ext": ".jpg", "file_size": 117802.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "4fdf1467318a18d0527179259e01ae83b7ba36c8eef273c076391c20b7325b28", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:29:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "3/2", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6e6526941aabdd443b32d66efe03df8e9540318598e9fcd0abd06534aeeab91", "phash": "d738e9d932638570", "dhash": "1362e66c7c624264", "phash_int": -2.9383416377966904e+18, "collected_at": "2026-05-22T04:30:23.703535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000574.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000574.JPG", "file_name": "IM000574.JPG", "file_stem": "IM000574", "file_ext": ".jpg", "file_size": 149156.0, "mtime": "2002-05-10T07:57:20+00:00", "mtime_ts": 1021017440.0, "ctime": "2002-05-10T07:57:20+00:00", "sha256_file": "91b0858965a69d0f7701cc6565df7ff0eddf0d1a3804ead83cf022724aadb613", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 22:51:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "42/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58ee0d53aa0164bdff6fbdaed66cdbc971c33d23508debb8e195330a1907dd4e", "phash": "9de8c730c364c93b", "dhash": "c06073f0fab87868", "phash_int": -7.068180602907474e+18, "collected_at": "2026-05-22T04:30:23.761835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000576.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000576.JPG", "file_name": "IM000576.JPG", "file_stem": "IM000576", "file_ext": ".jpg", "file_size": 134060.0, "mtime": "2002-05-10T07:57:22+00:00", "mtime_ts": 1021017442.0, "ctime": "2002-05-10T07:57:22+00:00", "sha256_file": "3e14c29b83a45be6597aa3ac249667f9f184ecd9d218cbb376cbe0bcf8f58b89", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "90", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:03:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11b948df45c9389fdc5f38fa97f8afff7030c7e5c683dc8fc93373b8752e1534", "phash": "9d6066ee306995f4", "dhash": "16e3d2d9347262e8", "phash_int": -7.106567038790168e+18, "collected_at": "2026-05-22T04:30:23.774836+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000578.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000578.JPG", "file_name": "IM000578.JPG", "file_stem": "IM000578", "file_ext": ".jpg", "file_size": 136351.0, "mtime": "2002-05-10T07:57:22+00:00", "mtime_ts": 1021017442.0, "ctime": "2002-05-10T07:57:22+00:00", "sha256_file": "a3bb7c9a2ac433c9dceb072afc9961282403d729b1588431fe88008feff323b1", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:11:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "199/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "293/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5498e89e793ddcc59f5497cbe70681c1a51c4df7f8e60d8a95f0756034608f2d", "phash": "c92473c618dda2f3", "dhash": "e44831b1f1e17268", "phash_int": -3.952907278266556e+18, "collected_at": "2026-05-22T04:30:23.792838+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000580.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000580.JPG", "file_name": "IM000580.JPG", "file_stem": "IM000580", "file_ext": ".jpg", "file_size": 130805.0, "mtime": "2002-05-10T07:57:22+00:00", "mtime_ts": 1021017442.0, "ctime": "2002-05-10T07:57:22+00:00", "sha256_file": "c5d82123396872ecfa24697f4d19925fb6ff9e9af002fef39a54de9e5d18aaee", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:18:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "58/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "15523542b1816880f325e533ec4947549ccf400bd8cddb1191c815bb6b00c1d4", "phash": "c0981f6d7a61b8d9", "dhash": "92a090849086c6c9", "phash_int": -4.5688672669022474e+18, "collected_at": "2026-05-22T04:30:23.796835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000581.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000581.JPG", "file_name": "IM000581.JPG", "file_stem": "IM000581", "file_ext": ".jpg", "file_size": 135265.0, "mtime": "2002-05-10T07:57:22+00:00", "mtime_ts": 1021017442.0, "ctime": "2002-05-10T07:57:22+00:00", "sha256_file": "1283b0abd62e67278ff2d45859cf3f48db4d1c5746b5e4e84cf1f483316fe410", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "19/20", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f367c8173eb695aae889da9d3c5c0857f2f529a4bb282d3a52ca3f895b10b536", "phash": "d2334de432988ecf", "dhash": "84696999a9b1f0e1", "phash_int": -3.3002084594357007e+18, "collected_at": "2026-05-22T04:30:23.810836+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000582.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000582.JPG", "file_name": "IM000582.JPG", "file_stem": "IM000582", "file_ext": ".jpg", "file_size": 135744.0, "mtime": "2002-05-10T07:57:22+00:00", "mtime_ts": 1021017442.0, "ctime": "2002-05-10T07:57:22+00:00", "sha256_file": "de7ff0215d960acf05aaf34e94066755897eb883b731f5e635223b92fd33b2c3", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:21:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "159/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "846b9c927aa70443a8f4a98954d56c2cfd53919bb354ceb136daa6d341a58938", "phash": "da314dec3099df60", "dhash": "8ce969e98d696169", "phash_int": -2.724310622759428e+18, "collected_at": "2026-05-22T04:30:23.814835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000583.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000583.JPG", "file_name": "IM000583.JPG", "file_stem": "IM000583", "file_ext": ".jpg", "file_size": 123509.0, "mtime": "2002-05-10T07:57:24+00:00", "mtime_ts": 1021017444.0, "ctime": "2002-05-10T07:57:24+00:00", "sha256_file": "d46072ced84819015c1d5e7818c77c6cf13b03d716adbd2b32c5d316482166f6", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:21:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "3/2", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fd14f03121a1769d09a0d3b47387af924bc5cc1ec45a11f08b3d4ca9b3db816", "phash": "f0730c8413b56e5f", "dhash": "80001098dca4b4b0", "phash_int": -1.1205381208792477e+18, "collected_at": "2026-05-22T04:30:23.845065+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000584.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000584.JPG", "file_name": "IM000584.JPG", "file_stem": "IM000584", "file_ext": ".jpg", "file_size": 144727.0, "mtime": "2002-05-10T07:57:24+00:00", "mtime_ts": 1021017444.0, "ctime": "2002-05-10T07:57:24+00:00", "sha256_file": "5cf8a52257e78b267aec10725216919811f9d815816d6cbf739d74d3512a8041", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "79", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:13 23:21:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "3/2", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88cc7dee56be32662a2dc95dcb0c681068d2c8fe2b2ab824d7ccde668eebbdc3", "phash": "d36207fd3cf0016e", "dhash": "3248cc9834581858", "phash_int": -3.2149983997586304e+18, "collected_at": "2026-05-22T04:30:23.849133+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000585.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000585.JPG", "file_name": "IM000585.JPG", "file_stem": "IM000585", "file_ext": ".jpg", "file_size": 135845.0, "mtime": "2002-05-10T07:57:24+00:00", "mtime_ts": 1021017444.0, "ctime": "2002-05-10T07:57:24+00:00", "sha256_file": "efe0e72d27f5ed9253cef96bb8440592849f4863701c3175ff4478b7dacfd112", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:26:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "191/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "50efd646c491dc8efed14c4134211028a52c7d2236c051e8f818ce13915b334a", "phash": "f9308b071ee370f1", "dhash": "ac9c900030024333", "phash_int": -4.9073949668413005e+17, "collected_at": "2026-05-22T04:30:23.876132+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000586.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000586.JPG", "file_name": "IM000586.JPG", "file_stem": "IM000586", "file_ext": ".jpg", "file_size": 163645.0, "mtime": "2002-05-10T07:57:24+00:00", "mtime_ts": 1021017444.0, "ctime": "2002-05-10T07:57:24+00:00", "sha256_file": "5bfe5d1543ba845ab97ee702aba19f3e6cd182f80609136ba59be2e9d4f055bf", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "71", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:29:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "58/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4001813d6ebf8974850db8804733b3d6a5474dd9ef78c94bd6e46464075b41e8", "phash": "b732aca54e785985", "dhash": "7c3c7d794c4e8e67", "phash_int": -5.245940789947116e+18, "collected_at": "2026-05-22T04:30:23.895135+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000587.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000587.JPG", "file_name": "IM000587.JPG", "file_stem": "IM000587", "file_ext": ".jpg", "file_size": 136549.0, "mtime": "2002-05-10T07:57:24+00:00", "mtime_ts": 1021017444.0, "ctime": "2002-05-10T07:57:24+00:00", "sha256_file": "ebb55a42eab53624f759a4fc99a9f0ce39cd80ba724cc83f46b37bd203a65307", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:46:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "259/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf16c2a97d1f1f42fc7d4c932aee51b8ded84e43184f4ddc92560aa231e93627", "phash": "cc396d8e32691cd6", "dhash": "3636b689ed64e6e4", "phash_int": -3.7308303588012124e+18, "collected_at": "2026-05-22T04:30:23.919135+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000588.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000588.JPG", "file_name": "IM000588.JPG", "file_stem": "IM000588", "file_ext": ".jpg", "file_size": 135328.0, "mtime": "2002-05-10T07:57:26+00:00", "mtime_ts": 1021017446.0, "ctime": "2002-05-10T07:57:26+00:00", "sha256_file": "72254c13c19180bb27abb909fb24ae0ef1b6c22fe42546c699186a7e24a62b2b", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:46:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "403/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1042342cddcd11df98af2ff19ef791ba5c8df7e2b598436a523eeb97611e8c7c", "phash": "ea3e16c119fe4263", "dhash": "c9dd4d13dbc98bcd", "phash_int": -1.5677906016577613e+18, "collected_at": "2026-05-22T04:30:23.973141+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000589.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000589.JPG", "file_name": "IM000589.JPG", "file_stem": "IM000589", "file_ext": ".jpg", "file_size": 134099.0, "mtime": "2002-05-10T07:57:26+00:00", "mtime_ts": 1021017446.0, "ctime": "2002-05-10T07:57:26+00:00", "sha256_file": "d05e875a435c2fbc2b6bb3736ee2fdef73b82b7ff48ab2535b954699f91c592f", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:47:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "259/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "2697/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6395d6ed18190b619eb43d63a8a95f6cb292169a732c04089eb89e37baa05d1f", "phash": "a84ed7b4333a5661", "dhash": "7465e1bb979f1b59", "phash_int": -6.31887605820068e+18, "collected_at": "2026-05-22T04:30:23.980138+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000591.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000591.JPG", "file_name": "IM000591.JPG", "file_stem": "IM000591", "file_ext": ".jpg", "file_size": 132981.0, "mtime": "2002-05-10T07:57:26+00:00", "mtime_ts": 1021017446.0, "ctime": "2002-05-10T07:57:26+00:00", "sha256_file": "815e70759ac5529f6fb7e4972d9a527857d45c44283a6ef32ede630f66746fca", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:51:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "369/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "515e32e9164e1fde4dd42adfd5e2b2dc8bae12ad755a048973cb638fcda40052", "phash": "c86423c96f3833dd", "dhash": "c5c22d31f0f9b179", "phash_int": -4.007038420391546e+18, "collected_at": "2026-05-22T04:30:23.989137+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000592.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000592.JPG", "file_name": "IM000592.JPG", "file_stem": "IM000592", "file_ext": ".jpg", "file_size": 121598.0, "mtime": "2002-05-10T07:57:26+00:00", "mtime_ts": 1021017446.0, "ctime": "2002-05-10T07:57:26+00:00", "sha256_file": "79951f2dd2cfbb451c22b7ba758021781577869bb5aa739ea82d1aae105e4018", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "1/125", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 00:51:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "7", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "369/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae5dcdd3b9d02c35700413dc3e3eea103346745d6adb44bb322df58957805f2d", "phash": "934dbf10696915ea", "dhash": "6666f0d399dc5949", "phash_int": -7.832394099718548e+18, "collected_at": "2026-05-22T04:30:23.999214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000594.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000594.JPG", "file_name": "IM000594.JPG", "file_stem": "IM000594", "file_ext": ".jpg", "file_size": 146779.0, "mtime": "2002-05-10T07:57:28+00:00", "mtime_ts": 1021017448.0, "ctime": "2002-05-10T07:57:28+00:00", "sha256_file": "ef4e2e14a330c6bf1b4449af6c6b89839a8e879400d04ebc71f556b5f2620a05", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "14/5", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 01:45:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "293/25", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae12fb6b2fbb1a6df3248af6e0349bedf6e20536f8000a1d236d083e5b0248a3", "phash": "ba2dc76d04f24b25", "dhash": "a7072bbd77518d61", "phash_int": -5.031145937654625e+18, "collected_at": "2026-05-22T04:30:24.056024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000593.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000593.JPG", "file_name": "IM000593.JPG", "file_stem": "IM000593", "file_ext": ".jpg", "file_size": 395480.0, "mtime": "2002-05-10T07:57:28+00:00", "mtime_ts": 1021017448.0, "ctime": "2002-05-10T07:57:28+00:00", "sha256_file": "d83e3cae9942172b96d2c4503aa47914966f57909152fdd757bbd780f1b1c38d", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 01:10:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "69/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b385b899f544d47015e65e85580be17838a691e49adbceb097b979de98ea7c6e", "phash": "9a30a3fd0c3541fe", "dhash": "be39b93a31304ff1", "phash_int": -7.336183485759668e+18, "collected_at": "2026-05-22T04:30:24.057113+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000596.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000596.JPG", "file_name": "IM000596.JPG", "file_stem": "IM000596", "file_ext": ".jpg", "file_size": 128929.0, "mtime": "2002-05-10T07:57:28+00:00", "mtime_ts": 1021017448.0, "ctime": "2002-05-10T07:57:28+00:00", "sha256_file": "c5b102e87fec723a342e9febdf01b51f61b302b57d032fc225af0493b8efc18a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 02:13:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e376c10bbca947029735501080736c38f86ffccdd66b83dfe5aa612d9508bd79", "phash": "c63c38f3868c19f5", "dhash": "ed1968e4ccc968e3", "phash_int": -4.162389337011644e+18, "collected_at": "2026-05-22T04:30:24.102193+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000595.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000595.JPG", "file_name": "IM000595.JPG", "file_stem": "IM000595", "file_ext": ".jpg", "file_size": 147742.0, "mtime": "2002-05-10T07:57:28+00:00", "mtime_ts": 1021017448.0, "ctime": "2002-05-10T07:57:28+00:00", "sha256_file": "c55fb2275aa230b80bd0869cd246dfc56417ad82ac19d5298c1d9341a58af4bc", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 01:48:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "42/25", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4416657ea3c4cb86f16d28116443e9553d75b1c4259298ea534b33119127f163", "phash": "b318dba1ad81a66e", "dhash": "9a39edd646dcdc7c", "phash_int": -5.541437854032222e+18, "collected_at": "2026-05-22T04:30:24.105191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000597.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000597.JPG", "file_name": "IM000597.JPG", "file_stem": "IM000597", "file_ext": ".jpg", "file_size": 119136.0, "mtime": "2002-05-10T07:57:28+00:00", "mtime_ts": 1021017448.0, "ctime": "2002-05-10T07:57:28+00:00", "sha256_file": "9d798d0dfdce1ac3341a91eae903593b075469eabc198b41ba1ef877b5cee5d1", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "8333/500000", "EXIF FNumber": "5/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 02:16:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "3", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "31/50", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash fired", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d622e715e3002f2e0a9d2c951e4b9f41f3b0d86c986e8172268610f69e089d9", "phash": "9a246197b2cd2e73", "dhash": "2c3133f0e868f0d9", "phash_int": -7.339634188539318e+18, "collected_at": "2026-05-22T04:30:24.139192+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000598.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000598.JPG", "file_name": "IM000598.JPG", "file_stem": "IM000598", "file_ext": ".jpg", "file_size": 129503.0, "mtime": "2002-05-10T07:57:30+00:00", "mtime_ts": 1021017450.0, "ctime": "2002-05-10T07:57:30+00:00", "sha256_file": "d08fb1a9fd3928d9da7af636f4461cf4fcb95a208d31a256e8d4a8c341a8626e", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "2177/1000000", "EXIF FNumber": "11/2", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 09:56:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "9", "EXIF ApertureValue": "5", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "447/20", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF FocalLength": "41/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f503336b2b67ae0757b3a4e7ed8d52e8c7f4bce487d6ca809009e227066592d7", "phash": "82ab9f391a46eb98", "dhash": "fdfee1c5b9cae0c0", "phash_int": -9.03094956015859e+18, "collected_at": "2026-05-22T04:30:24.144193+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000599.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000599.JPG", "file_name": "IM000599.JPG", "file_stem": "IM000599", "file_ext": ".jpg", "file_size": 151891.0, "mtime": "2002-05-10T07:57:30+00:00", "mtime_ts": 1021017450.0, "ctime": "2002-05-10T07:57:30+00:00", "sha256_file": "9e6fc726c7e2685ff7668c3485c417b3315fc25044a55092944ab19ecd1102fd", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "3963/1000000", "EXIF FNumber": "43/10", "EXIF ISOSpeedRatings": "50", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 10:25:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "8", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF FocalLength": "1553/125", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e5f04a7e05ef8054ea923d4f8c7237d07afced4ec163a19398c490ae0c5ada1f", "phash": "8e8ede734d53b140", "dhash": "70747632a60e89f0", "phash_int": -8.174351686830936e+18, "collected_at": "2026-05-22T04:30:24.216349+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000600.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hory Háskov\\IM000600.JPG", "file_name": "IM000600.JPG", "file_stem": "IM000600", "file_ext": ".jpg", "file_size": 157189.0, "mtime": "2002-05-10T07:57:30+00:00", "mtime_ts": 1021017450.0, "ctime": "2002-05-10T07:57:30+00:00", "sha256_file": "08d7e7cd752ea2333ef4d28e163d4fac827b3c0f9522aec0b73fdb42c309ff7a", "exif": {"Image Make": "Hewlett-Packard", "Image Model": "HP PhotoSmart C912 (V01.00)", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "170", "EXIF ExposureTime": "3847/1000000", "EXIF FNumber": "39/10", "EXIF ISOSpeedRatings": "52", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:04:14 10:27:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "8/5", "EXIF ShutterSpeedValue": "9", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "4", "EXIF SubjectDistance": "6553/100", "EXIF MeteringMode": "Pattern", "EXIF LightSource": "Unknown", "EXIF FocalLength": "129/5", "EXIF MakerNote": "[1, 0, 1, 0, 0, 0, 4, 0, 72, 101, 119, 108, 101, 116, 116, 45, 80, 97, 99, 107, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "800", "EXIF ExifImageLength": "640"}, "format": "JPEG", "mode": "RGB", "width": 800.0, "height": 640.0, "megapixels": 0.51, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7c06022ee09ed9ac639e05835fca08b360b1e9bff231fb5d723bc819d63ab5c0", "phash": "969e82ad58a9d734", "dhash": "e9edecb9364e8f59", "phash_int": -7.593488240671599e+18, "collected_at": "2026-05-22T04:30:24.217546+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1477_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1477_IMG.JPG", "file_name": "114-1477_IMG.JPG", "file_stem": "114-1477_IMG", "file_ext": ".jpg", "file_size": 1454421.0, "mtime": "2002-08-08T08:55:24+00:00", "mtime_ts": 1028796924.0, "ctime": "2002-08-08T08:55:24+00:00", "sha256_file": "645fcaccdaca643c6a937d97cad3fda89155e6494381085dec7a53bb1b41c4cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:08 08:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4229", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:08 08:55:26", "EXIF DateTimeDigitized": "2002:08:08 08:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141477", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9887c1fbac0f6d7b9fb54112bc6b93f788cde83f70be45865c73ebdc431bf9e5", "phash": "85e2cf5234cbd629", "dhash": "eea6e2969ef8faf6", "phash_int": -8.799242769948486e+18, "collected_at": "2026-05-22T04:30:24.347963+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1478_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1478_IMG.JPG", "file_name": "114-1478_IMG.JPG", "file_stem": "114-1478_IMG", "file_ext": ".jpg", "file_size": 1962711.0, "mtime": "2002-08-08T08:55:34+00:00", "mtime_ts": 1028796934.0, "ctime": "2002-08-08T08:55:34+00:00", "sha256_file": "e530d566fede0d84f35a6452d822a0871f25f2eee74d8283030a625e95422779", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:08 08:55:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6532", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:08 08:55:36", "EXIF DateTimeDigitized": "2002:08:08 08:55:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141478", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4648e397cb4c33787ae68a9e66fae883c6e5f02065f70427d074c38d7a1e4b5", "phash": "c13dd73b03ce3039", "dhash": "9a9a92ca9a5044c4", "phash_int": -4.5222218023432233e+18, "collected_at": "2026-05-22T04:30:24.356027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1479_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1479_IMG.JPG", "file_name": "114-1479_IMG.JPG", "file_stem": "114-1479_IMG", "file_ext": ".jpg", "file_size": 1480564.0, "mtime": "2002-08-08T08:55:44+00:00", "mtime_ts": 1028796944.0, "ctime": "2002-08-08T08:55:44+00:00", "sha256_file": "c70a0bfa4c175864559be287e92f051809297821e495ef4634004e3ff8814f7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:08 08:55:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4503", "EXIF ExposureTime": "1/250", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:08 08:55:45", "EXIF DateTimeDigitized": "2002:08:08 08:55:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1589/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141479", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1589"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1a4cb17cf9a03f6aabd23b94e0ab8c8a2331f20b99a6d80700a8cb8a4ad4967", "phash": "b6d88d53a93ca8a6", "dhash": "fcecac3c0c4c6c37", "phash_int": -5.271307973376039e+18, "collected_at": "2026-05-22T04:30:24.480033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1480_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1480_IMG.JPG", "file_name": "114-1480_IMG.JPG", "file_stem": "114-1480_IMG", "file_ext": ".jpg", "file_size": 2620678.0, "mtime": "2002-08-08T10:14:04+00:00", "mtime_ts": 1028801644.0, "ctime": "2002-08-08T10:14:04+00:00", "sha256_file": "8ba447d4c58409b4380a9e057faaa08e009781d4f4d4d9ec6d8d03094b2dc6b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:08 10:14:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7987", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:08 10:14:05", "EXIF DateTimeDigitized": "2002:08:08 10:14:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141480", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f170a467f333705d588316dfe832831f183b2360c8709b8a0b78fcb76c4bd482", "phash": "9e9071da233995d6", "dhash": "b830342365653919", "phash_int": -7.020986637362818e+18, "collected_at": "2026-05-22T04:30:24.511034+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1482_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1482_IMG.JPG", "file_name": "114-1482_IMG.JPG", "file_stem": "114-1482_IMG", "file_ext": ".jpg", "file_size": 1871663.0, "mtime": "2002-08-10T14:34:44+00:00", "mtime_ts": 1028990084.0, "ctime": "2002-08-10T14:34:44+00:00", "sha256_file": "f0e329c787a27153e850a04c0fc70867ef572d72c98d5e080ff5a246c07836ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:34:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7138", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:34:46", "EXIF DateTimeDigitized": "2002:08:10 14:34:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "987/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141482", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3948"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ea28e8b8213f569f4a15c91b076bcdbf747e2d98658485e401f15091b48285b", "phash": "87c1c853758e7536", "dhash": "c0c363eace6a6b77", "phash_int": -8.664423947304013e+18, "collected_at": "2026-05-22T04:30:24.630036+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1481_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1481_IMG.JPG", "file_name": "114-1481_IMG.JPG", "file_stem": "114-1481_IMG", "file_ext": ".jpg", "file_size": 2701025.0, "mtime": "2002-08-08T10:14:10+00:00", "mtime_ts": 1028801650.0, "ctime": "2002-08-08T10:14:10+00:00", "sha256_file": "363aaeab8d1284b9efe3e290a84d54acb61e36caa5707bbdd41108f7658145ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:08 10:14:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7890", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:08 10:14:12", "EXIF DateTimeDigitized": "2002:08:08 10:14:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141481", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "262", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2ec349bea2c1ee1c41d6ffe820e27df36ce2d0107dcd96086342e45716e9f98", "phash": "989377d44722bbc4", "dhash": "9c18999930b89c2c", "phash_int": -7.452481204757808e+18, "collected_at": "2026-05-22T04:30:24.652037+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1483_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1483_IMG.JPG", "file_name": "114-1483_IMG.JPG", "file_stem": "114-1483_IMG", "file_ext": ".jpg", "file_size": 1809950.0, "mtime": "2002-08-10T14:34:50+00:00", "mtime_ts": 1028990090.0, "ctime": "2002-08-10T14:34:50+00:00", "sha256_file": "2a86bde5d39d53b75a80f54e0d9cced9bbf667d0ba42fddde348ee93f70955eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:34:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6891", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:34:52", "EXIF DateTimeDigitized": "2002:08:10 14:34:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "711/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141483", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "183", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3555"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72e3b5accfbdeb4efb9929b3e315ad04f623835750f7b973a0637b1213a85d75", "phash": "f3941c9936e5c5d0", "dhash": "243989464d510303", "phash_int": -8.95058981563284e+17, "collected_at": "2026-05-22T04:30:24.768131+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1484_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1484_IMG.JPG", "file_name": "114-1484_IMG.JPG", "file_stem": "114-1484_IMG", "file_ext": ".jpg", "file_size": 2614417.0, "mtime": "2002-08-10T14:35:02+00:00", "mtime_ts": 1028990102.0, "ctime": "2002-08-10T14:35:02+00:00", "sha256_file": "0f3ed8848e71549a90a7d4a11edcd87c0e0ef9a378fd5e4418d752ec6d92bfd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8346", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:03", "EXIF DateTimeDigitized": "2002:08:10 14:35:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141484", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "187", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "42dfdebfd1f487472bda089bc9a19d1b9121260b4b37052380dc5308bbc86795", "phash": "f591971e68a82573", "dhash": "dc5c5eb313652c84", "phash_int": -7.51653505933499e+17, "collected_at": "2026-05-22T04:30:24.779127+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1485_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1485_IMG.JPG", "file_name": "114-1485_IMG.JPG", "file_stem": "114-1485_IMG", "file_ext": ".jpg", "file_size": 2623306.0, "mtime": "2002-08-10T14:35:06+00:00", "mtime_ts": 1028990106.0, "ctime": "2002-08-10T14:35:06+00:00", "sha256_file": "ae854315cc8991ee1097a54e528153d847b5e682dadf452c050228d492f999b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8388", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:07", "EXIF DateTimeDigitized": "2002:08:10 14:35:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141485", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c64e5b335fc4a3cfa0b8598195294a077281433ed896bfc55c9b3a54172e4355", "phash": "9dcfcbc8164eb01a", "dhash": "60525a8e3c922299", "phash_int": -7.075212429347607e+18, "collected_at": "2026-05-22T04:30:24.930024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1486_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1486_IMG.JPG", "file_name": "114-1486_IMG.JPG", "file_stem": "114-1486_IMG", "file_ext": ".jpg", "file_size": 2447939.0, "mtime": "2002-08-10T14:35:10+00:00", "mtime_ts": 1028990110.0, "ctime": "2002-08-10T14:35:10+00:00", "sha256_file": "9f13ef51c42e9cf4dfe827addad96f19135a64f61491e98d3588f03935eb0f6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7867", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:12", "EXIF DateTimeDigitized": "2002:08:10 14:35:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141486", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "184", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e873cebcb29d92ff1f96ff095b6224e5a76bc47dad3d8f3a5c9f941c222c5e74", "phash": "f8fab2a345e95502", "dhash": "1d393032c43691a4", "phash_int": -5.0589559380342656e+17, "collected_at": "2026-05-22T04:30:24.950122+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1488_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1488_IMG.JPG", "file_name": "114-1488_IMG.JPG", "file_stem": "114-1488_IMG", "file_ext": ".jpg", "file_size": 1465591.0, "mtime": "2002-08-10T14:35:28+00:00", "mtime_ts": 1028990128.0, "ctime": "2002-08-10T14:35:28+00:00", "sha256_file": "7307dfda7459dee35d958ac241169d244042d7e5766ec3407c673971d11ba23c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6173", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:29", "EXIF DateTimeDigitized": "2002:08:10 14:35:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "93/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[46, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141488", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2325"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09f5f238e71a05c16bbb2b1a569d4da91ad43c8a7c3ca315a8b88ddd46dcaa59", "phash": "eca9a221a6ad95f4", "dhash": "87d97252a4a2a425", "phash_int": -1.3934043442804434e+18, "collected_at": "2026-05-22T04:30:25.073127+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1487_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1487_IMG.JPG", "file_name": "114-1487_IMG.JPG", "file_stem": "114-1487_IMG", "file_ext": ".jpg", "file_size": 1583633.0, "mtime": "2002-08-10T14:35:18+00:00", "mtime_ts": 1028990118.0, "ctime": "2002-08-10T14:35:18+00:00", "sha256_file": "e3ce62ef97c64787f00dfef0b32214b74e58f70b9390f662cff5ccdf0a8ce365", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6472", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:20", "EXIF DateTimeDigitized": "2002:08:10 14:35:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1483/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 135, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141487", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "166", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2966"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b170f2375557c9c0232290efa0acd8d074845bfeebd98c7ad91966802b54787c", "phash": "c9afa223ae8da5a1", "dhash": "4349b273cada9b95", "phash_int": -3.913731277025598e+18, "collected_at": "2026-05-22T04:30:25.084126+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1489_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1489_IMG.JPG", "file_name": "114-1489_IMG.JPG", "file_stem": "114-1489_IMG", "file_ext": ".jpg", "file_size": 2781739.0, "mtime": "2002-08-10T14:35:52+00:00", "mtime_ts": 1028990152.0, "ctime": "2002-08-10T14:35:52+00:00", "sha256_file": "0373b47bbace9b26a3f63d47804408eeaf3b0a8434858711cea1bc323ccbeac3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:35:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8325", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:35:53", "EXIF DateTimeDigitized": "2002:08:10 14:35:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141489", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "174", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db6d5f4955086b8c4a0e7874994a3ee4bbb65bb2ccbcb694c9f03fc950fa5257", "phash": "cc0e619cf3f54331", "dhash": "a3736b611135b692", "phash_int": -3.742946913562574e+18, "collected_at": "2026-05-22T04:30:25.232908+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1490_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1490_IMG.JPG", "file_name": "114-1490_IMG.JPG", "file_stem": "114-1490_IMG", "file_ext": ".jpg", "file_size": 1824283.0, "mtime": "2002-08-10T14:35:58+00:00", "mtime_ts": 1028990158.0, "ctime": "2002-08-10T14:35:58+00:00", "sha256_file": "e98714972eb3f462891930ba8bd46ccee94896f7c7dd8d1f7d87cb11a5221e20", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:36:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7377", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:36:00", "EXIF DateTimeDigitized": "2002:08:10 14:36:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1389/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[60, 166, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141490", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2778"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7fa48fd06808ec68ae4ca9d81204c4f874c3cab37ce1187441b7c14abd1d823", "phash": "e3f91c0e3ed1821e", "dhash": "75939a8c4dcbd89c", "phash_int": -2.0195521103899192e+18, "collected_at": "2026-05-22T04:30:25.247082+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1491_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1491_IMG.JPG", "file_name": "114-1491_IMG.JPG", "file_stem": "114-1491_IMG", "file_ext": ".jpg", "file_size": 1875113.0, "mtime": "2002-08-10T14:36:08+00:00", "mtime_ts": 1028990168.0, "ctime": "2002-08-10T14:36:08+00:00", "sha256_file": "5e670c42a1f678aa5014540b950e56cdffcc395594cb2fb6b59b8acebbb5b53f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 14:36:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7279", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 14:36:09", "EXIF DateTimeDigitized": "2002:08:10 14:36:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "466/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[51, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141491", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3728"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb5f76799f1fab72d5bf5a5f6b660ae6a33991655e9edeac96ec0401a7c081b1", "phash": "f0f80e063ed1c63d", "dhash": "65939a990dcac89c", "phash_int": -1.0831002903960765e+18, "collected_at": "2026-05-22T04:30:25.393671+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1496_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1496_IMG.JPG", "file_name": "114-1496_IMG.JPG", "file_stem": "114-1496_IMG", "file_ext": ".jpg", "file_size": 1615105.0, "mtime": "2002-08-10T16:52:40+00:00", "mtime_ts": 1028998360.0, "ctime": "2002-08-10T16:52:40+00:00", "sha256_file": "cd52a9c231203f2d4bcc6026caf32c7b64a939248d06bfb1972a5525e2561526", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:52:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5554", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:52:42", "EXIF DateTimeDigitized": "2002:08:10 16:52:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141496", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05d796665abeb1f516e2de7a95ef3f2e921730854a624f626512f93f5d2cdfe4", "phash": "d09f2e14666723f2", "dhash": "2430286890909484", "phash_int": -3.4139593273712876e+18, "collected_at": "2026-05-22T04:30:25.404941+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1498_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1498_IMG.JPG", "file_name": "114-1498_IMG.JPG", "file_stem": "114-1498_IMG", "file_ext": ".jpg", "file_size": 2073878.0, "mtime": "2002-08-10T16:53:00+00:00", "mtime_ts": 1028998380.0, "ctime": "2002-08-10T16:53:00+00:00", "sha256_file": "59f465b1ccc59fa9218f9945223694eb55102ff07c5c8eacd7c8a0a0a03f54ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:53:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6411", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:53:01", "EXIF DateTimeDigitized": "2002:08:10 16:53:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[20, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141498", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69a9fcf93a4c19bbda905ed0868ca27f2baf8ba87017766cca359f5d90777858", "phash": "d51c5ae21a0df24f", "dhash": "70ac2e360f8ec2d8", "phash_int": -3.0904953171367726e+18, "collected_at": "2026-05-22T04:30:25.528328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1497_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1497_IMG.JPG", "file_name": "114-1497_IMG.JPG", "file_stem": "114-1497_IMG", "file_ext": ".jpg", "file_size": 1750503.0, "mtime": "2002-08-10T16:52:52+00:00", "mtime_ts": 1028998372.0, "ctime": "2002-08-10T16:52:52+00:00", "sha256_file": "f65a6b44e8351abcf045922cd31a299f29b5dcfacd41397255338570d5034c68", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:52:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6016", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:52:54", "EXIF DateTimeDigitized": "2002:08:10 16:52:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141497", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7bc81c8db2e52897a55c826381f8f8ccae7843f69e3c99de66a0982c07020f5", "phash": "c0793766d025e69b", "dhash": "8159d193916667f8", "phash_int": -4.577566631527062e+18, "collected_at": "2026-05-22T04:30:25.531328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1500_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1500_IMG.JPG", "file_name": "114-1500_IMG.JPG", "file_stem": "114-1500_IMG", "file_ext": ".jpg", "file_size": 2222641.0, "mtime": "2002-08-10T16:56:00+00:00", "mtime_ts": 1028998560.0, "ctime": "2002-08-10T16:56:00+00:00", "sha256_file": "644bd81cfd34745a7ccc4be798925c892cc223bd2ed9dbbcfd300ada0bf2fc81", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:56:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4726", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:56:01", "EXIF DateTimeDigitized": "2002:08:10 16:56:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 113, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141500", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "64", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "147", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be28bda55a11171ebc325d768385e3430229aaa9a6a5f947e0a73598c6fca402", "phash": "e18e9c6226de966c", "dhash": "9412034b8b8b9392", "phash_int": -2.1936440231100032e+18, "collected_at": "2026-05-22T04:30:25.636971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1499_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\114-1499_IMG.JPG", "file_name": "114-1499_IMG.JPG", "file_stem": "114-1499_IMG", "file_ext": ".jpg", "file_size": 1981185.0, "mtime": "2002-08-10T16:53:04+00:00", "mtime_ts": 1028998384.0, "ctime": "2002-08-10T16:53:04+00:00", "sha256_file": "7c411363fe502d5aca9bd5497102bb9fde7118c4ee802ddcd37b5b512bfad48e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:53:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6068", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:53:06", "EXIF DateTimeDigitized": "2002:08:10 16:53:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1141499", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e28db6128eacbbd988601f74ef62976ec7ee85ce9cdf488b4a22fe49c9525a0d", "phash": "c43d1fc6ba18caa6", "dhash": "3022a716c6e0e0e8", "phash_int": -4.3062507303101537e+18, "collected_at": "2026-05-22T04:30:25.663762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1522_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1522_IMG.JPG", "file_name": "115-1522_IMG.JPG", "file_stem": "115-1522_IMG", "file_ext": ".jpg", "file_size": 2069529.0, "mtime": "2002-08-11T13:23:44+00:00", "mtime_ts": 1029072224.0, "ctime": "2002-08-11T13:23:44+00:00", "sha256_file": "67a64019e73dd6823c261cbaab6e706283067c52e668e02c08ecbdaea43f1ca8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:23:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5702", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:23:45", "EXIF DateTimeDigitized": "2002:08:11 13:23:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151522", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9ee6bcadf5433b2e96320ac60a214a37cda089d0ce9fc86fd0620bb96bb93b4c", "phash": "d0ec739f6cb52190", "dhash": "0080902670785898", "phash_int": -3.392209290756022e+18, "collected_at": "2026-05-22T04:30:25.749067+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1523_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1523_IMG.JPG", "file_name": "115-1523_IMG.JPG", "file_stem": "115-1523_IMG", "file_ext": ".jpg", "file_size": 2129658.0, "mtime": "2002-08-11T13:24:20+00:00", "mtime_ts": 1029072260.0, "ctime": "2002-08-11T13:24:20+00:00", "sha256_file": "e941ffbee31caefa0272dfb57fa1cc90e5f6343ee7d2c1ac13871860b4e24515", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:24:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4748", "EXIF ExposureTime": "1/800", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:24:22", "EXIF DateTimeDigitized": "2002:08:11 13:24:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2319/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151523", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4638"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ef0cb52713681449d99c7887ee396963fd943f89aea403c092ea17be479ae09", "phash": "d3cb95cba914b434", "dhash": "7010c480814864c0", "phash_int": -3.185287609486888e+18, "collected_at": "2026-05-22T04:30:25.764061+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1524_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1524_IMG.JPG", "file_name": "115-1524_IMG.JPG", "file_stem": "115-1524_IMG", "file_ext": ".jpg", "file_size": 1440649.0, "mtime": "2002-08-11T13:24:36+00:00", "mtime_ts": 1029072276.0, "ctime": "2002-08-11T13:24:36+00:00", "sha256_file": "85ccfb04ea81d005eb670953b0fade64308e8939cfbce6cc92ca74bcf687a54a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:24:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5556", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:24:38", "EXIF DateTimeDigitized": "2002:08:11 13:24:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151524", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05bc862cd6e350a84bcb77a692ad609edff76b4c8ce0e7ca1257ee50867ce186", "phash": "ac33d0af11e97689", "dhash": "9d8587cf8f27b3a4", "phash_int": -6.038253225035336e+18, "collected_at": "2026-05-22T04:30:25.877636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1525_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1525_IMG.JPG", "file_name": "115-1525_IMG.JPG", "file_stem": "115-1525_IMG", "file_ext": ".jpg", "file_size": 1605040.0, "mtime": "2002-08-11T13:24:50+00:00", "mtime_ts": 1029072290.0, "ctime": "2002-08-11T13:24:50+00:00", "sha256_file": "26dd27ae8676cfeac3ae722a3c65b2e922e8fbd8f19f4a46cb8ab6abde3a61d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:24:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7162", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:24:52", "EXIF DateTimeDigitized": "2002:08:11 13:24:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151525", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b4b7bac0a759a0e61701fa90e5475d10a6e1e78ba9075902da694f169c47a8a", "phash": "b88c67354f2c6ca5", "dhash": "76dcbb31dc9c9eab", "phash_int": -5.148626795332081e+18, "collected_at": "2026-05-22T04:30:25.913640+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1526_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1526_IMG.JPG", "file_name": "115-1526_IMG.JPG", "file_stem": "115-1526_IMG", "file_ext": ".jpg", "file_size": 1530789.0, "mtime": "2002-08-11T13:25:12+00:00", "mtime_ts": 1029072312.0, "ctime": "2002-08-11T13:25:12+00:00", "sha256_file": "244671e5af02de92ca0e09c603a04713c8a1f239dcc3e5a007863082960e711a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:25:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6164", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:25:13", "EXIF DateTimeDigitized": "2002:08:11 13:25:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151526", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "155", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8fe7aa103a7fbdf88fd82c96c4db60df3b669578744199ca6a4ad2141d154299", "phash": "a629cd34ea27bc13", "dhash": "a6bb1b0f9cae4464", "phash_int": -6.473417362217911e+18, "collected_at": "2026-05-22T04:30:25.980641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1527_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1527_IMG.JPG", "file_name": "115-1527_IMG.JPG", "file_stem": "115-1527_IMG", "file_ext": ".jpg", "file_size": 2687450.0, "mtime": "2002-08-11T13:25:24+00:00", "mtime_ts": 1029072324.0, "ctime": "2002-08-11T13:25:24+00:00", "sha256_file": "869443388e60f0acce02f4f3193c02231013e4e780da386a096048fe4afcc8b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:25:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7641", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:25:25", "EXIF DateTimeDigitized": "2002:08:11 13:25:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151527", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6c7bb906989c898f56d5e5057ae01094f2c6ef197461a317c2466f9d6bafd6d", "phash": "9528b7c90e7276d8", "dhash": "de7a9ce7b34a0c6c", "phash_int": -7.698701488831171e+18, "collected_at": "2026-05-22T04:30:25.991642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1529_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1529_IMG.JPG", "file_name": "115-1529_IMG.JPG", "file_stem": "115-1529_IMG", "file_ext": ".jpg", "file_size": 1370947.0, "mtime": "2002-08-11T14:35:40+00:00", "mtime_ts": 1029076540.0, "ctime": "2002-08-11T14:35:40+00:00", "sha256_file": "26b39ae7088588549ad71a3e7b30fad071744433fddca99e2b3a72962fc8864d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 14:35:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3297", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 14:35:42", "EXIF DateTimeDigitized": "2002:08:11 14:35:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "97/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151529", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "776"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c167e416abdd2824805b9bd17ac446c412115990f4e69b9aa3f4a370b4709f47", "phash": "d96845263636f353", "dhash": "c3f3f8f8b9f8f878", "phash_int": -2.7808967394806364e+18, "collected_at": "2026-05-22T04:30:26.122376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1528_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1528_IMG.JPG", "file_name": "115-1528_IMG.JPG", "file_stem": "115-1528_IMG", "file_ext": ".jpg", "file_size": 1846329.0, "mtime": "2002-08-11T13:25:48+00:00", "mtime_ts": 1029072348.0, "ctime": "2002-08-11T13:25:48+00:00", "sha256_file": "889094371079dfe2ac7f98f132d74223cba3139d3ca58b40c96ad0fe4d147592", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 13:25:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3940", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 13:25:50", "EXIF DateTimeDigitized": "2002:08:11 13:25:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6423/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151528", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6423"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e19dca24a33647a0a965fea0f160e6fb7752ef197b6d3f5b88822986416a3765", "phash": "d4dba69964117cc3", "dhash": "e0e040008010d424", "phash_int": -3.108707940030121e+18, "collected_at": "2026-05-22T04:30:26.136383+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1530_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1530_IMG.JPG", "file_name": "115-1530_IMG.JPG", "file_stem": "115-1530_IMG", "file_ext": ".jpg", "file_size": 1386129.0, "mtime": "2002-08-11T14:36:06+00:00", "mtime_ts": 1029076566.0, "ctime": "2002-08-11T14:36:06+00:00", "sha256_file": "8c48c41b32e1a35f0736e230cebc42c715395ccfad6aeab0c67bfda79b5e339d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 14:36:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3080", "EXIF ExposureTime": "1/250", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 14:36:08", "EXIF DateTimeDigitized": "2002:08:11 14:36:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "721/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151530", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "721"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01f2f170b69c9b158cd7b0b23f75a739390aeed2ca9a789d289aab86c312491b", "phash": "828f1f7e68404f7c", "dhash": "6161e1c18d898989", "phash_int": -9.038971299333911e+18, "collected_at": "2026-05-22T04:30:26.202380+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1531_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1531_IMG.JPG", "file_name": "115-1531_IMG.JPG", "file_stem": "115-1531_IMG", "file_ext": ".jpg", "file_size": 1400642.0, "mtime": "2002-08-11T14:36:10+00:00", "mtime_ts": 1029076570.0, "ctime": "2002-08-11T14:36:10+00:00", "sha256_file": "cb9b9a0c4fcffef5cddc0e9513b56d27f2e34d96d78b15c445460f739db77d98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 14:36:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3166", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 14:36:12", "EXIF DateTimeDigitized": "2002:08:11 14:36:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "179/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151531", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "716"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0e69979a52eb155eb0e0c30d4d8de37876f02fdb1342b275223e4e3c9fa4c66", "phash": "828f1f7e7840435f", "dhash": "6161e18589898989", "phash_int": -9.038971299065478e+18, "collected_at": "2026-05-22T04:30:26.218379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1532_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1532_IMG.JPG", "file_name": "115-1532_IMG.JPG", "file_stem": "115-1532_IMG", "file_ext": ".jpg", "file_size": 1906460.0, "mtime": "2002-08-11T19:49:22+00:00", "mtime_ts": 1029095362.0, "ctime": "2002-08-11T19:49:22+00:00", "sha256_file": "07e19877be127f30106f73287c0a745ff17518ef165f4ba5ba288d9642a5c100", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:49:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4426", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:49:24", "EXIF DateTimeDigitized": "2002:08:11 19:49:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151532", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "865c115106312aac704141cce06d11bbc236bd4f486e974e8ea0ac01ab63de62", "phash": "8996ed103643fd9c", "dhash": "ecf4eacdb893d343", "phash_int": -8.532371790121141e+18, "collected_at": "2026-05-22T04:30:26.283644+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1533_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1533_IMG.JPG", "file_name": "115-1533_IMG.JPG", "file_stem": "115-1533_IMG", "file_ext": ".jpg", "file_size": 1337152.0, "mtime": "2002-08-11T19:49:34+00:00", "mtime_ts": 1029095374.0, "ctime": "2002-08-11T19:49:34+00:00", "sha256_file": "469446c9067d39ec5af58890c75790213feec7628f86b8b214a8b520507db76e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:49:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3318", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:49:35", "EXIF DateTimeDigitized": "2002:08:11 19:49:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "341/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[56, 43, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151533", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6820"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b6d05f40c13ed5ea880ffbe78c828ebaaa801e16b8dbfe1dc546ec837cc3318", "phash": "83d9a45d32a3dd1c", "dhash": "e8f0e0c8f0524fac", "phash_int": -8.945938464606266e+18, "collected_at": "2026-05-22T04:30:26.294640+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1535_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1535_IMG.JPG", "file_name": "115-1535_IMG.JPG", "file_stem": "115-1535_IMG", "file_ext": ".jpg", "file_size": 1820460.0, "mtime": "2002-08-11T19:50:22+00:00", "mtime_ts": 1029095422.0, "ctime": "2002-08-11T19:50:22+00:00", "sha256_file": "09e70e664a9a37c4d01d0b8214ad7ecf754acf4fe41bf2c6229473eef1dac4dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:50:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5135", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:50:23", "EXIF DateTimeDigitized": "2002:08:11 19:50:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "719/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151535", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "149", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5752"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b52f2fd9229df1e0fa5e6daf338f3ba1191568e29395b40a0f62e2d476748e6", "phash": "e0fb1ba8d27b0d90", "dhash": "9b0c860caca6d1c4", "phash_int": -2.2351623781595837e+18, "collected_at": "2026-05-22T04:30:26.398645+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1534_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1534_IMG.JPG", "file_name": "115-1534_IMG.JPG", "file_stem": "115-1534_IMG", "file_ext": ".jpg", "file_size": 1332154.0, "mtime": "2002-08-11T19:49:54+00:00", "mtime_ts": 1029095394.0, "ctime": "2002-08-11T19:49:54+00:00", "sha256_file": "102b8d45687c0157d835d931424d9d33d07e1c6afc43bbd6c98894aeb5b01ba6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:49:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4956", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:49:55", "EXIF DateTimeDigitized": "2002:08:11 19:49:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "12033/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151534", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12033"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68104e559361207e6f8a62c0cdfef518e56712315211402ea2df798cd4d9e0fa", "phash": "80fd39d4d13e4671", "dhash": "32338f4981ecbfdb", "phash_int": -9.15209528154061e+18, "collected_at": "2026-05-22T04:30:26.404646+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1538_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1538_IMG.JPG", "file_name": "115-1538_IMG.JPG", "file_stem": "115-1538_IMG", "file_ext": ".jpg", "file_size": 1057512.0, "mtime": "2002-08-11T19:53:28+00:00", "mtime_ts": 1029095608.0, "ctime": "2002-08-11T19:53:28+00:00", "sha256_file": "8091489dfeb23b99a1290bb1fdfa6b50f8a8a6885a0ece34be215972e983a24c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:53:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4254", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:53:29", "EXIF DateTimeDigitized": "2002:08:11 19:53:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11527/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 47, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151538", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "151", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11527"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61b9bf9b089e9ade5f41c409415a01e536879417beb752a7d5d7ae0b13bf05c3", "phash": "fcf2190ea2e98d0e", "dhash": "91108684e4743136", "phash_int": -2.2008588113428147e+17, "collected_at": "2026-05-22T04:30:26.521669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1537_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1537_IMG.JPG", "file_name": "115-1537_IMG.JPG", "file_stem": "115-1537_IMG", "file_ext": ".jpg", "file_size": 1850365.0, "mtime": "2002-08-11T19:51:34+00:00", "mtime_ts": 1029095494.0, "ctime": "2002-08-11T19:51:34+00:00", "sha256_file": "e8c538fd8f64b3af2aae8400c88e8e9b964a49ffaf8b136e6921e7a131d38e90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:51:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5244", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:51:36", "EXIF DateTimeDigitized": "2002:08:11 19:51:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7787/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 92, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151537", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "148", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7787"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5aa3c5bba191c2491652e5682aa87be5754ef2f0c7eef1e20684213ccf251d5a", "phash": "f38c08f2b65c69b2", "dhash": "519ec2440d8bb856", "phash_int": -8.973323872189539e+17, "collected_at": "2026-05-22T04:30:26.532653+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1539_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1539_IMG.JPG", "file_name": "115-1539_IMG.JPG", "file_stem": "115-1539_IMG", "file_ext": ".jpg", "file_size": 1044293.0, "mtime": "2002-08-11T19:54:16+00:00", "mtime_ts": 1029095656.0, "ctime": "2002-08-11T19:54:16+00:00", "sha256_file": "cfd05c1ecb5f450a726ae98f5b259958ebddaf9ddba11465225af7fdc51c4a4d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:54:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:54:18", "EXIF DateTimeDigitized": "2002:08:11 19:54:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5319/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 96, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151539", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "149", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10638"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff20bbc516d7acd710bc5947605c79d75da42b1037ab3c6c4e4cf9090509f0b5", "phash": "b6d847b6c907b449", "dhash": "0455be2f132c6ee2", "phash_int": -5.27138451345482e+18, "collected_at": "2026-05-22T04:30:26.645065+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1540_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1540_IMG.JPG", "file_name": "115-1540_IMG.JPG", "file_stem": "115-1540_IMG", "file_ext": ".jpg", "file_size": 969742.0, "mtime": "2002-08-11T19:54:54+00:00", "mtime_ts": 1029095694.0, "ctime": "2002-08-11T19:54:54+00:00", "sha256_file": "1413518a8003c82f6c8b88fdb4cbce2a9ebc347028e248e37d62c65cae5e4bc7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:54:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3846", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:54:55", "EXIF DateTimeDigitized": "2002:08:11 19:54:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3859/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151540", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3859"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9583e61fe74aae6548a93d93973386d3a4a766a7064c0eb4d8ee7db57c2b321", "phash": "c86d313733c49e9c", "dhash": "cbf1b3f1ab71f0b8", "phash_int": -4.004490380501017e+18, "collected_at": "2026-05-22T04:30:26.659061+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1541_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1541_IMG.JPG", "file_name": "115-1541_IMG.JPG", "file_stem": "115-1541_IMG", "file_ext": ".jpg", "file_size": 1733770.0, "mtime": "2002-08-11T19:55:48+00:00", "mtime_ts": 1029095748.0, "ctime": "2002-08-11T19:55:48+00:00", "sha256_file": "a2971da87eb09b8a32915dc2c2bc37dd8fa4f52e37d6a9009b20fde39c852b47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:55:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5126", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:55:49", "EXIF DateTimeDigitized": "2002:08:11 19:55:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3641/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 197, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151541", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3641"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "42b3b3037e78892fdc8bb4d87a4d2e8cb3a810a444b57a1b461d4af5e1363ca2", "phash": "f9e9e2e288c195c5", "dhash": "8b1b9291970c8143", "phash_int": -4.385700261070383e+17, "collected_at": "2026-05-22T04:30:26.752006+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1542_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1542_IMG.JPG", "file_name": "115-1542_IMG.JPG", "file_stem": "115-1542_IMG", "file_ext": ".jpg", "file_size": 1725645.0, "mtime": "2002-08-11T19:55:58+00:00", "mtime_ts": 1029095758.0, "ctime": "2002-08-11T19:55:58+00:00", "sha256_file": "2cfa1170e6ef61efed5c7c63a7353b0b6f35c2953f372a639f22b8a6017b61b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 19:55:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5164", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 19:55:59", "EXIF DateTimeDigitized": "2002:08:11 19:55:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2311/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151542", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2311"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fdd3dcf3626f27e04af06c7b3c81ff8eabd28a5c9b6ad7e14bf749ac8e0610c", "phash": "da73e1dae9a90388", "dhash": "1919113931303073", "phash_int": -2.705570620780248e+18, "collected_at": "2026-05-22T04:30:26.755098+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1544_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1544_IMG.JPG", "file_name": "115-1544_IMG.JPG", "file_stem": "115-1544_IMG", "file_ext": ".jpg", "file_size": 1452019.0, "mtime": "2002-08-11T20:03:06+00:00", "mtime_ts": 1029096186.0, "ctime": "2002-08-11T20:03:06+00:00", "sha256_file": "633b29a13785b051df97742afae6f1dbc2e903154fd8224c7123dd780f319355", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 20:03:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3720", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 20:03:07", "EXIF DateTimeDigitized": "2002:08:11 20:03:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 39, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151544", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c5933d076c4697907aa42ec87eb1376ce70172898921ee26686f400aec866eb", "phash": "91cc96f92c13ec27", "dhash": "e0f0c41c5618587c", "phash_int": -7.940806046030501e+18, "collected_at": "2026-05-22T04:30:26.858710+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1543_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1543_IMG.JPG", "file_name": "115-1543_IMG.JPG", "file_stem": "115-1543_IMG", "file_ext": ".jpg", "file_size": 1576424.0, "mtime": "2002-08-11T20:02:52+00:00", "mtime_ts": 1029096172.0, "ctime": "2002-08-11T20:02:52+00:00", "sha256_file": "9ee49b87725c1051e79fc41a79be14431034e7bb38c620f2adefaf59d02e197a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:11 20:02:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4029", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:11 20:02:53", "EXIF DateTimeDigitized": "2002:08:11 20:02:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 46, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151543", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "116", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b30070375b459a60bfcda735946b0b2885913ae5695b8c3df9ea19be080aa96f", "phash": "95f086f1c23d58e6", "dhash": "f0e0945a46d25668", "phash_int": -7.642460194743691e+18, "collected_at": "2026-05-22T04:30:26.863711+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1546_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1546_IMG.JPG", "file_name": "115-1546_IMG.JPG", "file_stem": "115-1546_IMG", "file_ext": ".jpg", "file_size": 972558.0, "mtime": "2002-08-12T17:29:22+00:00", "mtime_ts": 1029173362.0, "ctime": "2002-08-12T17:29:22+00:00", "sha256_file": "0660d5b6405c74ea3fb2589161e19f60a24a64b5ce38174ea15aa18aa84b89e4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:29:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5327", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:29:24", "EXIF DateTimeDigitized": "2002:08:12 17:29:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1827/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "90028/5", "EXIF FocalPlaneYResolution": "90028/5", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151546", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "635", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "215", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1827"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f026f9d171c07dd1eccb178c9f6b1d3c503501a4d60dd0c67722d9b68a0c868", "phash": "99e9379e50591f14", "dhash": "9b5b9399b87c3898", "phash_int": -7.356287363240616e+18, "collected_at": "2026-05-22T04:30:26.952029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1545_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1545_IMG.JPG", "file_name": "115-1545_IMG.JPG", "file_stem": "115-1545_IMG", "file_ext": ".jpg", "file_size": 2045548.0, "mtime": "2002-08-12T17:29:02+00:00", "mtime_ts": 1029173342.0, "ctime": "2002-08-12T17:29:02+00:00", "sha256_file": "4a041c6f117defd1ad8e1d31c81deeba7fb6499f6dd91d5a6bde9518b74daf8f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:29:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7741", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:29:03", "EXIF DateTimeDigitized": "2002:08:12 17:29:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151545", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cffdc2d6347355111a9e8401e9a37e4a4295369195452489cfb22a3fed131772", "phash": "813faf57b098486e", "dhash": "5a6aadbc8cd2eab6", "phash_int": -9.133388728124291e+18, "collected_at": "2026-05-22T04:30:26.977029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1547_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1547_IMG.JPG", "file_name": "115-1547_IMG.JPG", "file_stem": "115-1547_IMG", "file_ext": ".jpg", "file_size": 2092137.0, "mtime": "2002-08-12T17:46:20+00:00", "mtime_ts": 1029174380.0, "ctime": "2002-08-12T17:46:20+00:00", "sha256_file": "9bcef71da659a1b8afe4a0ad73d15ea555067fcebc57918481053672fb5269e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:46:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5081", "EXIF ExposureTime": "1/320", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:46:21", "EXIF DateTimeDigitized": "2002:08:12 17:46:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2189/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151547", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "10945"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "37bfe7eed08535c6ddb21167f81b0283e106463c73d879d902f77125b7e9cc73", "phash": "889c9f84ce4e6ea6", "dhash": "f0be3fa3fef8fccc", "phash_int": -8.602825795438744e+18, "collected_at": "2026-05-22T04:30:27.045889+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1548_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1548_IMG.JPG", "file_name": "115-1548_IMG.JPG", "file_stem": "115-1548_IMG", "file_ext": ".jpg", "file_size": 1789772.0, "mtime": "2002-08-12T17:46:38+00:00", "mtime_ts": 1029174398.0, "ctime": "2002-08-12T17:46:38+00:00", "sha256_file": "50955c6591cb30a37126acbd7c09c64cc1340bfb08252ca2f5c70cf34cae5048", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:46:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4863", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:46:39", "EXIF DateTimeDigitized": "2002:08:12 17:46:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3927/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151548", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "19635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "154ef0d68d4801f28ab04db7f56814e88107b080d43dfc62d3bf9268e9a53bf6", "phash": "889b87c84967a6f3", "dhash": "f0f89f3393bffefe", "phash_int": -8.603133368866462e+18, "collected_at": "2026-05-22T04:30:27.062890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1549_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1549_IMG.JPG", "file_name": "115-1549_IMG.JPG", "file_stem": "115-1549_IMG", "file_ext": ".jpg", "file_size": 2706196.0, "mtime": "2002-08-12T17:46:56+00:00", "mtime_ts": 1029174416.0, "ctime": "2002-08-12T17:46:56+00:00", "sha256_file": "77e6ab9935615193088de015a1c5f757d31f24eea33d7077780925ec488f6264", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:46:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6933", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:46:57", "EXIF DateTimeDigitized": "2002:08:12 17:46:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151549", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbec6582d5c9b4ca250a43283deca330da240cf242fda3d042780f1691377ade", "phash": "ac83b091986fc79d", "dhash": "fcff6767b6642723", "phash_int": -6.015770537862642e+18, "collected_at": "2026-05-22T04:30:27.152462+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1550_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1550_IMG.JPG", "file_name": "115-1550_IMG.JPG", "file_stem": "115-1550_IMG", "file_ext": ".jpg", "file_size": 1804464.0, "mtime": "2002-08-12T17:47:10+00:00", "mtime_ts": 1029174430.0, "ctime": "2002-08-12T17:47:10+00:00", "sha256_file": "93389a128ba42155595116b189dacc20dec062c58e6707da096132ddb9e0c340", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:47:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4071", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:47:11", "EXIF DateTimeDigitized": "2002:08:12 17:47:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151550", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "303", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8ea19511bfda6b1f7d507d791988e7356e16d66a741a237dde492d4496fd62b0", "phash": "8485f57b3f0f80f0", "dhash": "cc04e0e08c8888cc", "phash_int": -8.897435579112784e+18, "collected_at": "2026-05-22T04:30:27.168463+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1551_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1551_IMG.JPG", "file_name": "115-1551_IMG.JPG", "file_stem": "115-1551_IMG", "file_ext": ".jpg", "file_size": 1904822.0, "mtime": "2002-08-12T17:47:22+00:00", "mtime_ts": 1029174442.0, "ctime": "2002-08-12T17:47:22+00:00", "sha256_file": "6fd2306ed6f022e13d8df708ec07c51ad0512f5d73cf501e84d904f26dd107be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:47:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5760", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:47:23", "EXIF DateTimeDigitized": "2002:08:12 17:47:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151551", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4d42dd3f9efaa9e51955c0998a15e1b31083cfd7587b618cba1e36996a7ef8b", "phash": "c4a6c7d839479cb1", "dhash": "c0ed6c8b92b56818", "phash_int": -4.2765110646538496e+18, "collected_at": "2026-05-22T04:30:27.233892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1552_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1552_IMG.JPG", "file_name": "115-1552_IMG.JPG", "file_stem": "115-1552_IMG", "file_ext": ".jpg", "file_size": 1848316.0, "mtime": "2002-08-12T17:49:00+00:00", "mtime_ts": 1029174540.0, "ctime": "2002-08-12T17:49:00+00:00", "sha256_file": "4841c6f7c8adc9c2cec4f041e26d275976496c1f56fc979e596143204683b18a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 17:49:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4811", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 17:49:01", "EXIF DateTimeDigitized": "2002:08:12 17:49:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151552", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aba61c4f9469c4c402b4ad04eddd1e7697915cbaf886fed449d949f3b9f62b74", "phash": "d7e4b10e6af0952c", "dhash": "0ec274c0e1e8dc5c", "phash_int": -2.8899903853832054e+18, "collected_at": "2026-05-22T04:30:27.277300+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1553_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1553_IMG.JPG", "file_name": "115-1553_IMG.JPG", "file_stem": "115-1553_IMG", "file_ext": ".jpg", "file_size": 1397454.0, "mtime": "2002-08-12T21:23:40+00:00", "mtime_ts": 1029187420.0, "ctime": "2002-08-12T21:23:40+00:00", "sha256_file": "295ce859f30a5e17cbb1f1ff4461ac6728cb04e18c945249294558fd277251b8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 21:23:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4890", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 21:23:42", "EXIF DateTimeDigitized": "2002:08:12 21:23:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151553", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2105a58af2073b835b876beb6f80363695af8e0ac1751594f1c1aaddc7988dbc", "phash": "c92f548d31c136eb", "dhash": "4033c5dbdbe2c0a8", "phash_int": -3.949845382778768e+18, "collected_at": "2026-05-22T04:30:27.321498+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1554_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1554_IMG.JPG", "file_name": "115-1554_IMG.JPG", "file_stem": "115-1554_IMG", "file_ext": ".jpg", "file_size": 1520217.0, "mtime": "2002-08-12T21:23:56+00:00", "mtime_ts": 1029187436.0, "ctime": "2002-08-12T21:23:56+00:00", "sha256_file": "a916033c051c5ec1f8fdb59d6b825816d9109c30f82dcc5a2c86281c4ee4248c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:12 21:23:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5314", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:12 21:23:58", "EXIF DateTimeDigitized": "2002:08:12 21:23:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151554", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65462", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "051b9136ea77704f1bc30e93c810e6679752102d79436bcbe84752b5b68f666b", "phash": "d21c65759c91f30d", "dhash": "c4e2683c3ccccecc", "phash_int": -3.306656470584397e+18, "collected_at": "2026-05-22T04:30:27.357497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1555_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1555_IMG.JPG", "file_name": "115-1555_IMG.JPG", "file_stem": "115-1555_IMG", "file_ext": ".jpg", "file_size": 1782185.0, "mtime": "2002-08-13T17:14:02+00:00", "mtime_ts": 1029258842.0, "ctime": "2002-08-13T17:14:02+00:00", "sha256_file": "cbc1c8d230053002f0ac679e0d8d064a2eadac7af738f2adb33e43c1bdc31206", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 17:14:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5994", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 17:14:03", "EXIF DateTimeDigitized": "2002:08:13 17:14:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151555", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "481ac647dc2bb2f4d56427f6a79e3e691ab217401ce80f69acc4f9cf76c98904", "phash": "820b3d765a6dc63a", "dhash": "64eed9d18dc4c68c", "phash_int": -9.076093045502523e+18, "collected_at": "2026-05-22T04:30:27.400495+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1556_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1556_IMG.JPG", "file_name": "115-1556_IMG.JPG", "file_stem": "115-1556_IMG", "file_ext": ".jpg", "file_size": 1915066.0, "mtime": "2002-08-13T19:37:20+00:00", "mtime_ts": 1029267440.0, "ctime": "2002-08-13T19:37:20+00:00", "sha256_file": "b05caa785b9091d2e316b488e0ce1f04a1fbeef01cb4629a8dbaf49b061f7030", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 19:37:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5907", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 19:37:22", "EXIF DateTimeDigitized": "2002:08:13 19:37:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "919/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151556", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3676"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5c6a34fc00caadd23510a1419b174c3724232828d64919801e5c16459a0d2f6", "phash": "cc137369dd713344", "dhash": "58a82536a6368798", "phash_int": -3.7415199668908063e+18, "collected_at": "2026-05-22T04:30:27.453721+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1557_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1557_IMG.JPG", "file_name": "115-1557_IMG.JPG", "file_stem": "115-1557_IMG", "file_ext": ".jpg", "file_size": 1886761.0, "mtime": "2002-08-13T19:37:32+00:00", "mtime_ts": 1029267452.0, "ctime": "2002-08-13T19:37:32+00:00", "sha256_file": "345f1116ea3ff92edd64aa21790d48bcd5a8493edba7e20f4e2b0840800a429a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 19:37:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5675", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 19:37:33", "EXIF DateTimeDigitized": "2002:08:13 19:37:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "919/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[45, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151557", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3676"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31ac180274592cb3fc8cbf083b8de3e74cf77927ff804a70a31a468d5f47b78b", "phash": "cd13724ecf791944", "dhash": "49ccd272e6b38383", "phash_int": -3.6694635885629865e+18, "collected_at": "2026-05-22T04:30:27.515723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1558_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1558_IMG.JPG", "file_name": "115-1558_IMG.JPG", "file_stem": "115-1558_IMG", "file_ext": ".jpg", "file_size": 2184092.0, "mtime": "2002-08-13T19:38:42+00:00", "mtime_ts": 1029267522.0, "ctime": "2002-08-13T19:38:42+00:00", "sha256_file": "74bff42f9230f93bca5f2ac517792fae1e07b716c6d9224d613dde1bfcdb6926", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 19:38:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6549", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 19:38:44", "EXIF DateTimeDigitized": "2002:08:13 19:38:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "221/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[58, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151558", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4420"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d8e67e39e92d4cf9231337bbcee82475ee0ceaad17c4ff720a011f0df112860", "phash": "970b21b69379ac87", "dhash": "57e3e22868348ec2", "phash_int": -7.562914081196627e+18, "collected_at": "2026-05-22T04:30:27.578845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1559_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1559_IMG.JPG", "file_name": "115-1559_IMG.JPG", "file_stem": "115-1559_IMG", "file_ext": ".jpg", "file_size": 1784037.0, "mtime": "2002-08-13T19:39:00+00:00", "mtime_ts": 1029267540.0, "ctime": "2002-08-13T19:39:00+00:00", "sha256_file": "08c03ed18c81afdd4124e3c477d2453b375f63814af2c3132328ba4fb6af50fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 19:39:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6268", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 19:39:01", "EXIF DateTimeDigitized": "2002:08:13 19:39:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "787/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[55, 209, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151559", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1574"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1801f3fd69930bcb8ec7cd383af1bff19ed9d71937dd4aebd9d9cbdc057a94ba", "phash": "86a7e3cb4e92852b", "dhash": "4cce4e64626060e4", "phash_int": -8.743769689180438e+18, "collected_at": "2026-05-22T04:30:27.596849+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1560_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1560_IMG.JPG", "file_name": "115-1560_IMG.JPG", "file_stem": "115-1560_IMG", "file_ext": ".jpg", "file_size": 1883579.0, "mtime": "2002-08-13T19:39:30+00:00", "mtime_ts": 1029267570.0, "ctime": "2002-08-13T19:39:30+00:00", "sha256_file": "a97aa47b3423397e29771722b44e0f78ae9a06e3d206056d1fa6d6ad3f60aeba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 19:39:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6411", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 19:39:32", "EXIF DateTimeDigitized": "2002:08:13 19:39:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "967/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151560", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "118", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1934"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1754310afe378d8aff57503d7169dcb35d3870c8e939ef9f2d43c4660a4e14b3", "phash": "c94b3436993d1f31", "dhash": "7bc15352ca6c0e96", "phash_int": -3.941999639728939e+18, "collected_at": "2026-05-22T04:30:27.723983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1561_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1561_IMG.JPG", "file_name": "115-1561_IMG.JPG", "file_stem": "115-1561_IMG", "file_ext": ".jpg", "file_size": 2051682.0, "mtime": "2002-08-13T20:01:26+00:00", "mtime_ts": 1029268886.0, "ctime": "2002-08-13T20:01:26+00:00", "sha256_file": "d865569ef5b7e692219c3d4a907bf1dc137e058496c1589da357edf2767dc52c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 20:01:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6935", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 20:01:27", "EXIF DateTimeDigitized": "2002:08:13 20:01:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151561", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ee1a6a41b8f9ddff381e6fcb54d92b81e6249acfed39e077c2d0ab95370c8d66", "phash": "d07e7f848561c4c7", "dhash": "243898d8f4b4d8d0", "phash_int": -3.423158459604811e+18, "collected_at": "2026-05-22T04:30:27.743064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1563_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1563_IMG.JPG", "file_name": "115-1563_IMG.JPG", "file_stem": "115-1563_IMG", "file_ext": ".jpg", "file_size": 1995979.0, "mtime": "2002-08-13T20:01:50+00:00", "mtime_ts": 1029268910.0, "ctime": "2002-08-13T20:01:50+00:00", "sha256_file": "5b808e0c1563cd75d4561f714e72d5e466d174250553551b7c37a26a7c4e5f7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 20:01:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6967", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 20:01:51", "EXIF DateTimeDigitized": "2002:08:13 20:01:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151563", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65489", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1673"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2cbf62da38419f3a9899888c941d1a015b5e5af1e4c05356b6ffa49ab069df2e", "phash": "ac35e3f61c95505a", "dhash": "0e471736352323b3", "phash_int": -6.037669079239274e+18, "collected_at": "2026-05-22T04:30:27.819222+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1562_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1562_IMG.JPG", "file_name": "115-1562_IMG.JPG", "file_stem": "115-1562_IMG", "file_ext": ".jpg", "file_size": 1960475.0, "mtime": "2002-08-13T20:01:38+00:00", "mtime_ts": 1029268898.0, "ctime": "2002-08-13T20:01:38+00:00", "sha256_file": "ff00d5cd1bcc5caf31164193095a580d6f40b22c15cdfd1e0a906ad13615beea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 20:01:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6722", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 20:01:39", "EXIF DateTimeDigitized": "2002:08:13 20:01:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1903/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151562", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65513", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1903"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b8d3e3e3dc30655f58bc06f88b02192531893eef1083d3c23963a69d321a4ff", "phash": "db6474d2e61cc11d", "dhash": "849ad25359583818", "phash_int": -2.6378550325796695e+18, "collected_at": "2026-05-22T04:30:27.831219+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1565_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1565_IMG.JPG", "file_name": "115-1565_IMG.JPG", "file_stem": "115-1565_IMG", "file_ext": ".jpg", "file_size": 1808192.0, "mtime": "2002-08-13T20:02:18+00:00", "mtime_ts": 1029268938.0, "ctime": "2002-08-13T20:02:18+00:00", "sha256_file": "a222c8f207f07b8fc05f2f0ae9f4d78c35f7b638bc9809abe93657f67d3f0ebd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 20:02:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6728", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 20:02:20", "EXIF DateTimeDigitized": "2002:08:13 20:02:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "243/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151565", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1944"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "361c6bde6a0284af84e0d0db8feef61fdb09aa9cc8399e874ef39230e058f180", "phash": "aa2d2af1029ed72e", "dhash": "2b333777c78e0d45", "phash_int": -6.184239498690374e+18, "collected_at": "2026-05-22T04:30:27.945302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1564_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1564_IMG.JPG", "file_name": "115-1564_IMG.JPG", "file_stem": "115-1564_IMG", "file_ext": ".jpg", "file_size": 1815808.0, "mtime": "2002-08-13T20:02:04+00:00", "mtime_ts": 1029268924.0, "ctime": "2002-08-13T20:02:04+00:00", "sha256_file": "a1950db884512cfb849ba385da31d18404b2d6fe1b661f30490ca94862b8752c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 20:02:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6854", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 20:02:05", "EXIF DateTimeDigitized": "2002:08:13 20:02:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1551/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151564", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fa16df40be60463f12bdf263c1dca1649ee3408bc6dff530da37465452a0efdb", "phash": "ad2d57e102dec346", "dhash": "4a363737c78e064c", "phash_int": -5.968017307268627e+18, "collected_at": "2026-05-22T04:30:27.964456+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1567_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1567_IMG.JPG", "file_name": "115-1567_IMG.JPG", "file_stem": "115-1567_IMG", "file_ext": ".jpg", "file_size": 2023044.0, "mtime": "2002-08-13T21:17:34+00:00", "mtime_ts": 1029273454.0, "ctime": "2002-08-13T21:17:34+00:00", "sha256_file": "d1348db3668506c1261918fa841fd0b9f5d1cb9ee674e6958ee9ee9607553c6e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 21:17:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6156", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 21:17:35", "EXIF DateTimeDigitized": "2002:08:13 21:17:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151567", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec2872f73660700e228ea4dd20c8880fbe8f763af8563e02eca2227069baf673", "phash": "99a166365dd6246d", "dhash": "cedb9bd899b9f89a", "phash_int": -7.37650233096758e+18, "collected_at": "2026-05-22T04:30:28.098751+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1566_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1566_IMG.JPG", "file_name": "115-1566_IMG.JPG", "file_stem": "115-1566_IMG", "file_ext": ".jpg", "file_size": 2453762.0, "mtime": "2002-08-13T21:15:36+00:00", "mtime_ts": 1029273336.0, "ctime": "2002-08-13T21:15:36+00:00", "sha256_file": "7fc2314b4f222b21f57cc91db54b5d6649056e93c3d481a0bc81d66aa3f101dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 21:15:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6679", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 21:15:38", "EXIF DateTimeDigitized": "2002:08:13 21:15:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151566", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43149496b7d55b121f5fc810830930fa422c674b4f46a7ba170b55a67d104f05", "phash": "84d3035d7a64557b", "dhash": "e8f8cc973336e6e6", "phash_int": -8.875746740596878e+18, "collected_at": "2026-05-22T04:30:28.121753+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1569_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1569_IMG.JPG", "file_name": "115-1569_IMG.JPG", "file_stem": "115-1569_IMG", "file_ext": ".jpg", "file_size": 1697519.0, "mtime": "2002-08-13T21:53:50+00:00", "mtime_ts": 1029275630.0, "ctime": "2002-08-13T21:53:50+00:00", "sha256_file": "afe8506b1531c149b501a1ea2fa43ebacc0e9270cbdef0b31e79797a670b6a93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 21:53:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5594", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 21:53:52", "EXIF DateTimeDigitized": "2002:08:13 21:53:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151569", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "297829b5e69d8a75664191114abaf83b3a6a7a3273f47cda63eefcb2fcd57bef", "phash": "e1a51e415a704d7f", "dhash": "87c6068fcb978c9d", "phash_int": -2.187308777979491e+18, "collected_at": "2026-05-22T04:30:28.221266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1568_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1568_IMG.JPG", "file_name": "115-1568_IMG.JPG", "file_stem": "115-1568_IMG", "file_ext": ".jpg", "file_size": 2117893.0, "mtime": "2002-08-13T21:18:32+00:00", "mtime_ts": 1029273512.0, "ctime": "2002-08-13T21:18:32+00:00", "sha256_file": "70055556ca9bae12a193e0296c29cdf018576f24a6d8752928ba3267f33fbe63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:13 21:18:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6995", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:13 21:18:34", "EXIF DateTimeDigitized": "2002:08:13 21:18:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151568", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "53563b5feff40020d970f132c6f632df0a71013267ee10cbf56c16f381004925", "phash": "dd345663c2cac9c3", "dhash": "445e3637db1359c8", "phash_int": -2.5072841060687027e+18, "collected_at": "2026-05-22T04:30:28.233378+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1574_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1574_IMG.JPG", "file_name": "115-1574_IMG.JPG", "file_stem": "115-1574_IMG", "file_ext": ".jpg", "file_size": 2388409.0, "mtime": "2002-08-14T08:02:06+00:00", "mtime_ts": 1029312126.0, "ctime": "2002-08-14T08:02:06+00:00", "sha256_file": "268027f719eaa9f0977d4acf2bc01c39a10535e8613b9efe10ef66a3f39510f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:02:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7444", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:02:08", "EXIF DateTimeDigitized": "2002:08:14 08:02:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151574", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "46", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df3718dab74845df2a089e0bd3681813b9ba5c10f6f6c6b0604b331cbb59005a", "phash": "943ac3db3e2843e5", "dhash": "b9e8bcaeacd0e8e0", "phash_int": -7.765679261038919e+18, "collected_at": "2026-05-22T04:30:28.355364+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1573_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1573_IMG.JPG", "file_name": "115-1573_IMG.JPG", "file_stem": "115-1573_IMG", "file_ext": ".jpg", "file_size": 2034985.0, "mtime": "2002-08-14T08:01:58+00:00", "mtime_ts": 1029312118.0, "ctime": "2002-08-14T08:01:58+00:00", "sha256_file": "09e90132e66441b7a4abf8a10a14f95a2f9e325b298d643d9e96fb2159675466", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:02:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6068", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:02:00", "EXIF DateTimeDigitized": "2002:08:14 08:02:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151573", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d95fc2cd4deca76e51598bb5da55b6c0de9c14dfa54847b1c4d9efd93136a491", "phash": "d56eb21f4c613315", "dhash": "820518463278da94", "phash_int": -3.06731844869756e+18, "collected_at": "2026-05-22T04:30:28.358366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1575_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1575_IMG.JPG", "file_name": "115-1575_IMG.JPG", "file_stem": "115-1575_IMG", "file_ext": ".jpg", "file_size": 2196525.0, "mtime": "2002-08-14T08:02:14+00:00", "mtime_ts": 1029312134.0, "ctime": "2002-08-14T08:02:14+00:00", "sha256_file": "1cacd979e8a456033d101ae6c84f81642e60d6533ada7bc0b35aa0e380868689", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:02:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7053", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:02:15", "EXIF DateTimeDigitized": "2002:08:14 08:02:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151575", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6629b04234e2fbbe52498e352f03d12eb224a2a96642424c564eefed0e8a8d27", "phash": "973ad9c060693d1f", "dhash": "996c7cadecf4d0e8", "phash_int": -7.549482405058758e+18, "collected_at": "2026-05-22T04:30:28.466369+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1576_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1576_IMG.JPG", "file_name": "115-1576_IMG.JPG", "file_stem": "115-1576_IMG", "file_ext": ".jpg", "file_size": 2354923.0, "mtime": "2002-08-14T08:02:18+00:00", "mtime_ts": 1029312138.0, "ctime": "2002-08-14T08:02:18+00:00", "sha256_file": "8520fdd159f20754b6ad0bd156e3ae9bd8808f9d28495c7f072a214404b5a94b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:02:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7204", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:02:19", "EXIF DateTimeDigitized": "2002:08:14 08:02:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151576", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67b5cf54c4425b365a38eedcb4255c06f6531739ad362bcdcdf7a1bbb31199fa", "phash": "943ad8d2626b7d94", "dhash": "993c3c4decfcd0e8", "phash_int": -7.765656209341056e+18, "collected_at": "2026-05-22T04:30:28.487367+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1578_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1578_IMG.JPG", "file_name": "115-1578_IMG.JPG", "file_stem": "115-1578_IMG", "file_ext": ".jpg", "file_size": 1770194.0, "mtime": "2002-08-14T08:44:22+00:00", "mtime_ts": 1029314662.0, "ctime": "2002-08-14T08:44:22+00:00", "sha256_file": "ef417ae5019d0e42793a025140168871a864ba671b36899a8655a413348031ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:44:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6625", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:44:24", "EXIF DateTimeDigitized": "2002:08:14 08:44:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "937/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151578", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "937"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26edecd7b449e886d3df9b4a89bd205668752308fffab54e09501bfeb87e7462", "phash": "d968263c4be57259", "dhash": "a5b2929272d4d649", "phash_int": -2.78093072948806e+18, "collected_at": "2026-05-22T04:30:28.622489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1577_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1577_IMG.JPG", "file_name": "115-1577_IMG.JPG", "file_stem": "115-1577_IMG", "file_ext": ".jpg", "file_size": 1428550.0, "mtime": "2002-08-14T08:44:16+00:00", "mtime_ts": 1029314656.0, "ctime": "2002-08-14T08:44:16+00:00", "sha256_file": "d9e3c7d6f0e6771b6221a91ed7a0167b01c827bfa0b682f0f01bd2d1721de86c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:44:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4746", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:44:17", "EXIF DateTimeDigitized": "2002:08:14 08:44:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "323/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151577", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1292"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5236c90549ec4dcb6fa9010ee4fb2098bef76ab900dd569795ac465cdc8e65a8", "phash": "a827f71015de2dd2", "dhash": "fedfb3b3b5951595", "phash_int": -6.329819102787524e+18, "collected_at": "2026-05-22T04:30:28.625488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1580_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1580_IMG.JPG", "file_name": "115-1580_IMG.JPG", "file_stem": "115-1580_IMG", "file_ext": ".jpg", "file_size": 733695.0, "mtime": "2002-08-14T08:45:22+00:00", "mtime_ts": 1029314722.0, "ctime": "2002-08-14T08:45:22+00:00", "sha256_file": "3fba0251b1ab0156bfba61fb5a26c50e19c23cb58614d51339701dea83084e48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:45:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4166", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:45:23", "EXIF DateTimeDigitized": "2002:08:14 08:45:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1603/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[89, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151580", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1603"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9d25d58a18aaec2f8887175dc15aab43d92653c232be5efed720774050f9aa3", "phash": "aaaa9b93c0dc4e4e", "dhash": "791f0700c0f07c6f", "phash_int": -6.148931282322829e+18, "collected_at": "2026-05-22T04:30:28.759493+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1579_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1579_IMG.JPG", "file_name": "115-1579_IMG.JPG", "file_stem": "115-1579_IMG", "file_ext": ".jpg", "file_size": 1655609.0, "mtime": "2002-08-14T08:44:34+00:00", "mtime_ts": 1029314674.0, "ctime": "2002-08-14T08:44:34+00:00", "sha256_file": "92a068d856bf46e6b84231ef52fd141f8a6b2306d2dc48362361a35eee317381", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:44:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6898", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:44:35", "EXIF DateTimeDigitized": "2002:08:14 08:44:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[68, 198, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151579", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "135", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a7b98d9ede7aad7e22686bf7ea38289d82e97f6255e820160f2f322569e2cce", "phash": "d75ab6d949844d52", "dhash": "481c455158d66e6e", "phash_int": -2.9288275632935204e+18, "collected_at": "2026-05-22T04:30:28.770493+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1587_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1587_IMG.JPG", "file_name": "115-1587_IMG.JPG", "file_stem": "115-1587_IMG", "file_ext": ".jpg", "file_size": 852088.0, "mtime": "2002-08-14T08:52:16+00:00", "mtime_ts": 1029315136.0, "ctime": "2002-08-14T08:52:16+00:00", "sha256_file": "30cb793204417fdef5481cb42f3a751bee3dcda06b622d247b4f219b698dc265", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:52:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4996", "EXIF ExposureTime": "1/250", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:52:17", "EXIF DateTimeDigitized": "2002:08:14 08:52:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "287/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151587", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2296"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b57fdcb5645adb694783ed8cab939a31b4058329b55ec10ad06f21288d670f3", "phash": "99b9b46b73b19054", "dhash": "1f7df05f00208084", "phash_int": -7.369660941619589e+18, "collected_at": "2026-05-22T04:30:28.861905+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1581_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1581_IMG.JPG", "file_name": "115-1581_IMG.JPG", "file_stem": "115-1581_IMG", "file_ext": ".jpg", "file_size": 819420.0, "mtime": "2002-08-14T08:45:48+00:00", "mtime_ts": 1029314748.0, "ctime": "2002-08-14T08:45:48+00:00", "sha256_file": "8da4dc86b7e1efd50ad7034e40c4382b30ef1695110fda99de1b4594a4043735", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 08:45:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4227", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 08:45:49", "EXIF DateTimeDigitized": "2002:08:14 08:45:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1727/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[71, 193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151581", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "210", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1727"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85087336ecf130c6aa10890166ae558b589f2620ae244ca5f7900d7a31778f17", "phash": "a92bb393b5908597", "dhash": "9f07031184e1f876", "phash_int": -6.256709810313461e+18, "collected_at": "2026-05-22T04:30:28.873966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1588_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1588_IMG.JPG", "file_name": "115-1588_IMG.JPG", "file_stem": "115-1588_IMG", "file_ext": ".jpg", "file_size": 1236395.0, "mtime": "2002-08-14T09:11:44+00:00", "mtime_ts": 1029316304.0, "ctime": "2002-08-14T09:11:44+00:00", "sha256_file": "80f81f885d43a6fbd9f4f5102f95d6d9a4f6d1a60a6339b35f9eda3ff2c7ad89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:11:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5390", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:11:46", "EXIF DateTimeDigitized": "2002:08:14 09:11:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "149/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 210, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151588", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "745"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4afe299b127f3d0d231166be101f6e1c35a796830feb5352247714011d2b63c", "phash": "ca2fe551265bb146", "dhash": "63232961c59090a1", "phash_int": -3.8776286174440525e+18, "collected_at": "2026-05-22T04:30:28.958551+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1589_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1589_IMG.JPG", "file_name": "115-1589_IMG.JPG", "file_stem": "115-1589_IMG", "file_ext": ".jpg", "file_size": 1362270.0, "mtime": "2002-08-14T09:12:02+00:00", "mtime_ts": 1029316322.0, "ctime": "2002-08-14T09:12:02+00:00", "sha256_file": "827782413581c9504178c6b574b624f5a792c28a2c7ee2bd2add13a1bf4f7ba4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:12:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4841", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:12:03", "EXIF DateTimeDigitized": "2002:08:14 09:12:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "913/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151589", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "913"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3b09cdae5d2dad5987e49cb428ec101a69fc5235363aff1a2e69ec711b908d0", "phash": "e23d379ceca2e00d", "dhash": "372bc3c9c5c1cdcd", "phash_int": -2.144496700433965e+18, "collected_at": "2026-05-22T04:30:28.962613+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1591_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1591_IMG.JPG", "file_name": "115-1591_IMG.JPG", "file_stem": "115-1591_IMG", "file_ext": ".jpg", "file_size": 1709799.0, "mtime": "2002-08-14T09:12:46+00:00", "mtime_ts": 1029316366.0, "ctime": "2002-08-14T09:12:46+00:00", "sha256_file": "d2bbacc25baedf70c6cc87e44978da9723042442a20698c86860234f956c8a7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:12:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6835", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:12:48", "EXIF DateTimeDigitized": "2002:08:14 09:12:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151591", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "160", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c70b6b90f5618b9cf79848b14ab9a4c77c5043c0d6c158226bb146b18c0cfa6", "phash": "db7e91878690073e", "dhash": "54111124654a99d8", "phash_int": -2.6305051210735923e+18, "collected_at": "2026-05-22T04:30:29.089259+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1590_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1590_IMG.JPG", "file_name": "115-1590_IMG.JPG", "file_stem": "115-1590_IMG", "file_ext": ".jpg", "file_size": 1634744.0, "mtime": "2002-08-14T09:12:16+00:00", "mtime_ts": 1029316336.0, "ctime": "2002-08-14T09:12:16+00:00", "sha256_file": "aa1a97c7a7cd14e015ab4e38033874063fde9b52adec1897ce4f31b00b2711d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:12:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6349", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:12:17", "EXIF DateTimeDigitized": "2002:08:14 09:12:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "271/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151590", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1355"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a4525136092e99b3e13cc5719788e57c79cc956d102d84b60c04fade1f9c091", "phash": "d47c3b532dc0aa9c", "dhash": "38a4a4a4e6c888ea", "phash_int": -3.1355660121207823e+18, "collected_at": "2026-05-22T04:30:29.107256+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1592_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1592_IMG.JPG", "file_name": "115-1592_IMG.JPG", "file_stem": "115-1592_IMG", "file_ext": ".jpg", "file_size": 1450552.0, "mtime": "2002-08-14T09:13:10+00:00", "mtime_ts": 1029316390.0, "ctime": "2002-08-14T09:13:10+00:00", "sha256_file": "d16a3ffa9aa121ab521e7eec4bc835f3f6849336c6f07a4a905ed0980775dd98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:13:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6498", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:13:11", "EXIF DateTimeDigitized": "2002:08:14 09:13:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151592", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "156", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6825f504bf32970cfc0c9c993da07cfa0cc6ddd2176c737b02060b13542e8ad1", "phash": "c33886cafc8bc1ad", "dhash": "45c49b1a16c9cad0", "phash_int": -4.379602431239274e+18, "collected_at": "2026-05-22T04:30:29.177682+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1593_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1593_IMG.JPG", "file_name": "115-1593_IMG.JPG", "file_stem": "115-1593_IMG", "file_ext": ".jpg", "file_size": 1607889.0, "mtime": "2002-08-14T09:14:16+00:00", "mtime_ts": 1029316456.0, "ctime": "2002-08-14T09:14:16+00:00", "sha256_file": "4ecb71a556ab876bc089d03b46a5e57084d5dc61576b7d1e78c39ed72ab136c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:14:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6400", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:14:17", "EXIF DateTimeDigitized": "2002:08:14 09:14:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151593", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "167", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eaf820118bd5a62909c2ffa560b5a98997e982961fa38960ca63bcb86c1f4597", "phash": "fc6798c2878d9433", "dhash": "54110262cda43232", "phash_int": -2.590704922852341e+17, "collected_at": "2026-05-22T04:30:29.205127+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1595_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1595_IMG.JPG", "file_name": "115-1595_IMG.JPG", "file_stem": "115-1595_IMG", "file_ext": ".jpg", "file_size": 1339919.0, "mtime": "2002-08-14T09:15:04+00:00", "mtime_ts": 1029316504.0, "ctime": "2002-08-14T09:15:04+00:00", "sha256_file": "2557e8d028695d8e68001650c005f49ff207c69eacccca54f2bff74de07b6bec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:15:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5656", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:15:05", "EXIF DateTimeDigitized": "2002:08:14 09:15:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "519/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151595", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "172", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1038"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36f405af7dc88bc1c4fc6b970a3d0c43b2f031025431787cf86e3e91b6983896", "phash": "ad1e5116db356741", "dhash": "34736b73713f961b", "phash_int": -5.972246897237858e+18, "collected_at": "2026-05-22T04:30:29.272736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1594_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1594_IMG.JPG", "file_name": "115-1594_IMG.JPG", "file_stem": "115-1594_IMG", "file_ext": ".jpg", "file_size": 1287589.0, "mtime": "2002-08-14T09:14:42+00:00", "mtime_ts": 1029316482.0, "ctime": "2002-08-14T09:14:42+00:00", "sha256_file": "83a8edbb1c65a32ee369ab6d529a9ebbbecd734c2d3268cfe3f7deb6f5ea1c70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:14:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5270", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:14:44", "EXIF DateTimeDigitized": "2002:08:14 09:14:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "119/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 217, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151594", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "168", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "952"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1be3a04a10b0ba252583aecf767a978572163f5831f1bb8e3eaaacc75d071051", "phash": "a95f5356c2646707", "dhash": "5a3b33236b379e8b", "phash_int": -6.242178926418565e+18, "collected_at": "2026-05-22T04:30:29.281842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1596_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1596_IMG.JPG", "file_name": "115-1596_IMG.JPG", "file_stem": "115-1596_IMG", "file_ext": ".jpg", "file_size": 1524771.0, "mtime": "2002-08-14T09:15:18+00:00", "mtime_ts": 1029316518.0, "ctime": "2002-08-14T09:15:18+00:00", "sha256_file": "92d8fe0b721475599f9cb6986749a9fc8260bcab0b65f962a4dd953054c27576", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:15:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5035", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:15:19", "EXIF DateTimeDigitized": "2002:08:14 09:15:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "463/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151596", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "144", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "926"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f0f414712f5b299cd7b6c2c6656f0bb6cab7abc6cb72614bb0566bb2ed70155", "phash": "8e5564efb3b05912", "dhash": "d7e3b0f0e963251f", "phash_int": -8.190529366628739e+18, "collected_at": "2026-05-22T04:30:29.352424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1597_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1597_IMG.JPG", "file_name": "115-1597_IMG.JPG", "file_stem": "115-1597_IMG", "file_ext": ".jpg", "file_size": 1716525.0, "mtime": "2002-08-14T09:21:52+00:00", "mtime_ts": 1029316912.0, "ctime": "2002-08-14T09:21:52+00:00", "sha256_file": "e54cf9f6f42d4cdd141e19a944b39f5cbb88848f008080e986d6714500b3e50c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:21:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7184", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:21:53", "EXIF DateTimeDigitized": "2002:08:14 09:21:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151597", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "170", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e1e1d97096eb8221105dc14def3b1fc6c6e57718e34baa6c4c116200a05ecd51", "phash": "f37eb3d1079046a4", "dhash": "5d19056182909c4f", "phash_int": -9.01085165071088e+17, "collected_at": "2026-05-22T04:30:29.375424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1599_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1599_IMG.JPG", "file_name": "115-1599_IMG.JPG", "file_stem": "115-1599_IMG", "file_ext": ".jpg", "file_size": 1368177.0, "mtime": "2002-08-14T09:22:44+00:00", "mtime_ts": 1029316964.0, "ctime": "2002-08-14T09:22:44+00:00", "sha256_file": "2a06537a5abc711cbff8ab079a358e0b0e508a71712a0690b2fb35f1313b846d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:22:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6049", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:22:45", "EXIF DateTimeDigitized": "2002:08:14 09:22:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "539/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[38, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151599", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1078"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9394ccb55435521db29ab4e76434e11d868b32ac889d8765fbf2af64099aaecd", "phash": "ab1f4914d79d6681", "dhash": "327b2b3d39179bcb", "phash_int": -6.116089415080253e+18, "collected_at": "2026-05-22T04:30:29.485841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1598_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1598_IMG.JPG", "file_name": "115-1598_IMG.JPG", "file_stem": "115-1598_IMG", "file_ext": ".jpg", "file_size": 1587905.0, "mtime": "2002-08-14T09:22:30+00:00", "mtime_ts": 1029316950.0, "ctime": "2002-08-14T09:22:30+00:00", "sha256_file": "08eef287964c008ed330d079f9b50194d60533183d52a0bc5eba7f04f05d056a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:22:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6312", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:22:32", "EXIF DateTimeDigitized": "2002:08:14 09:22:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "249/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151598", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1245"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1be2abc34069d05a0552be154a8664cff5c67801f356afb561da3d394af6805", "phash": "a90f6514222e6fbd", "dhash": "7772737f3d3f9393", "phash_int": -6.264677419501851e+18, "collected_at": "2026-05-22T04:30:29.491837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1600_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\115-1600_IMG.JPG", "file_name": "115-1600_IMG.JPG", "file_stem": "115-1600_IMG", "file_ext": ".jpg", "file_size": 2967624.0, "mtime": "2002-08-14T09:52:00+00:00", "mtime_ts": 1029318720.0, "ctime": "2002-08-14T09:52:00+00:00", "sha256_file": "7638fffe2419aedcffe83f5ef26ea5380dee3c0a730ddb66772e40e3cf9febef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8953", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:02", "EXIF DateTimeDigitized": "2002:08:14 09:52:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1151600", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93f8b73ba5df7d2563cfff4b3c454bffbb81250385beff31b702e369b927acb8", "phash": "85e4b17078bdb589", "dhash": "9cc1e2f2f1ecd8d4", "phash_int": -8.798712675354955e+18, "collected_at": "2026-05-22T04:30:29.652496+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1601_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1601_IMG.JPG", "file_name": "116-1601_IMG.JPG", "file_stem": "116-1601_IMG", "file_ext": ".jpg", "file_size": 2937673.0, "mtime": "2002-08-14T09:52:06+00:00", "mtime_ts": 1029318726.0, "ctime": "2002-08-14T09:52:06+00:00", "sha256_file": "6d73bcc4f07c84704d72f00ae926e8597bb1db68e550227848cef68bc33016e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "9031", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:08", "EXIF DateTimeDigitized": "2002:08:14 09:52:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161601", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0694c1f2cb2ccd9b888d388c234b88afd7b13d8316edf6a735618618e75d835", "phash": "89f438e131c7715b", "dhash": "8ab361c4f8e3e1d9", "phash_int": -8.506111256342073e+18, "collected_at": "2026-05-22T04:30:29.664588+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1602_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1602_IMG.JPG", "file_name": "116-1602_IMG.JPG", "file_stem": "116-1602_IMG", "file_ext": ".jpg", "file_size": 3353603.0, "mtime": "2002-08-14T09:52:12+00:00", "mtime_ts": 1029318732.0, "ctime": "2002-08-14T09:52:12+00:00", "sha256_file": "9b7fce5386287bf3fae1ee92b09812d99fa191aae80681710224dd5f5ce9b168", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "9297", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:13", "EXIF DateTimeDigitized": "2002:08:14 09:52:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161602", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6229c6c5b05c602aea2e12229f4b6037fb4b9c2f470cdfefdca35b7dc0e6dda", "phash": "b5293493cd7c6364", "dhash": "963e8f34e64c248c", "phash_int": -5.39272126938714e+18, "collected_at": "2026-05-22T04:30:29.830074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1603_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1603_IMG.JPG", "file_name": "116-1603_IMG.JPG", "file_stem": "116-1603_IMG", "file_ext": ".jpg", "file_size": 3148210.0, "mtime": "2002-08-14T09:52:16+00:00", "mtime_ts": 1029318736.0, "ctime": "2002-08-14T09:52:16+00:00", "sha256_file": "0d0dd76f600e6a91527c8e08898da039c364feb0ae21afbd00fd591903a6fd8b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8483", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:18", "EXIF DateTimeDigitized": "2002:08:14 09:52:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161603", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c89729abb11d3bed7ca7e9f55a88349c331a692f0dd9e104c3ea3d172d67d4c", "phash": "8c915e8fe41e1b3c", "dhash": "e4f276a6b6633524", "phash_int": -8.317763064676083e+18, "collected_at": "2026-05-22T04:30:29.833076+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1605_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1605_IMG.JPG", "file_name": "116-1605_IMG.JPG", "file_stem": "116-1605_IMG", "file_ext": ".jpg", "file_size": 1894549.0, "mtime": "2002-08-14T09:52:46+00:00", "mtime_ts": 1029318766.0, "ctime": "2002-08-14T09:52:46+00:00", "sha256_file": "f10636d0dd8ef9edaf4c8fe06dc596ed8c6c3e30fe046343e04bddef5471c6a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4845", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:48", "EXIF DateTimeDigitized": "2002:08:14 09:52:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161605", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d07c892139519a39209a1dfa3e4c17ce9f7b175a86ce09ae0e3222db1707036", "phash": "8687077e70f0f0c7", "dhash": "e060c08001b3e5e6", "phash_int": -8.753019111129158e+18, "collected_at": "2026-05-22T04:30:30.032382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1604_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1604_IMG.JPG", "file_name": "116-1604_IMG.JPG", "file_stem": "116-1604_IMG", "file_ext": ".jpg", "file_size": 2968450.0, "mtime": "2002-08-14T09:52:38+00:00", "mtime_ts": 1029318758.0, "ctime": "2002-08-14T09:52:38+00:00", "sha256_file": "289ee989aae2546a257053320ccede58893e15ebb2c486005d9529d2bd345cb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:52:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7534", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:52:40", "EXIF DateTimeDigitized": "2002:08:14 09:52:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161604", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8db3827dbefb9864c85ab4eb636a231735229a1c212d765e11a71dbb42803354", "phash": "d9ea439862d5aca3", "dhash": "f0f8783cb934b848", "phash_int": -2.7443067011566356e+18, "collected_at": "2026-05-22T04:30:30.048482+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1606_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1606_IMG.JPG", "file_name": "116-1606_IMG.JPG", "file_stem": "116-1606_IMG", "file_ext": ".jpg", "file_size": 1915664.0, "mtime": "2002-08-14T09:53:00+00:00", "mtime_ts": 1029318780.0, "ctime": "2002-08-14T09:53:00+00:00", "sha256_file": "2c17f9a21ea28e3622032800c1a318623bf8b66da700781d1aadefc17324bf76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 09:53:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4952", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 09:53:01", "EXIF DateTimeDigitized": "2002:08:14 09:53:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161606", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ffcedff4ec5e48879de7f7aa50faafa1533745cc9588f00d96e1b8790cbe683", "phash": "8781073d78fcf483", "dhash": "c0c0c0000322ebe6", "phash_int": -8.682650645989363e+18, "collected_at": "2026-05-22T04:30:30.199225+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1608_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1608_IMG.JPG", "file_name": "116-1608_IMG.JPG", "file_stem": "116-1608_IMG", "file_ext": ".jpg", "file_size": 2586141.0, "mtime": "2002-08-14T10:13:32+00:00", "mtime_ts": 1029320012.0, "ctime": "2002-08-14T10:13:32+00:00", "sha256_file": "7d2776d15575587d6761965613f0331547ce58367a8f8494c49a4abf9415bc5f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:13:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8273", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:13:33", "EXIF DateTimeDigitized": "2002:08:14 10:13:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161608", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06836fd25f8482c009c41cc8c1a1360f8988f7e3dae9d8d0fdad7930eca4d964", "phash": "db81051cdb2bb78c", "dhash": "f8f0d85929153109", "phash_int": -2.6298150859133604e+18, "collected_at": "2026-05-22T04:30:30.205224+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1609_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1609_IMG.JPG", "file_name": "116-1609_IMG.JPG", "file_stem": "116-1609_IMG", "file_ext": ".jpg", "file_size": 2154568.0, "mtime": "2002-08-14T10:13:54+00:00", "mtime_ts": 1029320034.0, "ctime": "2002-08-14T10:13:54+00:00", "sha256_file": "7ad2fccb5dc092ac926f87c39477a264c52e1d90f8315ef7833578e418ad2f72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:13:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7659", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:13:56", "EXIF DateTimeDigitized": "2002:08:14 10:13:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1927/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161609", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3854"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdab3acf370f381bad928547431d02f1c08c40f824ca6ca7de0c4ce645daea6c", "phash": "c3f8919318cec778", "dhash": "999103a381c4c0c0", "phash_int": -4.3255473811269366e+18, "collected_at": "2026-05-22T04:30:30.350500+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1610_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1610_IMG.JPG", "file_name": "116-1610_IMG.JPG", "file_stem": "116-1610_IMG", "file_ext": ".jpg", "file_size": 2034335.0, "mtime": "2002-08-14T10:14:00+00:00", "mtime_ts": 1029320040.0, "ctime": "2002-08-14T10:14:00+00:00", "sha256_file": "506eaa0bb1cc7082d867461b3d48b77fe3f80a580d4f08adfeaea44f7d8739f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:14:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7592", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:14:01", "EXIF DateTimeDigitized": "2002:08:14 10:14:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2693/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161610", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2693"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa79606e9dd92a5386e224519a567baaf15a64d17f43673e2b2015940dc38c31", "phash": "e1f8989098dac3fa", "dhash": "9982470382c0c0c0", "phash_int": -2.163811874144337e+18, "collected_at": "2026-05-22T04:30:30.358623+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1612_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1612_IMG.JPG", "file_name": "116-1612_IMG.JPG", "file_stem": "116-1612_IMG", "file_ext": ".jpg", "file_size": 1922548.0, "mtime": "2002-08-14T10:15:56+00:00", "mtime_ts": 1029320156.0, "ctime": "2002-08-14T10:15:56+00:00", "sha256_file": "bef49a478584a0aa970a2f94db88fc4c37705bfb373e9c30cf21de5dcec28086", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:15:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7107", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:15:58", "EXIF DateTimeDigitized": "2002:08:14 10:15:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161612", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a0df30c92eacf80e27531764fa99ff6bdd075e613d3bd05719249975cd1564a", "phash": "fea13f19d48a4392", "dhash": "1b1fd59594393424", "phash_int": -9.872833665287691e+16, "collected_at": "2026-05-22T04:30:30.487629+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1611_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1611_IMG.JPG", "file_name": "116-1611_IMG.JPG", "file_stem": "116-1611_IMG", "file_ext": ".jpg", "file_size": 2249714.0, "mtime": "2002-08-14T10:14:54+00:00", "mtime_ts": 1029320094.0, "ctime": "2002-08-14T10:14:54+00:00", "sha256_file": "d89d5bdb4dbc91c77cc1c7af221e4ceb5086df0d5267464e8f7529428ea5a7b6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:14:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8089", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:14:55", "EXIF DateTimeDigitized": "2002:08:14 10:14:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161611", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "098944e654b1f31f2790f5c73efbfff766f89833226401aa2b7de837a14c1da4", "phash": "82ee939a7abd7021", "dhash": "79e4c60793a8e8d8", "phash_int": -9.012103512628302e+18, "collected_at": "2026-05-22T04:30:30.495628+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1614_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1614_IMG.JPG", "file_name": "116-1614_IMG.JPG", "file_stem": "116-1614_IMG", "file_ext": ".jpg", "file_size": 1851432.0, "mtime": "2002-08-14T10:16:12+00:00", "mtime_ts": 1029320172.0, "ctime": "2002-08-14T10:16:12+00:00", "sha256_file": "34b035efbe0883eedbe0e1791bdd2a52a3719554431d9c1df6e03dc1dc4ecdfe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:16:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6753", "EXIF ExposureTime": "1/500", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:16:14", "EXIF DateTimeDigitized": "2002:08:14 10:16:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3809/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161614", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3809"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e29eb466b9129955c0bf486509578202f8d34c0ca7cc53c72c593dbc51bd627", "phash": "fdaba4a74a346486", "dhash": "0303072940060626", "phash_int": -1.6785952268482035e+17, "collected_at": "2026-05-22T04:30:30.581722+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1613_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1613_IMG.JPG", "file_name": "116-1613_IMG.JPG", "file_stem": "116-1613_IMG", "file_ext": ".jpg", "file_size": 2063138.0, "mtime": "2002-08-14T10:16:08+00:00", "mtime_ts": 1029320168.0, "ctime": "2002-08-14T10:16:08+00:00", "sha256_file": "efe28a155c2e993de42520425f58a71792a474a55fff9041da65243ab5eef1a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:16:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6771", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:16:09", "EXIF DateTimeDigitized": "2002:08:14 10:16:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1499/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161613", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "14990"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67690978f92418a96e8ebc7b0968067fc50eece9a2927c650001e7700964ea1a", "phash": "ffaba4a14a356486", "dhash": "0303072b40060624", "phash_int": -2.374436037870271e+16, "collected_at": "2026-05-22T04:30:30.597725+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1615_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1615_IMG.JPG", "file_name": "116-1615_IMG.JPG", "file_stem": "116-1615_IMG", "file_ext": ".jpg", "file_size": 2332176.0, "mtime": "2002-08-14T10:16:24+00:00", "mtime_ts": 1029320184.0, "ctime": "2002-08-14T10:16:24+00:00", "sha256_file": "ab8ac71fc5e352f71d7feafb802ccfb344ba0dc74cb16ce138d4e38736a52779", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:16:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7954", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:16:26", "EXIF DateTimeDigitized": "2002:08:14 10:16:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1301/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161615", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6505"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3c30372970399a5e0d85f169760023b707fe6a16586ff6aae16afe98a16b62c", "phash": "fe9434acef0b1113", "dhash": "263c98e163636969", "phash_int": -1.0239897417317963e+17, "collected_at": "2026-05-22T04:30:30.730728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1616_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1616_IMG.JPG", "file_name": "116-1616_IMG.JPG", "file_stem": "116-1616_IMG", "file_ext": ".jpg", "file_size": 2099473.0, "mtime": "2002-08-14T10:16:28+00:00", "mtime_ts": 1029320188.0, "ctime": "2002-08-14T10:16:28+00:00", "sha256_file": "d4b0e9beeaf8245f7ce6dc94a1f8d24bb2ca6627182b93fc62408d996bc6dbef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 10:16:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7850", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 10:16:30", "EXIF DateTimeDigitized": "2002:08:14 10:16:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "311/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161616", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "210", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3110"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cbf3dd18fdaf3e716201e684279ef9b391014a931eb983bfd589789a846b0afd", "phash": "fe9434ad6f091117", "dhash": "262c98a16323672d", "phash_int": -1.0239897202582706e+17, "collected_at": "2026-05-22T04:30:30.742733+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1617_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1617_IMG.JPG", "file_name": "116-1617_IMG.JPG", "file_stem": "116-1617_IMG", "file_ext": ".jpg", "file_size": 1215832.0, "mtime": "2002-08-14T12:36:10+00:00", "mtime_ts": 1029328570.0, "ctime": "2002-08-14T12:36:10+00:00", "sha256_file": "265d5db70ae2c46c6c9a4f5bd553df06a50a98d6cb88dd0de903ada0d0a25965", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 12:36:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5886", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 12:36:11", "EXIF DateTimeDigitized": "2002:08:14 12:36:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "33891/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "6204831/280", "EXIF FocalPlaneYResolution": "4653623/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161617", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "782", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "33891"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0813f62119b44f08e785cbc313e0fc5894ad4f24104bb2712ac507d45429b907", "phash": "a333b3b212561737", "dhash": "cd9b2ebaeff7e5e6", "phash_int": -6.686803444321872e+18, "collected_at": "2026-05-22T04:30:30.852910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1618_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1618_IMG.JPG", "file_name": "116-1618_IMG.JPG", "file_stem": "116-1618_IMG", "file_ext": ".jpg", "file_size": 990381.0, "mtime": "2002-08-14T12:36:18+00:00", "mtime_ts": 1029328578.0, "ctime": "2002-08-14T12:36:18+00:00", "sha256_file": "9974b3178e2917a60fae83241f03abfbb46b2fe14a022948af8460cabf484d21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 12:36:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5301", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 12:36:19", "EXIF DateTimeDigitized": "2002:08:14 12:36:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161618", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e32c92ce1ec7ec12b88abd9dd35114f267e782d4bd4e59dc682e072bb946706", "phash": "a92da9b1b292dacc", "dhash": "3b5733cda7c9d8cd", "phash_int": -6.256157726677476e+18, "collected_at": "2026-05-22T04:30:30.868908+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1619_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1619_IMG.JPG", "file_name": "116-1619_IMG.JPG", "file_stem": "116-1619_IMG", "file_ext": ".jpg", "file_size": 1119065.0, "mtime": "2002-08-14T12:36:24+00:00", "mtime_ts": 1029328584.0, "ctime": "2002-08-14T12:36:24+00:00", "sha256_file": "162237907cc66fe94d80960bf794ec377e7bbbfaeaccf3b5a79c306d177bbdac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 12:36:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6202", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 12:36:26", "EXIF DateTimeDigitized": "2002:08:14 12:36:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "567/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161619", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "14175"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fd5df89ba1331700542bf62462817283cda1ce5f0a724d14775b93ef09b7e5da", "phash": "a1a92dbcb898daca", "dhash": "3b56f9ddec9cc0cc", "phash_int": -6.797851873964926e+18, "collected_at": "2026-05-22T04:30:31.004697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1620_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1620_IMG.JPG", "file_name": "116-1620_IMG.JPG", "file_stem": "116-1620_IMG", "file_ext": ".jpg", "file_size": 2208336.0, "mtime": "2002-08-14T13:11:26+00:00", "mtime_ts": 1029330686.0, "ctime": "2002-08-14T13:11:26+00:00", "sha256_file": "81e0de8852afecf1ed61fb70f9a0972904822c7ab36fa217816b312962ba4943", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 13:11:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6186", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 13:11:28", "EXIF DateTimeDigitized": "2002:08:14 13:11:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4089/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161620", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4089"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eced2207b4040f0ee898e109a5569706119374798904d9689aa97fb66c9394fa", "phash": "f160f1e351599743", "dhash": "8287e8bcace698de", "phash_int": -1.0535763541799999e+18, "collected_at": "2026-05-22T04:30:31.029697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1621_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1621_IMG.JPG", "file_name": "116-1621_IMG.JPG", "file_stem": "116-1621_IMG", "file_ext": ".jpg", "file_size": 1839618.0, "mtime": "2002-08-14T13:11:52+00:00", "mtime_ts": 1029330712.0, "ctime": "2002-08-14T13:11:52+00:00", "sha256_file": "328962afa9009303ebaaeb8cadf829de3926ddd6c37e6ec1db0ea8c06a531ee6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 13:11:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5404", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 13:11:53", "EXIF DateTimeDigitized": "2002:08:14 13:11:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "689/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161621", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2756"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a65f2bd3c2cd948999f77ec2dc379288bd91a568a3688b44cc8c3b8de72f0c0", "phash": "8ff0dec3b0363e01", "dhash": "00c020b3d2686373", "phash_int": -8.074709199818965e+18, "collected_at": "2026-05-22T04:30:31.128701+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1623_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1623_IMG.JPG", "file_name": "116-1623_IMG.JPG", "file_stem": "116-1623_IMG", "file_ext": ".jpg", "file_size": 1759242.0, "mtime": "2002-08-14T20:02:00+00:00", "mtime_ts": 1029355320.0, "ctime": "2002-08-14T20:02:00+00:00", "sha256_file": "c08cbbf340739922651408875f23cffa2b79a3ef4c2dca58457b97afe3648241", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:02:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5792", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:02:01", "EXIF DateTimeDigitized": "2002:08:14 20:02:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161623", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e460e745f4370f124ff5de52ab8606c4a1c287b2ca0a9fa42f6411ec4e50e2d", "phash": "c934f6ce81f84ec2", "dhash": "810931d2d26329e0", "phash_int": -3.9482596064928527e+18, "collected_at": "2026-05-22T04:30:31.145703+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1624_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1624_IMG.JPG", "file_name": "116-1624_IMG.JPG", "file_stem": "116-1624_IMG", "file_ext": ".jpg", "file_size": 1772079.0, "mtime": "2002-08-14T20:02:10+00:00", "mtime_ts": 1029355330.0, "ctime": "2002-08-14T20:02:10+00:00", "sha256_file": "614b6526c9f6d9a374f667cfaeff784ebf1c348e0af0ee22595f772dddfb42e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:02:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5234", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:02:12", "EXIF DateTimeDigitized": "2002:08:14 20:02:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161624", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0481d586047eb7ce3bf9777940b0ad8d21f7b0c73d7e2543aeb7a3181b126a84", "phash": "936d36e1c57ae0c4", "dhash": "88f1d3d0d09ba96c", "phash_int": -7.823536634363978e+18, "collected_at": "2026-05-22T04:30:31.252041+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1625_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1625_IMG.JPG", "file_name": "116-1625_IMG.JPG", "file_stem": "116-1625_IMG", "file_ext": ".jpg", "file_size": 1590014.0, "mtime": "2002-08-14T20:02:24+00:00", "mtime_ts": 1029355344.0, "ctime": "2002-08-14T20:02:24+00:00", "sha256_file": "b4b107bafed44b7f7140feb5f8c3758e28d1fdb61d04e6c65cf4841ad6af15bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:02:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6121", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:02:25", "EXIF DateTimeDigitized": "2002:08:14 20:02:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161625", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5f1af16578cec9212f686404541608b32ccd3cdea9b82c7e1193d754f90372f5", "phash": "c10616e9563d33b7", "dhash": "e1e0c4d4c3d392a2", "phash_int": -4.5379143830991534e+18, "collected_at": "2026-05-22T04:30:31.264045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1626_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1626_IMG.JPG", "file_name": "116-1626_IMG.JPG", "file_stem": "116-1626_IMG", "file_ext": ".jpg", "file_size": 1980237.0, "mtime": "2002-08-14T20:03:00+00:00", "mtime_ts": 1029355380.0, "ctime": "2002-08-14T20:03:00+00:00", "sha256_file": "577ebebf8a8f7a59c044dcae4adc9037111fde85b154d94c494b54d8face7e67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:03:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6063", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:03:02", "EXIF DateTimeDigitized": "2002:08:14 20:03:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3021/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161626", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3021"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf0ee0c3770f7dacfba96a2f5978f157823dea0c68f6ad3bce29e89089759203", "phash": "936dee1a832de90a", "dhash": "c948f8d8d898f9c9", "phash_int": -7.823335180035299e+18, "collected_at": "2026-05-22T04:30:31.355207+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1627_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1627_IMG.JPG", "file_name": "116-1627_IMG.JPG", "file_stem": "116-1627_IMG", "file_ext": ".jpg", "file_size": 1855846.0, "mtime": "2002-08-14T20:03:12+00:00", "mtime_ts": 1029355392.0, "ctime": "2002-08-14T20:03:12+00:00", "sha256_file": "81809199408188d7b915cfd85fcfc9d9906286fd002ffc18317e4411d7743dcb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:03:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6017", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:03:13", "EXIF DateTimeDigitized": "2002:08:14 20:03:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "919/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161627", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3676"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "895b2a33c49a64e89f60db88171cbeb1775283ce45abfe539cbce3755737b207", "phash": "ec4c2363871db8f8", "dhash": "ce263676d6959cdd", "phash_int": -1.4197208721529423e+18, "collected_at": "2026-05-22T04:30:31.381209+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1628_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1628_IMG.JPG", "file_name": "116-1628_IMG.JPG", "file_stem": "116-1628_IMG", "file_ext": ".jpg", "file_size": 1477730.0, "mtime": "2002-08-14T20:03:26+00:00", "mtime_ts": 1029355406.0, "ctime": "2002-08-14T20:03:26+00:00", "sha256_file": "ee32ad707147d88f8af6cd55c487d72dd99cf7b7c18c8a183a941faa8afa5aca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:03:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5584", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:03:27", "EXIF DateTimeDigitized": "2002:08:14 20:03:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161628", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1295"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5072977209974191d23e64a4d39141c9d66e76c38307e1935bb48953f155781d", "phash": "807d42eba4365be6", "dhash": "91224cb4abdbe5e5", "phash_int": -9.18811408492617e+18, "collected_at": "2026-05-22T04:30:31.452413+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1629_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1629_IMG.JPG", "file_name": "116-1629_IMG.JPG", "file_stem": "116-1629_IMG", "file_ext": ".jpg", "file_size": 1635033.0, "mtime": "2002-08-14T20:03:34+00:00", "mtime_ts": 1029355414.0, "ctime": "2002-08-14T20:03:34+00:00", "sha256_file": "ecad564a3967f56162dc0bd7d97cfa4cecfea2aa3f021bd58c971cdc60b87f9c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:03:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5208", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:03:35", "EXIF DateTimeDigitized": "2002:08:14 20:03:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "139/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161629", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1390"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0faa9b188e5a694ef6a97e8a1e39a5fdb98aa6b9bad21f66fc6b042f98dec92", "phash": "cc33b42db25c8769", "dhash": "3c75f1f1e2623338", "phash_int": -3.7324415578010726e+18, "collected_at": "2026-05-22T04:30:31.475660+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1636_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1636_IMG.JPG", "file_name": "116-1636_IMG.JPG", "file_stem": "116-1636_IMG", "file_ext": ".jpg", "file_size": 1498504.0, "mtime": "2002-08-14T20:59:32+00:00", "mtime_ts": 1029358772.0, "ctime": "2002-08-14T20:59:32+00:00", "sha256_file": "e73cd5217d1acb926260e803c07f8f8ea9b7c8f81a5ccfdd5fcae2ae1dc74ccd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 20:59:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5289", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 20:59:34", "EXIF DateTimeDigitized": "2002:08:14 20:59:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161636", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70e5dedc9c04310c805d600be0e7f97645dbab372ff26b69caa91cc9946f8ba9", "phash": "8d78722ba34d8b1e", "dhash": "8f94323272ea62ea", "phash_int": -8.252720785407505e+18, "collected_at": "2026-05-22T04:30:31.526667+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1637_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1637_IMG.JPG", "file_name": "116-1637_IMG.JPG", "file_stem": "116-1637_IMG", "file_ext": ".jpg", "file_size": 1334817.0, "mtime": "2002-08-14T21:00:06+00:00", "mtime_ts": 1029358806.0, "ctime": "2002-08-14T21:00:06+00:00", "sha256_file": "eb48a5f970831d94792a3f6d45ac1f7ae52111afa974b5741246a29548413088", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 21:00:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3748", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 21:00:07", "EXIF DateTimeDigitized": "2002:08:14 21:00:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 285, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161637", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47dc2ad46bad839b2560af6701b73618aacaaaf5c39ad1f9cc0e780938b6a3ee", "phash": "986566926b64dc9b", "dhash": "eef2b2f2f9b8b839", "phash_int": -7.465448028243699e+18, "collected_at": "2026-05-22T04:30:31.576664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1639_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1639_IMG.JPG", "file_name": "116-1639_IMG.JPG", "file_stem": "116-1639_IMG", "file_ext": ".jpg", "file_size": 1497027.0, "mtime": "2002-08-14T21:27:20+00:00", "mtime_ts": 1029360440.0, "ctime": "2002-08-14T21:27:20+00:00", "sha256_file": "45f8f17d20d0cbc2a1ce98fb3933c2d56c934b18e707bd5aea47446c0e32a70c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 21:27:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4459", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 21:27:22", "EXIF DateTimeDigitized": "2002:08:14 21:27:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161639", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96b8f488efd4b64be87da1a6dc129105b7af189604333fdb3797cde4bf25a27c", "phash": "c33c3cda6c91c366", "dhash": "3646c8cac9c8c8e8", "phash_int": -4.3785578288889354e+18, "collected_at": "2026-05-22T04:30:31.609667+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1640_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1640_IMG.JPG", "file_name": "116-1640_IMG.JPG", "file_stem": "116-1640_IMG", "file_ext": ".jpg", "file_size": 1777955.0, "mtime": "2002-08-14T21:34:00+00:00", "mtime_ts": 1029360840.0, "ctime": "2002-08-14T21:34:00+00:00", "sha256_file": "da970cdcb929f9bb6a7469db5117981f3563c01bf66bd0c12aa4dc5821e5a0f7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 21:34:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5441", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 21:34:01", "EXIF DateTimeDigitized": "2002:08:14 21:34:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161640", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46ebfef880047820a60e0e55d11f37d3bb1c7f9720d1fc8d12fe683e48a9ae36", "phash": "c3251cc8e7532bdc", "dhash": "e8ead8cae3c1f8e8", "phash_int": -4.385067012975285e+18, "collected_at": "2026-05-22T04:30:31.667668+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1641_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1641_IMG.JPG", "file_name": "116-1641_IMG.JPG", "file_stem": "116-1641_IMG", "file_ext": ".jpg", "file_size": 1518978.0, "mtime": "2002-08-14T21:34:34+00:00", "mtime_ts": 1029360874.0, "ctime": "2002-08-14T21:34:34+00:00", "sha256_file": "79c1c1cbaedcdcf387bc1d9fd64b5cad08257b781623489a61e676631c870c40", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:14 21:34:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4723", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:14 21:34:36", "EXIF DateTimeDigitized": "2002:08:14 21:34:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161641", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19b31ce1176a7c202883ea888d958700681ace48f7906a8af83e13dd9b4d91cd", "phash": "cf24335aa1dc097e", "dhash": "e0a664606371785a", "phash_int": -3.52063254434126e+18, "collected_at": "2026-05-22T04:30:31.681882+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1643_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1643_IMG.JPG", "file_name": "116-1643_IMG.JPG", "file_stem": "116-1643_IMG", "file_ext": ".jpg", "file_size": 1903893.0, "mtime": "2002-08-15T19:13:56+00:00", "mtime_ts": 1029438836.0, "ctime": "2002-08-15T19:13:56+00:00", "sha256_file": "d2cc1721ecfd15f625613230a3aaec91e2e04f49e9271c1e2ef584b2982a7998", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:13:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7341", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:13:58", "EXIF DateTimeDigitized": "2002:08:15 19:13:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161643", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "205", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d46e35b22de944291d57d5e367aad6bd30d54af68a2ece15cc80d49024ee717", "phash": "c6c8e1e1347e3369", "dhash": "80c07165d45820a4", "phash_int": -4.122797101493112e+18, "collected_at": "2026-05-22T04:30:31.790022+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1642_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1642_IMG.JPG", "file_name": "116-1642_IMG.JPG", "file_stem": "116-1642_IMG", "file_ext": ".jpg", "file_size": 1943574.0, "mtime": "2002-08-15T19:12:28+00:00", "mtime_ts": 1029438748.0, "ctime": "2002-08-15T19:12:28+00:00", "sha256_file": "857720b24fa877d6264d76659da2272cafdd17e0aad009a79a195233dd70acbd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:12:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6079", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:12:29", "EXIF DateTimeDigitized": "2002:08:15 19:12:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161642", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "918da9019d55047bb628caf20a22021912962bd34de395fe5fa3322b30979f2a", "phash": "8795d0d1652d2f1e", "dhash": "8ae86b67d7e87a78", "phash_int": -8.67679950929519e+18, "collected_at": "2026-05-22T04:30:31.795027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1644_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1644_IMG.JPG", "file_name": "116-1644_IMG.JPG", "file_stem": "116-1644_IMG", "file_ext": ".jpg", "file_size": 1643913.0, "mtime": "2002-08-15T19:14:04+00:00", "mtime_ts": 1029438844.0, "ctime": "2002-08-15T19:14:04+00:00", "sha256_file": "7f5c9e241d3e4d8ae9de8862b43950459662e1f1a8b087da9664382704969a55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:14:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6458", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:14:05", "EXIF DateTimeDigitized": "2002:08:15 19:14:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161644", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "45d70f36a2d30e3fce1f230391d584b5e3bd0595f19e7187fb844d94237cc4ba", "phash": "cdeff090d3b09c44", "dhash": "4663624bc0f2aa8a", "phash_int": -3.607400271682954e+18, "collected_at": "2026-05-22T04:30:31.911369+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1645_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1645_IMG.JPG", "file_name": "116-1645_IMG.JPG", "file_stem": "116-1645_IMG", "file_ext": ".jpg", "file_size": 1884711.0, "mtime": "2002-08-15T19:14:18+00:00", "mtime_ts": 1029438858.0, "ctime": "2002-08-15T19:14:18+00:00", "sha256_file": "442f6e913bef8a3b4d2f61211a77ac8f7ecb33a0affc9ab85a3c9ddfe62bf66b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:14:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7519", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:14:20", "EXIF DateTimeDigitized": "2002:08:15 19:14:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161645", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "217", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fce5c465eab8ef175b2425b5614c11f00c18af757d6294abf7b66366bdc77c8a", "phash": "d89887b2a6cf692c", "dhash": "787030398f116066", "phash_int": -2.8393703636845583e+18, "collected_at": "2026-05-22T04:30:31.926445+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1646_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1646_IMG.JPG", "file_name": "116-1646_IMG.JPG", "file_stem": "116-1646_IMG", "file_ext": ".jpg", "file_size": 1940194.0, "mtime": "2002-08-15T19:14:48+00:00", "mtime_ts": 1029438888.0, "ctime": "2002-08-15T19:14:48+00:00", "sha256_file": "d27f6d5aaaa9c60dcd5d1123a48868f951e8fad0e6c2a792fabcf45232503c7a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:14:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7310", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:14:49", "EXIF DateTimeDigitized": "2002:08:15 19:14:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2439/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161646", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12195"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86300f21e27c02e881e51b0a998673b4a9f049ed533fe419855362ee2693752e", "phash": "d496d2d4f2e9c5a0", "dhash": "38707227a4f222c1", "phash_int": -3.128081079111924e+18, "collected_at": "2026-05-22T04:30:32.047664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1647_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1647_IMG.JPG", "file_name": "116-1647_IMG.JPG", "file_stem": "116-1647_IMG", "file_ext": ".jpg", "file_size": 1750457.0, "mtime": "2002-08-15T19:20:32+00:00", "mtime_ts": 1029439232.0, "ctime": "2002-08-15T19:20:32+00:00", "sha256_file": "848a96e06b432d20c7b51c367c894195f3c57a589bd08377aafb051eb57fd05b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:20:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5948", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:20:33", "EXIF DateTimeDigitized": "2002:08:15 19:20:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161647", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "111", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "966fb0300208a7d8a6bce1361494178833dd0bcfa2f67abdca665db4929a6f9e", "phash": "d93227ccf9926668", "dhash": "db9bad1813e6708a", "phash_int": -2.796128657329724e+18, "collected_at": "2026-05-22T04:30:32.068664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1648_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1648_IMG.JPG", "file_name": "116-1648_IMG.JPG", "file_stem": "116-1648_IMG", "file_ext": ".jpg", "file_size": 1625656.0, "mtime": "2002-08-15T19:20:46+00:00", "mtime_ts": 1029439246.0, "ctime": "2002-08-15T19:20:46+00:00", "sha256_file": "61040d8eecf216a860e383ad6c922c6a53913d7e11ac03fcb81e19c89436a52f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:20:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5678", "EXIF ExposureTime": "1/50", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:20:48", "EXIF DateTimeDigitized": "2002:08:15 19:20:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "11/2", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161648", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "180", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5500"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "941ca385f59050dceaf1c747bc80f94adf1e850cdcead5d27dffa79bddc1c19b", "phash": "ecd5954e7a256b20", "dhash": "aa54aa2b01c3c6b8", "phash_int": -1.3810335464299287e+18, "collected_at": "2026-05-22T04:30:32.135667+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1649_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1649_IMG.JPG", "file_name": "116-1649_IMG.JPG", "file_stem": "116-1649_IMG", "file_ext": ".jpg", "file_size": 2706284.0, "mtime": "2002-08-15T19:21:02+00:00", "mtime_ts": 1029439262.0, "ctime": "2002-08-15T19:21:02+00:00", "sha256_file": "95832a6adf81db3505eb8306331ff9e41fb1cc78bf29665b688e8e93653437bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:21:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7704", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:21:03", "EXIF DateTimeDigitized": "2002:08:15 19:21:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161649", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "168", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "850164c50b95b260a4edb678c9683120ba14d624aef662d762b39ab378903be6", "phash": "f2dedfe0a04d16c0", "dhash": "000069af8d9fc9ec", "phash_int": -9.460727158461504e+17, "collected_at": "2026-05-22T04:30:32.162753+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1650_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1650_IMG.JPG", "file_name": "116-1650_IMG.JPG", "file_stem": "116-1650_IMG", "file_ext": ".jpg", "file_size": 2228119.0, "mtime": "2002-08-15T19:21:06+00:00", "mtime_ts": 1029439266.0, "ctime": "2002-08-15T19:21:06+00:00", "sha256_file": "6e90ad2d4c6a5cd4437621af4f697c46fae92776d5387b1d7b91c3dac7b1bae5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:21:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6138", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:21:08", "EXIF DateTimeDigitized": "2002:08:15 19:21:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161650", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "110", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e3b80e9c855c09b57866e1e10adfa9458b18aaca99a169bf6478718b08c50566", "phash": "a4a5a0da5858bdbe", "dhash": "9fc6662c21238d9f", "phash_int": -6.582678420686587e+18, "collected_at": "2026-05-22T04:30:32.297167+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1651_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1651_IMG.JPG", "file_name": "116-1651_IMG.JPG", "file_stem": "116-1651_IMG", "file_ext": ".jpg", "file_size": 2434693.0, "mtime": "2002-08-15T19:21:14+00:00", "mtime_ts": 1029439274.0, "ctime": "2002-08-15T19:21:14+00:00", "sha256_file": "b804371b9793e514ae83981521e8becb87523e11955a5b7413a9822bab92a99f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:21:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6811", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:21:16", "EXIF DateTimeDigitized": "2002:08:15 19:21:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161651", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "188", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cedf4c313f1f43b7718041b8a4afc747e2bfe2b0d2a2cbea5b8265ab9b1f1f8", "phash": "814d747472ccda97", "dhash": "9ac2f3f3f9f3c6cc", "phash_int": -9.129512826119071e+18, "collected_at": "2026-05-22T04:30:32.300178+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1652_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1652_IMG.JPG", "file_name": "116-1652_IMG.JPG", "file_stem": "116-1652_IMG", "file_ext": ".jpg", "file_size": 2043020.0, "mtime": "2002-08-15T19:21:20+00:00", "mtime_ts": 1029439280.0, "ctime": "2002-08-15T19:21:20+00:00", "sha256_file": "215cec6f40e60a06477611e9448293425dc045e1909aad1d1904b92bebacf5ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:21:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6057", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:21:22", "EXIF DateTimeDigitized": "2002:08:15 19:21:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161652", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb825eb84658dc2fab4597dc8757db1043a1541615509e2838152b5ac649d9a7", "phash": "8db1b231bc8c4fe8", "dhash": "ba9cf272b2f2e2b0", "phash_int": -8.236606316797473e+18, "collected_at": "2026-05-22T04:30:32.505617+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1653_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1653_IMG.JPG", "file_name": "116-1653_IMG.JPG", "file_stem": "116-1653_IMG", "file_ext": ".jpg", "file_size": 1822550.0, "mtime": "2002-08-15T19:21:56+00:00", "mtime_ts": 1029439316.0, "ctime": "2002-08-15T19:21:56+00:00", "sha256_file": "e18dd08bcf003f52aae29d60a0b4f0b6d076ed4a9b4681f16bb2e249004c072b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:21:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6180", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:21:57", "EXIF DateTimeDigitized": "2002:08:15 19:21:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161653", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f97f7f3dd37c30edb29d901c6f1f9ae41c812ed80dc0ce2e75f9f02cd1d5d71b", "phash": "d8d6d75c6838684e", "dhash": "20803191b0b2b8b0", "phash_int": -2.821831324615547e+18, "collected_at": "2026-05-22T04:30:32.508619+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1655_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1655_IMG.JPG", "file_name": "116-1655_IMG.JPG", "file_stem": "116-1655_IMG", "file_ext": ".jpg", "file_size": 1874011.0, "mtime": "2002-08-15T19:22:26+00:00", "mtime_ts": 1029439346.0, "ctime": "2002-08-15T19:22:26+00:00", "sha256_file": "e032d64ce65a63617ecaa914544f2604308469177dda726691d4237683c0795e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:22:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7056", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:22:28", "EXIF DateTimeDigitized": "2002:08:15 19:22:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161655", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0372f0938f5a0853ca6ab9bdcf60d487f0ea0b6ed952dbef8a39f112ed1365ba", "phash": "ce8195db5d34389c", "dhash": "f0c3e36161296920", "phash_int": -3.5664046605066424e+18, "collected_at": "2026-05-22T04:30:32.635525+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1654_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1654_IMG.JPG", "file_name": "116-1654_IMG.JPG", "file_stem": "116-1654_IMG", "file_ext": ".jpg", "file_size": 1863571.0, "mtime": "2002-08-15T19:22:00+00:00", "mtime_ts": 1029439320.0, "ctime": "2002-08-15T19:22:00+00:00", "sha256_file": "bc331e8629843df33d0cb79051e81a29904ed05564094bfedd48b952cb5fead6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:22:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6276", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:22:02", "EXIF DateTimeDigitized": "2002:08:15 19:22:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161654", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "913345c0d7e31047d9a407d16b349d54cc25c94640420596c0ec1f651c787949", "phash": "c8f96936363e0e0e", "dhash": "081033b8cccc87a5", "phash_int": -3.965022315363824e+18, "collected_at": "2026-05-22T04:30:32.701109+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1656_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1656_IMG.JPG", "file_name": "116-1656_IMG.JPG", "file_stem": "116-1656_IMG", "file_ext": ".jpg", "file_size": 2027192.0, "mtime": "2002-08-15T19:22:30+00:00", "mtime_ts": 1029439350.0, "ctime": "2002-08-15T19:22:30+00:00", "sha256_file": "2343342d00eff77efc895012ce6c468dc003dc6d18de9f868fa0a2f6ee611bac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:22:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6970", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:22:32", "EXIF DateTimeDigitized": "2002:08:15 19:22:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161656", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd79fef0789d67c6ad120e1868cada199b5e3030012833446e4799b91954bd80", "phash": "f2f4ede9af80011a", "dhash": "1704fced4d935648", "phash_int": -9.398648342860265e+17, "collected_at": "2026-05-22T04:30:32.703112+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1657_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1657_IMG.JPG", "file_name": "116-1657_IMG.JPG", "file_stem": "116-1657_IMG", "file_ext": ".jpg", "file_size": 1610991.0, "mtime": "2002-08-15T19:22:46+00:00", "mtime_ts": 1029439366.0, "ctime": "2002-08-15T19:22:46+00:00", "sha256_file": "ca68ec1764a6993c1b0e688ffb53d458c041469020135b14501b854573e3406c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:22:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5388", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:22:48", "EXIF DateTimeDigitized": "2002:08:15 19:22:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161657", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "251", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb128ba50cb2fd8177cbfa2b3ef6d922300fd70f23d4f6c0e243f00fd685e347", "phash": "f08f97300f52c9f4", "dhash": "f0ccc1c9949f8c8c", "phash_int": -1.1125043502659149e+18, "collected_at": "2026-05-22T04:30:32.793248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1658_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1658_IMG.JPG", "file_name": "116-1658_IMG.JPG", "file_stem": "116-1658_IMG", "file_ext": ".jpg", "file_size": 1860770.0, "mtime": "2002-08-15T19:22:52+00:00", "mtime_ts": 1029439372.0, "ctime": "2002-08-15T19:22:52+00:00", "sha256_file": "2063c0e24b4e61d1475f9070b19fc578fa2f8556e1f6c674634bf4162a1ebba6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:22:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6386", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:22:53", "EXIF DateTimeDigitized": "2002:08:15 19:22:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161658", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de90be70b3f97560dbd09484034bcc3aac64a61fa5ab3d8710f08f94de2ebcab", "phash": "d0ffd500aa3c1fc1", "dhash": "b4803a3191f59590", "phash_int": -3.3867541959265403e+18, "collected_at": "2026-05-22T04:30:32.819249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1659_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1659_IMG.JPG", "file_name": "116-1659_IMG.JPG", "file_stem": "116-1659_IMG", "file_ext": ".jpg", "file_size": 1820803.0, "mtime": "2002-08-15T19:22:58+00:00", "mtime_ts": 1029439378.0, "ctime": "2002-08-15T19:22:58+00:00", "sha256_file": "e7ee54180798085c2b55b24f73ace28687fa35e07731e729b2c4523299ab3f12", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:23:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5975", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:23:00", "EXIF DateTimeDigitized": "2002:08:15 19:23:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161659", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "238", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3cbe94b80b31bcf2db741d8bb3125355ebb0c7a1334a199a71998a640d340a7b", "phash": "d5aaefa938850572", "dhash": "e0c088d494e8c080", "phash_int": -3.0503622875133363e+18, "collected_at": "2026-05-22T04:30:32.958978+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1660_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1660_IMG.JPG", "file_name": "116-1660_IMG.JPG", "file_stem": "116-1660_IMG", "file_ext": ".jpg", "file_size": 1452261.0, "mtime": "2002-08-15T19:23:08+00:00", "mtime_ts": 1029439388.0, "ctime": "2002-08-15T19:23:08+00:00", "sha256_file": "b5e974a48123af61a3c967c739c7e70539e0c4b880ede27626b8f12b113ce388", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:23:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3590", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:23:09", "EXIF DateTimeDigitized": "2002:08:15 19:23:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161660", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "642d5a562b310a1c341bf7ad9c08d39dcc02884bc6a301ea890f28bea26d609a", "phash": "80c33fff4f4f8090", "dhash": "f8f8f8e1e0f8faee", "phash_int": -9.168414050616377e+18, "collected_at": "2026-05-22T04:30:32.964977+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1661_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1661_IMG.JPG", "file_name": "116-1661_IMG.JPG", "file_stem": "116-1661_IMG", "file_ext": ".jpg", "file_size": 1556630.0, "mtime": "2002-08-15T19:23:12+00:00", "mtime_ts": 1029439392.0, "ctime": "2002-08-15T19:23:12+00:00", "sha256_file": "547463fe95f0cc78f9b42c0e483b79c5ead02ccb16867dc75e3caa5fe8f28540", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:23:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4353", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:23:14", "EXIF DateTimeDigitized": "2002:08:15 19:23:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161661", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eaf2e4ed5f6c8e06158242716f8a427293ccf0cd31af04d0d616dfb3f98fc09e", "phash": "91dce7e071173c8c", "dhash": "dce07ed8fcbeeefc", "phash_int": -7.936213492177618e+18, "collected_at": "2026-05-22T04:30:33.080216+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1662_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1662_IMG.JPG", "file_name": "116-1662_IMG.JPG", "file_stem": "116-1662_IMG", "file_ext": ".jpg", "file_size": 1815963.0, "mtime": "2002-08-15T19:23:22+00:00", "mtime_ts": 1029439402.0, "ctime": "2002-08-15T19:23:22+00:00", "sha256_file": "97645664a5c98f705641f46b477fee2a27d256975b5b7d32c6200058217e1864", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:23:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6473", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:23:23", "EXIF DateTimeDigitized": "2002:08:15 19:23:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161662", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "191", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2743b9d3cb229cb6e2d0b4a68f666ec4ced6d7eb37189cda827ed3ae0ff92c5f", "phash": "a79be1a0c4e5d85a", "dhash": "ae7b6b666d4fcee6", "phash_int": -6.36924916737102e+18, "collected_at": "2026-05-22T04:30:33.118307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1663_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1663_IMG.JPG", "file_name": "116-1663_IMG.JPG", "file_stem": "116-1663_IMG", "file_ext": ".jpg", "file_size": 1419830.0, "mtime": "2002-08-15T19:23:50+00:00", "mtime_ts": 1029439430.0, "ctime": "2002-08-15T19:23:50+00:00", "sha256_file": "fde189cb9a9cf2f8503d8baba3a6ccfc4d7a6ec4b89ce38858ee92b12e004d32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:23:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6575", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:23:51", "EXIF DateTimeDigitized": "2002:08:15 19:23:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "711/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[62, 124, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161663", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "176", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2844"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49d8a16d605e865859bde33a219055d43f630001ff1153b7c1b1168e5b2255d9", "phash": "8c7b5aed65ac60d0", "dhash": "0a692f66e6e666ec", "phash_int": -8.323959510604685e+18, "collected_at": "2026-05-22T04:30:33.231937+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1664_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1664_IMG.JPG", "file_name": "116-1664_IMG.JPG", "file_stem": "116-1664_IMG", "file_ext": ".jpg", "file_size": 1903304.0, "mtime": "2002-08-15T19:29:48+00:00", "mtime_ts": 1029439788.0, "ctime": "2002-08-15T19:29:48+00:00", "sha256_file": "f497bc8e3945edfdfe329bc85d817f164e60c3486adf556cd043a6afd14be958", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:29:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7536", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:29:49", "EXIF DateTimeDigitized": "2002:08:15 19:29:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1071/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161664", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4284"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b25b03bf66671d98f1924cb08ec4fe8b7e917856c583fffcd4481a9321619fb", "phash": "cdb02f54e09bad0b", "dhash": "329273d9c6626863", "phash_int": -3.625345658441192e+18, "collected_at": "2026-05-22T04:30:33.246039+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1665_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1665_IMG.JPG", "file_name": "116-1665_IMG.JPG", "file_stem": "116-1665_IMG", "file_ext": ".jpg", "file_size": 818368.0, "mtime": "2002-08-15T19:30:08+00:00", "mtime_ts": 1029439808.0, "ctime": "2002-08-15T19:30:08+00:00", "sha256_file": "cb5df1f20e44b9954484be4b2092693b75c04f24ce282570daa166f94d78128b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:30:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5798", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:30:09", "EXIF DateTimeDigitized": "2002:08:15 19:30:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2789/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "8065599/280", "EXIF FocalPlaneYResolution": "6049199/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161665", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "169", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "216", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5578"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c88ad6a2c0bd7953f091724f23eba545ea32be51b53a557ab7b13f31f0da93f4", "phash": "82469b8d3d90bd37", "dhash": "f0cceccccccbcadb", "phash_int": -9.059382569483585e+18, "collected_at": "2026-05-22T04:30:33.339111+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1666_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1666_IMG.JPG", "file_name": "116-1666_IMG.JPG", "file_stem": "116-1666_IMG", "file_ext": ".jpg", "file_size": 1733292.0, "mtime": "2002-08-15T19:37:34+00:00", "mtime_ts": 1029440254.0, "ctime": "2002-08-15T19:37:34+00:00", "sha256_file": "20bd4d793b5184841948050e635a1abbf1c20841e3db75af849033c3ca0c8885", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:37:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7572", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:37:36", "EXIF DateTimeDigitized": "2002:08:15 19:37:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161666", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "164", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "150aa6d3d219d032fc8bd3bb831c9817daaf46eefcd8ba9bfb4e90d2f7bd6303", "phash": "d43bc694da25e453", "dhash": "6c200b3bb8b6a6e4", "phash_int": -3.1537087714255247e+18, "collected_at": "2026-05-22T04:30:33.365299+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1667_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1667_IMG.JPG", "file_name": "116-1667_IMG.JPG", "file_stem": "116-1667_IMG", "file_ext": ".jpg", "file_size": 1555222.0, "mtime": "2002-08-15T19:37:40+00:00", "mtime_ts": 1029440260.0, "ctime": "2002-08-15T19:37:40+00:00", "sha256_file": "af1c6a478f91756f21fac96e0891dfef70c5dee57a8f9a0c51acaf75e3e9e3b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:37:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6627", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:37:41", "EXIF DateTimeDigitized": "2002:08:15 19:37:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 174, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161667", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "151", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "206", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec94bf285337ec75226eceb3eba0ce282fa2163a8c9da11b19c2675bc8f2627b", "phash": "e6d43aad552a2457", "dhash": "34208c09c6e70b18", "phash_int": -1.813760233790889e+18, "collected_at": "2026-05-22T04:30:33.494717+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1668_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1668_IMG.JPG", "file_name": "116-1668_IMG.JPG", "file_stem": "116-1668_IMG", "file_ext": ".jpg", "file_size": 1669453.0, "mtime": "2002-08-15T19:37:48+00:00", "mtime_ts": 1029440268.0, "ctime": "2002-08-15T19:37:48+00:00", "sha256_file": "9190979da3383c81bf3499fc80c29738c21ea5931c153beeec3cfddd95bd86c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:37:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6919", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:37:49", "EXIF DateTimeDigitized": "2002:08:15 19:37:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161668", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef497e1bb9778e1823db68d1af6d06e077d2caccf5b3deeef534c7895dbb9c19", "phash": "8fe6742999350ed2", "dhash": "6c09646af9f31ef8", "phash_int": -8.077641159629533e+18, "collected_at": "2026-05-22T04:30:33.501715+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1669_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1669_IMG.JPG", "file_name": "116-1669_IMG.JPG", "file_stem": "116-1669_IMG", "file_ext": ".jpg", "file_size": 1692233.0, "mtime": "2002-08-15T19:37:56+00:00", "mtime_ts": 1029440276.0, "ctime": "2002-08-15T19:37:56+00:00", "sha256_file": "2fcad4ecf46fd05dd0f5d51521c0c6b68e2bcc3ad44773b76aabb132f270e9e8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:37:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5594", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:37:57", "EXIF DateTimeDigitized": "2002:08:15 19:37:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161669", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "220", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9c7c98be43731ac12bc7755d227bf31f75a35b02d899026957ebc232dfd1821", "phash": "8683a0e0787f4eb7", "dhash": "cccc6c68f8e0d6b8", "phash_int": -8.753976364723384e+18, "collected_at": "2026-05-22T04:30:33.670049+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1670_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1670_IMG.JPG", "file_name": "116-1670_IMG.JPG", "file_stem": "116-1670_IMG", "file_ext": ".jpg", "file_size": 1673364.0, "mtime": "2002-08-15T19:40:08+00:00", "mtime_ts": 1029440408.0, "ctime": "2002-08-15T19:40:08+00:00", "sha256_file": "018856b1db370ebe53a11085014cabe293fdc493436433eb25288cb15ca9e9ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:40:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6021", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:40:10", "EXIF DateTimeDigitized": "2002:08:15 19:40:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161670", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca7ddf0afcb76c22530075786741867e7fac002d14cba835395afdf3f5f60e0f", "phash": "83a1dcd8b1d7834e", "dhash": "8caacacecb586037", "phash_int": -8.961638960235838e+18, "collected_at": "2026-05-22T04:30:33.684057+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1671_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1671_IMG.JPG", "file_name": "116-1671_IMG.JPG", "file_stem": "116-1671_IMG", "file_ext": ".jpg", "file_size": 1620221.0, "mtime": "2002-08-15T19:40:12+00:00", "mtime_ts": 1029440412.0, "ctime": "2002-08-15T19:40:12+00:00", "sha256_file": "0959e5677f88d1c17d56785f19c70474cb35bbf2a0d0c404e3fab4ed1b6a11e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:40:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5747", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:40:14", "EXIF DateTimeDigitized": "2002:08:15 19:40:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161671", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3172beef9d34e0a1da90b0f899ee5b728719c28b53406d7cfbdcf3382837e40", "phash": "8087bfe185765f30", "dhash": "f8fab0e8f0988e3c", "phash_int": -9.185161939671163e+18, "collected_at": "2026-05-22T04:30:33.809481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1672_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1672_IMG.JPG", "file_name": "116-1672_IMG.JPG", "file_stem": "116-1672_IMG", "file_ext": ".jpg", "file_size": 1667313.0, "mtime": "2002-08-15T19:40:18+00:00", "mtime_ts": 1029440418.0, "ctime": "2002-08-15T19:40:18+00:00", "sha256_file": "e734524b28cdf1de618dceeaa5b793d3e55896123ebefa80c731aef18a16200d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:40:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5791", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:40:19", "EXIF DateTimeDigitized": "2002:08:15 19:40:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161672", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "201", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64522a487153f048d0f71cfcb7654f1e51e901084235016bb4a31bfd478a209f", "phash": "c1a89bf7d83c033a", "dhash": "f0e9d7a280463cf0", "phash_int": -4.4921691395150305e+18, "collected_at": "2026-05-22T04:30:33.824481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1673_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1673_IMG.JPG", "file_name": "116-1673_IMG.JPG", "file_stem": "116-1673_IMG", "file_ext": ".jpg", "file_size": 1629082.0, "mtime": "2002-08-15T19:40:36+00:00", "mtime_ts": 1029440436.0, "ctime": "2002-08-15T19:40:36+00:00", "sha256_file": "e96821d9b8e1a64d1300dac18185f95b30db309b400c45358d3415342c32e300", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:40:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5144", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:40:38", "EXIF DateTimeDigitized": "2002:08:15 19:40:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161673", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "188", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d136906a8145d8d75b8fba8f0f10bf729d7ad0001bc33ebd24804bffac1805ba", "phash": "f9c964cd264d9331", "dhash": "93939393999b9398", "phash_int": -4.4771585567296224e+17, "collected_at": "2026-05-22T04:30:33.941485+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1674_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1674_IMG.JPG", "file_name": "116-1674_IMG.JPG", "file_stem": "116-1674_IMG", "file_ext": ".jpg", "file_size": 1575946.0, "mtime": "2002-08-15T19:40:44+00:00", "mtime_ts": 1029440444.0, "ctime": "2002-08-15T19:40:44+00:00", "sha256_file": "ee1ade8fc286d9bb64a272366f01181da523ae36c08b3569421d3d7075d103d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:40:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5103", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:40:45", "EXIF DateTimeDigitized": "2002:08:15 19:40:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161674", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8ab3ae783dbd7b57b427c21d344c5198ade08cf198f47b68e7c67d72671d489", "phash": "f34b11986669d959", "dhash": "919d898d8d999d8c", "phash_int": -9.156187529888498e+17, "collected_at": "2026-05-22T04:30:33.961488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1675_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1675_IMG.JPG", "file_name": "116-1675_IMG.JPG", "file_stem": "116-1675_IMG", "file_ext": ".jpg", "file_size": 1929423.0, "mtime": "2002-08-15T19:41:02+00:00", "mtime_ts": 1029440462.0, "ctime": "2002-08-15T19:41:02+00:00", "sha256_file": "b4e6dd79272d107347eefe65ee9de87c625aab423e1b412da2eaf8929f3febd1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:41:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6116", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:41:03", "EXIF DateTimeDigitized": "2002:08:15 19:41:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[114, 31, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161675", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "214", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb73bb1c04522824290c100c857d66b6cddb699a85d1b09adb18bf83a6b1a17e", "phash": "c9d596aa950a7617", "dhash": "014060f3c683e3fa", "phash_int": -3.9030478426575693e+18, "collected_at": "2026-05-22T04:30:34.058489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1676_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1676_IMG.JPG", "file_name": "116-1676_IMG.JPG", "file_stem": "116-1676_IMG", "file_ext": ".jpg", "file_size": 1733725.0, "mtime": "2002-08-15T19:41:10+00:00", "mtime_ts": 1029440470.0, "ctime": "2002-08-15T19:41:10+00:00", "sha256_file": "2ec1e14a28d674a37c29f43f10019bf644fe0a366bb02b3656b8a345ce6f7621", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:41:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6261", "EXIF ExposureTime": "1/40", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:41:12", "EXIF DateTimeDigitized": "2002:08:15 19:41:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "25861/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161676", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "176", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "25861"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3b6844f9cf39810b008732a77fcd922db8008e498e298d5b70c133b9e09bb5a", "phash": "c8d596aa952a5756", "dhash": "005060e38683e3f2", "phash_int": -3.975105436693408e+18, "collected_at": "2026-05-22T04:30:34.088589+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1677_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1677_IMG.JPG", "file_name": "116-1677_IMG.JPG", "file_stem": "116-1677_IMG", "file_ext": ".jpg", "file_size": 1764563.0, "mtime": "2002-08-15T19:41:16+00:00", "mtime_ts": 1029440476.0, "ctime": "2002-08-15T19:41:16+00:00", "sha256_file": "39918a755d2ca0dd6702d397de56c7819c9a78484d9ec3ad8ba0758a8c4dd07a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:41:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5483", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:41:18", "EXIF DateTimeDigitized": "2002:08:15 19:41:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "47527/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161677", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "208", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "47527"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9ff0c2469bf1757700b6bd1d103762f4795ea549f1d6825c647d6b62f1e83373", "phash": "d1d4a625285af6d5", "dhash": "80e00891d24ef001", "phash_int": -3.3268515461989033e+18, "collected_at": "2026-05-22T04:30:34.207740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1678_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1678_IMG.JPG", "file_name": "116-1678_IMG.JPG", "file_stem": "116-1678_IMG", "file_ext": ".jpg", "file_size": 1472633.0, "mtime": "2002-08-15T19:41:28+00:00", "mtime_ts": 1029440488.0, "ctime": "2002-08-15T19:41:28+00:00", "sha256_file": "8b42799cf40dbfad4cfa55642422dc49f1f3d25facbb1389a06392566c27d6c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:41:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4951", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:41:30", "EXIF DateTimeDigitized": "2002:08:15 19:41:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "157/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161678", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3140"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "637c16c7ec77e523f8019c0dc24d0547ba495778b4efd9d42cd0d09f7518cb5c", "phash": "cedb903b2a6fc490", "dhash": "e0d86063bd6166c6", "phash_int": -3.541078098207325e+18, "collected_at": "2026-05-22T04:30:34.233199+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1680_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1680_IMG.JPG", "file_name": "116-1680_IMG.JPG", "file_stem": "116-1680_IMG", "file_ext": ".jpg", "file_size": 1708710.0, "mtime": "2002-08-15T19:52:38+00:00", "mtime_ts": 1029441158.0, "ctime": "2002-08-15T19:52:38+00:00", "sha256_file": "ac8b1fe02a52379a77e4cc07ce1f92cf45d3c7654a67f3f7edfdb178b2a2720e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:52:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4669", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:52:40", "EXIF DateTimeDigitized": "2002:08:15 19:52:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[48, 220, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161680", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "127", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b779c48de8e103def12e6e026a880af6a8a4ff2752e84489060098141c797b21", "phash": "d9f2a2f9c699030e", "dhash": "8909f1303092b0e0", "phash_int": -2.7419500294527375e+18, "collected_at": "2026-05-22T04:30:34.356203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1681_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1681_IMG.JPG", "file_name": "116-1681_IMG.JPG", "file_stem": "116-1681_IMG", "file_ext": ".jpg", "file_size": 1709373.0, "mtime": "2002-08-15T19:53:06+00:00", "mtime_ts": 1029441186.0, "ctime": "2002-08-15T19:53:06+00:00", "sha256_file": "57da66f11565b3c1592475e1f0035077ef21c919a1df9863f0639b705061e084", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:53:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4646", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:53:07", "EXIF DateTimeDigitized": "2002:08:15 19:53:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161681", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a3d95870269b71361b3a676a9a6212920ca8bc419ae93d158f7ba84443a6d76", "phash": "d5c3639a1d4ac267", "dhash": "d8cac07070f0c068", "phash_int": -3.0434794096047713e+18, "collected_at": "2026-05-22T04:30:34.372202+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1682_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1682_IMG.JPG", "file_name": "116-1682_IMG.JPG", "file_stem": "116-1682_IMG", "file_ext": ".jpg", "file_size": 1597232.0, "mtime": "2002-08-15T19:54:20+00:00", "mtime_ts": 1029441260.0, "ctime": "2002-08-15T19:54:20+00:00", "sha256_file": "03f251fedd5c2b26e9f33fef3b56bd718e789c3c69afbea41f1cc1720d9be08f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:54:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4834", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:54:22", "EXIF DateTimeDigitized": "2002:08:15 19:54:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[35, 228, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161682", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "394a1b3cfaa236ae6dd1e6bd9ccc021a7df5104aeb00261c229752bb75ac456d", "phash": "8db0e2c9cc74635e", "dhash": "82fbd9b47252e0e8", "phash_int": -8.236834362114153e+18, "collected_at": "2026-05-22T04:30:34.529020+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1683_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1683_IMG.JPG", "file_name": "116-1683_IMG.JPG", "file_stem": "116-1683_IMG", "file_ext": ".jpg", "file_size": 2128354.0, "mtime": "2002-08-15T19:54:30+00:00", "mtime_ts": 1029441270.0, "ctime": "2002-08-15T19:54:30+00:00", "sha256_file": "319d40a72c3c351fbf3034b52c2940d77b81157320580d6f844d9c50dda8dbe6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 19:54:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3451", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 19:54:32", "EXIF DateTimeDigitized": "2002:08:15 19:54:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161683", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "108", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5952a4a8b0f24fb99c681eeabb2bdf6f536cca1d00ebdeeabc0891cbffef04b", "phash": "952f540e36f474b4", "dhash": "64e1c8f8f8f8f4f4", "phash_int": -7.696840818124623e+18, "collected_at": "2026-05-22T04:30:34.534011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1685_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1685_IMG.JPG", "file_name": "116-1685_IMG.JPG", "file_stem": "116-1685_IMG", "file_ext": ".jpg", "file_size": 1534963.0, "mtime": "2002-08-15T20:32:26+00:00", "mtime_ts": 1029443546.0, "ctime": "2002-08-15T20:32:26+00:00", "sha256_file": "6200e01f0dcba649402e518cdbe496f53155f92a950af503ec034e47a56d3bfe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 20:32:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4631", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 20:32:28", "EXIF DateTimeDigitized": "2002:08:15 20:32:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161685", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65435", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c566f602050cb57fca04e5fab1e5bcfd397147748f404c2bc7bd12ced9c52c6", "phash": "c8272790476e3fcc", "dhash": "90e424e2b0b1b1b6", "phash_int": -4.0242042414050673e+18, "collected_at": "2026-05-22T04:30:34.668563+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1684_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1684_IMG.JPG", "file_name": "116-1684_IMG.JPG", "file_stem": "116-1684_IMG", "file_ext": ".jpg", "file_size": 1332562.0, "mtime": "2002-08-15T20:32:10+00:00", "mtime_ts": 1029443530.0, "ctime": "2002-08-15T20:32:10+00:00", "sha256_file": "2f27061a9f45af3829ae422f1af2d1ff63c5d84284da585320ccf35e3d2a5d7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 20:32:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4525", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 20:32:12", "EXIF DateTimeDigitized": "2002:08:15 20:32:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161684", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65435", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83996d92a766474b94917089baaca930f063dc43159f44c26e25a12e02cd966b", "phash": "e01f84fe314879c7", "dhash": "c0c2da89aa81a582", "phash_int": -2.2969710576522706e+18, "collected_at": "2026-05-22T04:30:34.684634+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1686_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1686_IMG.JPG", "file_name": "116-1686_IMG.JPG", "file_stem": "116-1686_IMG", "file_ext": ".jpg", "file_size": 1418554.0, "mtime": "2002-08-15T20:32:36+00:00", "mtime_ts": 1029443556.0, "ctime": "2002-08-15T20:32:36+00:00", "sha256_file": "224b9974cee740df674e69dd9c88de3db7392942b5fec20e45b5ec862451077e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 20:32:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4374", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 20:32:37", "EXIF DateTimeDigitized": "2002:08:15 20:32:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161686", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be823aaee8dcdcda118b013633a3e192738a51c22de2aa49c6c97c93e4d10882", "phash": "db003df38d342cd9", "dhash": "acad36c149490928", "phash_int": -2.66606286314798e+18, "collected_at": "2026-05-22T04:30:34.728632+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1687_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1687_IMG.JPG", "file_name": "116-1687_IMG.JPG", "file_stem": "116-1687_IMG", "file_ext": ".jpg", "file_size": 1328363.0, "mtime": "2002-08-15T20:32:48+00:00", "mtime_ts": 1029443568.0, "ctime": "2002-08-15T20:32:48+00:00", "sha256_file": "dbb98c93434ea18ec4f11761dc04040b47bc9b948742ce3e8afa0df90315deb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:15 20:32:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4095", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:15 20:32:50", "EXIF DateTimeDigitized": "2002:08:15 20:32:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161687", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c308b7fc69111c83886dfc8f3f5c9afa230541ee97038b850b212795a2ee0830", "phash": "d32c3fd0c12f0cda", "dhash": "a84c349998984959", "phash_int": -3.230136666904655e+18, "collected_at": "2026-05-22T04:30:34.792159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1688_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1688_IMG.JPG", "file_name": "116-1688_IMG.JPG", "file_stem": "116-1688_IMG", "file_ext": ".jpg", "file_size": 1771868.0, "mtime": "2002-08-16T12:04:40+00:00", "mtime_ts": 1029499480.0, "ctime": "2002-08-16T12:04:40+00:00", "sha256_file": "cf6a17e7102106197f2ccb292358e3e8b43e5a897fa79bf720c51796ea9b6445", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:04:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5922", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:04:42", "EXIF DateTimeDigitized": "2002:08:16 12:04:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161688", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1585710cbf067a24fde24b498a8a3d25a7e4c91515ec7d4a0cc3a0e774a5656b", "phash": "94c8e1546e6755ae", "dhash": "b4b0fc7635bcdece", "phash_int": -7.725677408008318e+18, "collected_at": "2026-05-22T04:30:34.838623+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1689_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1689_IMG.JPG", "file_name": "116-1689_IMG.JPG", "file_stem": "116-1689_IMG", "file_ext": ".jpg", "file_size": 1706841.0, "mtime": "2002-08-16T12:05:34+00:00", "mtime_ts": 1029499534.0, "ctime": "2002-08-16T12:05:34+00:00", "sha256_file": "66fc6579052741f82a8ff275e947bb06605562b1d4197decc99ed53f868d1f64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:05:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5569", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:05:35", "EXIF DateTimeDigitized": "2002:08:16 12:05:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161689", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "329", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d893e2169aa7c5f0c3227dafb92dc5dec310062b3df1999b408e307c3a83fa6b", "phash": "96ceb9741864d2ab", "dhash": "6068ece4bdecced8", "phash_int": -7.57991721454136e+18, "collected_at": "2026-05-22T04:30:34.897793+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1690_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1690_IMG.JPG", "file_name": "116-1690_IMG.JPG", "file_stem": "116-1690_IMG", "file_ext": ".jpg", "file_size": 1806745.0, "mtime": "2002-08-16T12:06:38+00:00", "mtime_ts": 1029499598.0, "ctime": "2002-08-16T12:06:38+00:00", "sha256_file": "deefffa19980b8325ce6f2c55217217acaaf94cc0c78b10664390aac40fc4275", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:06:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5342", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:06:40", "EXIF DateTimeDigitized": "2002:08:16 12:06:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161690", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "334", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d447adbb62e962cd2c8af78e64783e6eb345999586d53da785ee6a2d05fe3878", "phash": "93e2b50a6556abc5", "dhash": "c0e0c0f8e2f9fc7a", "phash_int": -7.790465349143057e+18, "collected_at": "2026-05-22T04:30:34.951218+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1691_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1691_IMG.JPG", "file_name": "116-1691_IMG.JPG", "file_stem": "116-1691_IMG", "file_ext": ".jpg", "file_size": 1868897.0, "mtime": "2002-08-16T12:06:44+00:00", "mtime_ts": 1029499604.0, "ctime": "2002-08-16T12:06:44+00:00", "sha256_file": "98084295eff64199c6668956186ba828a1b3dca4dc211f71b7f3e98cd9ad7dd6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:06:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5832", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:06:45", "EXIF DateTimeDigitized": "2002:08:16 12:06:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161691", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c227c0eb2fe4f99a4569893b23a9f5a2e2e6ee031fa5f9200a194b00dcd25c5", "phash": "ea9ce39c4a315e83", "dhash": "82b0838361388f43", "phash_int": -1.5411067120683994e+18, "collected_at": "2026-05-22T04:30:35.003306+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1692_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1692_IMG.JPG", "file_name": "116-1692_IMG.JPG", "file_stem": "116-1692_IMG", "file_ext": ".jpg", "file_size": 1928704.0, "mtime": "2002-08-16T12:06:48+00:00", "mtime_ts": 1029499608.0, "ctime": "2002-08-16T12:06:48+00:00", "sha256_file": "6a03027cbc643740689f155788c25e7e6670169efd1896eba985b41d24d230d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:06:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6103", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:06:50", "EXIF DateTimeDigitized": "2002:08:16 12:06:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161692", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6527cb4c000a1279d791c3fabb751e57a3fb79cc8986a1dfb8b792e96fc5ab4", "phash": "8bf2bcf02bc46e90", "dhash": "c098e1c9d961f063", "phash_int": -8.362413818361123e+18, "collected_at": "2026-05-22T04:30:35.074575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1693_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1693_IMG.JPG", "file_name": "116-1693_IMG.JPG", "file_stem": "116-1693_IMG", "file_ext": ".jpg", "file_size": 1953157.0, "mtime": "2002-08-16T12:06:52+00:00", "mtime_ts": 1029499612.0, "ctime": "2002-08-16T12:06:52+00:00", "sha256_file": "3a6e4b83f83f0d2719df790c03fd402227bf54627c54e69d9ba7461f9dcfe486", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:06:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6200", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:06:54", "EXIF DateTimeDigitized": "2002:08:16 12:06:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161693", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0be4864c09dbd382cb27b287084b3e5ab393abdff1cb7db43d1b28cd904b4da", "phash": "bd92ef500d741ae8", "dhash": "e0d23c9e9a180263", "phash_int": -4.786500326839281e+18, "collected_at": "2026-05-22T04:30:35.121863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1694_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1694_IMG.JPG", "file_name": "116-1694_IMG.JPG", "file_stem": "116-1694_IMG", "file_ext": ".jpg", "file_size": 1863804.0, "mtime": "2002-08-16T12:06:58+00:00", "mtime_ts": 1029499618.0, "ctime": "2002-08-16T12:06:58+00:00", "sha256_file": "52b1d7343202ca4df60595967c748091ea6ce0eb8ef2787a19b46c68533710c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:06:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5937", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:06:59", "EXIF DateTimeDigitized": "2002:08:16 12:06:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161694", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c9c6ebad0050bf3a2eb6ed2bcc4167b72c5b825541c1a5b663e18ac2442de24", "phash": "cfb09f344b241ae5", "dhash": "fcccb9c345156661", "phash_int": -3.4811074650096205e+18, "collected_at": "2026-05-22T04:30:35.164864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1695_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1695_IMG.JPG", "file_name": "116-1695_IMG.JPG", "file_stem": "116-1695_IMG", "file_ext": ".jpg", "file_size": 1809838.0, "mtime": "2002-08-16T12:07:02+00:00", "mtime_ts": 1029499622.0, "ctime": "2002-08-16T12:07:02+00:00", "sha256_file": "e2797e41ecc1352f1acdcdeeddbf53586f4abe76da896825bae3cb5bdf60ed28", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:07:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5809", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:07:03", "EXIF DateTimeDigitized": "2002:08:16 12:07:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161695", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39052d1246ed0dd056b76af97a39167de2ce91139cf72a8a2350701edea96a17", "phash": "8fb46a112ed4b966", "dhash": "fe9bba64ebbac043", "phash_int": -8.091726008445258e+18, "collected_at": "2026-05-22T04:30:35.215951+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1696_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1696_IMG.JPG", "file_name": "116-1696_IMG.JPG", "file_stem": "116-1696_IMG", "file_ext": ".jpg", "file_size": 1796696.0, "mtime": "2002-08-16T12:07:06+00:00", "mtime_ts": 1029499626.0, "ctime": "2002-08-16T12:07:06+00:00", "sha256_file": "c638860250ac1b22dfb35142fcb815060fb6892b685a693c92fdec412ce9b5e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:07:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5593", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:07:08", "EXIF DateTimeDigitized": "2002:08:16 12:07:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161696", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "347", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31214807a350b4f0b8554b9a5bc845233bd90d81cfe5640cf65394a8d489cbbe", "phash": "95f58d3847bcc194", "dhash": "fefcfc49c89935e0", "phash_int": -7.641045919902941e+18, "collected_at": "2026-05-22T04:30:35.262952+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1697_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1697_IMG.JPG", "file_name": "116-1697_IMG.JPG", "file_stem": "116-1697_IMG", "file_ext": ".jpg", "file_size": 1774968.0, "mtime": "2002-08-16T12:07:12+00:00", "mtime_ts": 1029499632.0, "ctime": "2002-08-16T12:07:12+00:00", "sha256_file": "881889e361d9f892a23c361d9835134467c17e5ec3a620d44aa7600f4b8540ab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:07:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5420", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:07:14", "EXIF DateTimeDigitized": "2002:08:16 12:07:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161697", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "343", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc687edcf3d2e66f2720bd5dc425c9cbda1c0928b354db458cf2ec64bfa2edc6", "phash": "94eb98774c31e68c", "dhash": "febfa6e2640c3830", "phash_int": -7.715905898422344e+18, "collected_at": "2026-05-22T04:30:35.290954+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1700_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1700_IMG.JPG", "file_name": "116-1700_IMG.JPG", "file_stem": "116-1700_IMG", "file_ext": ".jpg", "file_size": 1500504.0, "mtime": "2002-08-16T12:12:22+00:00", "mtime_ts": 1029499942.0, "ctime": "2002-08-16T12:12:22+00:00", "sha256_file": "0cd62db4572ccb72694604efafb7dff3505bcbd0c4c9fa5f6db3878691a6fee4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:12:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5866", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:12:23", "EXIF DateTimeDigitized": "2002:08:16 12:12:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "247/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161700", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "351", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "988"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b4023e855c5bc59b1f90dcc6b180eabcf2f70bf081b4e465a4d9119aa6e7390", "phash": "9b85916a75d89327", "dhash": "b27179236779395d", "phash_int": -7.240220939498515e+18, "collected_at": "2026-05-22T04:30:35.407229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1698_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\116-1698_IMG.JPG", "file_name": "116-1698_IMG.JPG", "file_stem": "116-1698_IMG", "file_ext": ".jpg", "file_size": 1569870.0, "mtime": "2002-08-16T12:07:36+00:00", "mtime_ts": 1029499656.0, "ctime": "2002-08-16T12:07:36+00:00", "sha256_file": "acd592821483164d8d69c2eec1cc1dfda038dbdad7791b58f8382af61438302a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:07:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5790", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:07:37", "EXIF DateTimeDigitized": "2002:08:16 12:07:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "609/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161698", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "276", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3045"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "33e7c5a27e5c982c3b2ddcd8ecd0fedfb3b2fa02036d86954d276a7c64be73ed", "phash": "e3f8e3d3920c0ea6", "dhash": "0e9a97978d49cfcd", "phash_int": -2.019613935047799e+18, "collected_at": "2026-05-22T04:30:35.420232+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1701_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1701_IMG.JPG", "file_name": "117-1701_IMG.JPG", "file_stem": "117-1701_IMG", "file_ext": ".jpg", "file_size": 1859942.0, "mtime": "2002-08-16T12:12:26+00:00", "mtime_ts": 1029499946.0, "ctime": "2002-08-16T12:12:26+00:00", "sha256_file": "a99714fb7efb8d8cb45a7c39f1bb3fa72e025ac10e79407824e50fcd752c7c52", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 12:12:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6222", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 12:12:28", "EXIF DateTimeDigitized": "2002:08:16 12:12:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1381/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171701", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "340", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "11048"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "563ba1e6b54b409abc979ec45b3c60305b9900c1b1c7c2a0a10755dccde7a557", "phash": "b00fa7456a97864f", "dhash": "eebefc95b3341c2e", "phash_int": -5.760201481800677e+18, "collected_at": "2026-05-22T04:30:35.492232+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1702_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1702_IMG.JPG", "file_name": "117-1702_IMG.JPG", "file_stem": "117-1702_IMG", "file_ext": ".jpg", "file_size": 1348831.0, "mtime": "2002-08-16T13:38:40+00:00", "mtime_ts": 1029505120.0, "ctime": "2002-08-16T13:38:40+00:00", "sha256_file": "04babc9353a68ac9aff65c354043e9f0b6bc3a2d7ae7e2b77717aa7d74aae956", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:38:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6565", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:38:42", "EXIF DateTimeDigitized": "2002:08:16 13:38:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "763/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171702", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "763"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7002da20148aec6daa9dd63ebe878cb1fd8883a4601466cc87df730ef342858", "phash": "d23907611ea73c76", "dhash": "f8d1022a1481c1e4", "phash_int": -3.298597138364679e+18, "collected_at": "2026-05-22T04:30:35.497231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1703_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1703_IMG.JPG", "file_name": "117-1703_IMG.JPG", "file_stem": "117-1703_IMG", "file_ext": ".jpg", "file_size": 1448765.0, "mtime": "2002-08-16T13:38:52+00:00", "mtime_ts": 1029505132.0, "ctime": "2002-08-16T13:38:52+00:00", "sha256_file": "44a5bb2c62aef5dd543562c5734973f6aa221affb34b5c2f5f852526a85cc115", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:38:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5901", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:38:53", "EXIF DateTimeDigitized": "2002:08:16 13:38:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171703", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebc5d17ba52b8531344b1eac059fb831beec1666fbc7827cc5e565928ffe9366", "phash": "93db294da59993a8", "dhash": "d9d9d99995949ede", "phash_int": -7.792589316766985e+18, "collected_at": "2026-05-22T04:30:35.613739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1704_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1704_IMG.JPG", "file_name": "117-1704_IMG.JPG", "file_stem": "117-1704_IMG", "file_ext": ".jpg", "file_size": 1562828.0, "mtime": "2002-08-16T13:40:48+00:00", "mtime_ts": 1029505248.0, "ctime": "2002-08-16T13:40:48+00:00", "sha256_file": "0fdd0f045bbde12c725c63ee9aeb5743660b768ef9e297265a71210d0936e12f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:40:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7705", "EXIF ExposureTime": "1/80", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:40:49", "EXIF DateTimeDigitized": "2002:08:16 13:40:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171704", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "213", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1241"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65c60f310b54b3e0cfca20e49ea3bfaa5ccadacd9a859a145f8e2aa00507b283", "phash": "a3cfecc31f38011e", "dhash": "cfcb8b0b4dcd9daf", "phash_int": -6.642830602561651e+18, "collected_at": "2026-05-22T04:30:35.617740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1705_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1705_IMG.JPG", "file_name": "117-1705_IMG.JPG", "file_stem": "117-1705_IMG", "file_ext": ".jpg", "file_size": 1625797.0, "mtime": "2002-08-16T13:43:24+00:00", "mtime_ts": 1029505404.0, "ctime": "2002-08-16T13:43:24+00:00", "sha256_file": "819ddbb5592f0b646e5e0657781c55f61474c26d081773a688b4acf5b51b8cb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:43:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7569", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:43:25", "EXIF DateTimeDigitized": "2002:08:16 13:43:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "923/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171705", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "209", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1846"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a049796039ab7075c9165186d1a3f69f03de803ca1d54976b95550b83dc9ceb", "phash": "ead718a43552e2e3", "dhash": "1363cbcf87a70323", "phash_int": -1.5247228552932959e+18, "collected_at": "2026-05-22T04:30:35.795739+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1706_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1706_IMG.JPG", "file_name": "117-1706_IMG.JPG", "file_stem": "117-1706_IMG", "file_ext": ".jpg", "file_size": 1504173.0, "mtime": "2002-08-16T13:43:32+00:00", "mtime_ts": 1029505412.0, "ctime": "2002-08-16T13:43:32+00:00", "sha256_file": "a0ee2bb4fa414585f1a5331f7336110f6c3974200f2f281f6cf484212693bba2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:43:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7521", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:43:33", "EXIF DateTimeDigitized": "2002:08:16 13:43:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1551/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171706", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13e23a55e46c9ee3c77e0c749685f5340b08894ec0577776d1466676b3aaf9db", "phash": "e9d5383c261ed0a7", "dhash": "13134bcb87830317", "phash_int": -1.5973086618442258e+18, "collected_at": "2026-05-22T04:30:35.797736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1707_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1707_IMG.JPG", "file_name": "117-1707_IMG.JPG", "file_stem": "117-1707_IMG", "file_ext": ".jpg", "file_size": 1246593.0, "mtime": "2002-08-16T13:44:26+00:00", "mtime_ts": 1029505466.0, "ctime": "2002-08-16T13:44:26+00:00", "sha256_file": "70bb12784cd4781fe5a7a47bde2801013d991074a9df0ba326847ca399d2fc49", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:44:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3860", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:44:28", "EXIF DateTimeDigitized": "2002:08:16 13:44:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "201/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171707", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "804"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "648b3d2baa4d6a68d12f8040174f40a6137bcd4fdf98a431644aaf4a540173f3", "phash": "f37392d24da92932", "dhash": "c988cac3ccc8c0e0", "phash_int": -9.042176682276186e+17, "collected_at": "2026-05-22T04:30:35.904819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1708_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1708_IMG.JPG", "file_name": "117-1708_IMG.JPG", "file_stem": "117-1708_IMG", "file_ext": ".jpg", "file_size": 1555350.0, "mtime": "2002-08-16T13:45:08+00:00", "mtime_ts": 1029505508.0, "ctime": "2002-08-16T13:45:08+00:00", "sha256_file": "8ba8b2c104d1c6ab3503616be1a66ffda2ec64b1fbf08fb14bc6db4569a81f8c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:45:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7315", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:45:09", "EXIF DateTimeDigitized": "2002:08:16 13:45:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1551/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171708", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "219", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1595f6a9f45461c10807451a7898150b8458f3e70caa36442b568b8f0969ac19", "phash": "ee835dd595121693", "dhash": "da43e9ab02262727", "phash_int": -1.260060298823199e+18, "collected_at": "2026-05-22T04:30:35.912825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1709_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1709_IMG.JPG", "file_name": "117-1709_IMG.JPG", "file_stem": "117-1709_IMG", "file_ext": ".jpg", "file_size": 1546988.0, "mtime": "2002-08-16T13:45:16+00:00", "mtime_ts": 1029505516.0, "ctime": "2002-08-16T13:45:16+00:00", "sha256_file": "f9afbdc76e771b47f561dd358c2f747a92325dc328599a7cf562d68149609f01", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:45:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7459", "EXIF ExposureTime": "1/80", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:45:17", "EXIF DateTimeDigitized": "2002:08:16 13:45:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1647/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171709", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1647"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7865028e7f9d7bcadcfb3e2a65a779c335890b25d596462e25691288f7a98c2b", "phash": "ef811bd495955616", "dhash": "526beb4326262727", "phash_int": -1.1886382267924915e+18, "collected_at": "2026-05-22T04:30:35.974222+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1710_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1710_IMG.JPG", "file_name": "117-1710_IMG.JPG", "file_stem": "117-1710_IMG", "file_ext": ".jpg", "file_size": 1536388.0, "mtime": "2002-08-16T13:46:08+00:00", "mtime_ts": 1029505568.0, "ctime": "2002-08-16T13:46:08+00:00", "sha256_file": "a02eef09b3be133b7ef5b0675b232961867523d4d026db4cf88f13c869982da1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:46:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7292", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:46:10", "EXIF DateTimeDigitized": "2002:08:16 13:46:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "377/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171710", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1508"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b99b80fcc264aee2fd91e401eaf32c92323189e698119a6de329ea4ee998d5c9", "phash": "dab805aeb3886575", "dhash": "1d1d10195d63e150", "phash_int": -2.686390929831992e+18, "collected_at": "2026-05-22T04:30:36.005472+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1711_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1711_IMG.JPG", "file_name": "117-1711_IMG.JPG", "file_stem": "117-1711_IMG", "file_ext": ".jpg", "file_size": 1341115.0, "mtime": "2002-08-16T13:46:16+00:00", "mtime_ts": 1029505576.0, "ctime": "2002-08-16T13:46:16+00:00", "sha256_file": "6120bf17219e1923ad9fd1958d8ce4012e5680ada01dbf7ac0241041d36e99cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:46:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6689", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:46:17", "EXIF DateTimeDigitized": "2002:08:16 13:46:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "411/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171711", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "822"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "055e6eaad08a07beed7982c521c31e0917a4ffb1ce23e7bd665754196f7b76cf", "phash": "daba0505b3e57554", "dhash": "1d39313939e363d5", "phash_int": -2.6858287057219446e+18, "collected_at": "2026-05-22T04:30:36.068896+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1712_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1712_IMG.JPG", "file_name": "117-1712_IMG.JPG", "file_stem": "117-1712_IMG", "file_ext": ".jpg", "file_size": 1662623.0, "mtime": "2002-08-16T13:47:52+00:00", "mtime_ts": 1029505672.0, "ctime": "2002-08-16T13:47:52+00:00", "sha256_file": "64b370e8ddc6bad80c892ee7b9cf20e66a556db3fe24b2b3e032e3a7427e2b77", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:47:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6641", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:47:54", "EXIF DateTimeDigitized": "2002:08:16 13:47:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1143/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171712", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "252", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2286"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fbd50050398edf394d0dff564889b9b521ec57eceb842fe62ef6e6e503e56d6", "phash": "8f9d51d2949e2a69", "dhash": "f9f3736367674173", "phash_int": -8.098226590063908e+18, "collected_at": "2026-05-22T04:30:36.072897+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1714_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1714_IMG.JPG", "file_name": "117-1714_IMG.JPG", "file_stem": "117-1714_IMG", "file_ext": ".jpg", "file_size": 2050899.0, "mtime": "2002-08-16T14:31:20+00:00", "mtime_ts": 1029508280.0, "ctime": "2002-08-16T14:31:20+00:00", "sha256_file": "530dba4a7e86b212d1f21f033eaabd83bb5a467512ccb49a1b81c9ae4d0ca572", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 14:31:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5559", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 14:31:21", "EXIF DateTimeDigitized": "2002:08:16 14:31:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171714", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "304", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "614798250d87037a3958c63a822346786e6bb30f21c3eb21fac2ac4c0cdc1472", "phash": "d8b6c32f605318d7", "dhash": "d9e4b8b4a738ca92", "phash_int": -2.8308607075088404e+18, "collected_at": "2026-05-22T04:30:36.172970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1713_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1713_IMG.JPG", "file_name": "117-1713_IMG.JPG", "file_stem": "117-1713_IMG", "file_ext": ".jpg", "file_size": 1502718.0, "mtime": "2002-08-16T13:48:00+00:00", "mtime_ts": 1029505680.0, "ctime": "2002-08-16T13:48:00+00:00", "sha256_file": "fe397733da704f8004d46cae501a50157b82913108de91e1ff38fb25b6344f7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 13:48:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6481", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 13:48:02", "EXIF DateTimeDigitized": "2002:08:16 13:48:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1677/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171713", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "251", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1677"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39b6e55d76947b5f854dbe37e35e71baf850d898ec71164efd97cf5970edb76e", "phash": "8a91d3a685bdb23c", "dhash": "f1bb3b333325236b", "phash_int": -8.461749512690617e+18, "collected_at": "2026-05-22T04:30:36.195106+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1715_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1715_IMG.JPG", "file_name": "117-1715_IMG.JPG", "file_stem": "117-1715_IMG", "file_ext": ".jpg", "file_size": 1549978.0, "mtime": "2002-08-16T14:31:36+00:00", "mtime_ts": 1029508296.0, "ctime": "2002-08-16T14:31:36+00:00", "sha256_file": "9200cb51ab3ae14112d3fb673f4a0d47931ab2f9c8e99e0938a237a9a3c29536", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 14:31:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5810", "EXIF ExposureTime": "1/500", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 14:31:38", "EXIF DateTimeDigitized": "2002:08:16 14:31:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8/5", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171715", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1600"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2d427976ad2e8fa4054788298286c2be6795067b1ee4b0b580f9afb51ca008a8", "phash": "fee3c14e161ee094", "dhash": "41832e2924303838", "phash_int": -8.000782723980478e+16, "collected_at": "2026-05-22T04:30:36.252366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1716_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1716_IMG.JPG", "file_name": "117-1716_IMG.JPG", "file_stem": "117-1716_IMG", "file_ext": ".jpg", "file_size": 1879164.0, "mtime": "2002-08-16T19:49:42+00:00", "mtime_ts": 1029527382.0, "ctime": "2002-08-16T19:49:42+00:00", "sha256_file": "d66b3cdd13cd03a82632d65273379464745c028ed525ceebdc094e1f02db9c16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:49:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6357", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:49:43", "EXIF DateTimeDigitized": "2002:08:16 19:49:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171716", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4801908d6b06f0dced57089f116efb8ebdaff757ade796746d7830b7b61e33bf", "phash": "a10d5f60272d7bcc", "dhash": "76bebe9e8783978d", "phash_int": -6.841707392327124e+18, "collected_at": "2026-05-22T04:30:36.315370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1717_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1717_IMG.JPG", "file_name": "117-1717_IMG.JPG", "file_stem": "117-1717_IMG", "file_ext": ".jpg", "file_size": 1847431.0, "mtime": "2002-08-16T19:49:54+00:00", "mtime_ts": 1029527394.0, "ctime": "2002-08-16T19:49:54+00:00", "sha256_file": "30a3887bdd8d515ddc2f47709ac1102984338b28a19a9552ee68fca4ee1a971f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:49:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6069", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:49:56", "EXIF DateTimeDigitized": "2002:08:16 19:49:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171717", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "717e4701ab9cfb0ba5d70dfa063937033591e84e0ac22dfaca5ee523ec02cb04", "phash": "a00f5f61067fdad0", "dhash": "f6b6bebe9e879797", "phash_int": -6.913202032664913e+18, "collected_at": "2026-05-22T04:30:36.353376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1718_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1718_IMG.JPG", "file_name": "117-1718_IMG.JPG", "file_stem": "117-1718_IMG", "file_ext": ".jpg", "file_size": 1599543.0, "mtime": "2002-08-16T19:50:12+00:00", "mtime_ts": 1029527412.0, "ctime": "2002-08-16T19:50:12+00:00", "sha256_file": "a8a04c2676d15047afd45eb8954803ae311ccfe8c6c6d6ac300304f1864b9578", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:50:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4540", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:50:14", "EXIF DateTimeDigitized": "2002:08:16 19:50:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "241/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171718", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1205"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "710a18c1af1308a8f98f4fefdc75bbf14fab21ee98175b08985dedd3681a291e", "phash": "91665a9e6d49e2b1", "dhash": "f9dccfc3cefd38ba", "phash_int": -7.969582854100622e+18, "collected_at": "2026-05-22T04:30:36.424377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1719_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1719_IMG.JPG", "file_name": "117-1719_IMG.JPG", "file_stem": "117-1719_IMG", "file_ext": ".jpg", "file_size": 1628126.0, "mtime": "2002-08-16T19:50:24+00:00", "mtime_ts": 1029527424.0, "ctime": "2002-08-16T19:50:24+00:00", "sha256_file": "9e340e8ef640a5e86128e66c50c330b32aca9d89c20b8f1c8e338525cb0ed31d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:50:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4162", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:50:26", "EXIF DateTimeDigitized": "2002:08:16 19:50:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1589/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171719", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1589"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "19e1d7b0685c487aea7c7e53ae5a6d41d45c38d831fd983ff09f3b9b5664e13b", "phash": "d9d8634f16b4a529", "dhash": "b9b1933471624c50", "phash_int": -2.749338381175184e+18, "collected_at": "2026-05-22T04:30:36.435375+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1720_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1720_IMG.JPG", "file_name": "117-1720_IMG.JPG", "file_stem": "117-1720_IMG", "file_ext": ".jpg", "file_size": 1474332.0, "mtime": "2002-08-16T19:55:12+00:00", "mtime_ts": 1029527712.0, "ctime": "2002-08-16T19:55:12+00:00", "sha256_file": "e2a4a0174dbd854ccee318be10803c7b4a5d3bbc482d53bd8082f9f05e03c7f7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:55:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4623", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:55:13", "EXIF DateTimeDigitized": "2002:08:16 19:55:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171720", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "151", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c773d622662e221b4eb9376a90cd10fc19884ba5b318dddc0e27ff13b77d1dc", "phash": "9be64e59694c5836", "dhash": "c3cfcdc5d9b830f1", "phash_int": -7.212991607261604e+18, "collected_at": "2026-05-22T04:30:36.501377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1721_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1721_IMG.JPG", "file_name": "117-1721_IMG.JPG", "file_stem": "117-1721_IMG", "file_ext": ".jpg", "file_size": 1471843.0, "mtime": "2002-08-16T19:55:24+00:00", "mtime_ts": 1029527724.0, "ctime": "2002-08-16T19:55:24+00:00", "sha256_file": "c9d74f4eed18103de5088ea7c2be533c1cf2542b0dc82325b7fe7f971603c058", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5205", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:55:26", "EXIF DateTimeDigitized": "2002:08:16 19:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171721", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65533", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7edce8f2d009789aaf0bd1231204029d3c9f9812547f4f0131d9b1b901fc11d", "phash": "df4833336547538c", "dhash": "5235317373696506", "phash_int": -2.3575781090929326e+18, "collected_at": "2026-05-22T04:30:36.514522+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1722_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1722_IMG.JPG", "file_name": "117-1722_IMG.JPG", "file_stem": "117-1722_IMG", "file_ext": ".jpg", "file_size": 1377030.0, "mtime": "2002-08-16T19:55:30+00:00", "mtime_ts": 1029527730.0, "ctime": "2002-08-16T19:55:30+00:00", "sha256_file": "9ee78c11234fa58bb1dbcf0736376cb291f49d44f7180418a855143d2ad21564", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:55:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5085", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:55:32", "EXIF DateTimeDigitized": "2002:08:16 19:55:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171722", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c68ccea69053bcfb7320a90a31da42370f7e90468ac1b2c5c6250d969a3c98e0", "phash": "cf4833334d53ccac", "dhash": "5235317233616d46", "phash_int": -3.5104996141016156e+18, "collected_at": "2026-05-22T04:30:36.557523+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1724_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1724_IMG.JPG", "file_name": "117-1724_IMG.JPG", "file_stem": "117-1724_IMG", "file_ext": ".jpg", "file_size": 1913716.0, "mtime": "2002-08-16T19:56:38+00:00", "mtime_ts": 1029527798.0, "ctime": "2002-08-16T19:56:38+00:00", "sha256_file": "3d46206015854afe84dad2dd84063fed4dc32d8fa36d9622249a80722e71a7c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:56:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6022", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:56:39", "EXIF DateTimeDigitized": "2002:08:16 19:56:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171724", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e2c4b3c6bb36b642de66ecc63ca07ce4c629bb19cdb5caf52c7ad084b4ff9657", "phash": "e3691673883227db", "dhash": "c985849791cc8d88", "phash_int": -2.0600906690832527e+18, "collected_at": "2026-05-22T04:30:36.665846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1723_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1723_IMG.JPG", "file_name": "117-1723_IMG.JPG", "file_stem": "117-1723_IMG", "file_ext": ".jpg", "file_size": 1477110.0, "mtime": "2002-08-16T19:56:10+00:00", "mtime_ts": 1029527770.0, "ctime": "2002-08-16T19:56:10+00:00", "sha256_file": "119cf0a14a8b04d271f7715f71d490226f285a44c54dbf910fd12b8a46a4e981", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:16 19:56:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4966", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:16 19:56:12", "EXIF DateTimeDigitized": "2002:08:16 19:56:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171723", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e67b017d4081178d542047f9cebdbd0f1aa6559d17c80afbfa9d5fa3412467e8", "phash": "f80e6230cf5caeb1", "dhash": "a593f37232339099", "phash_int": -5.724121408525643e+17, "collected_at": "2026-05-22T04:30:36.668846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1726_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1726_IMG.JPG", "file_name": "117-1726_IMG.JPG", "file_stem": "117-1726_IMG", "file_ext": ".jpg", "file_size": 2695734.0, "mtime": "2002-08-17T11:10:34+00:00", "mtime_ts": 1029582634.0, "ctime": "2002-08-17T11:10:34+00:00", "sha256_file": "5ebc5a19665f2486651e2b128a5687cdc6ceff0309284bce4f11a521efcf8487", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 11:10:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8181", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 11:10:35", "EXIF DateTimeDigitized": "2002:08:17 11:10:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2621/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171726", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "288", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13105"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6b9f407b3538d48548b5cdb9b715249d720c020ba91b864884bdefbdf90854f", "phash": "c8cbe2019473b5cf", "dhash": "c1c16220f292836c", "phash_int": -3.9778373494382454e+18, "collected_at": "2026-05-22T04:30:36.838855+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1725_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1725_IMG.JPG", "file_name": "117-1725_IMG.JPG", "file_stem": "117-1725_IMG", "file_ext": ".jpg", "file_size": 2748418.0, "mtime": "2002-08-17T11:10:30+00:00", "mtime_ts": 1029582630.0, "ctime": "2002-08-17T11:10:30+00:00", "sha256_file": "55a987e51ee6c3343bbc9cc465e43f7fa13fe6b484136abcec4732eb435486a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 11:10:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8009", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 11:10:31", "EXIF DateTimeDigitized": "2002:08:17 11:10:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171725", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0beb5296139378350a4d050fbb93a29d07e2d0afe4ddb61aaa63585a2a2d78fe", "phash": "cbc2ec1edc6482dc", "dhash": "60e0d1d078694413", "phash_int": -3.764186721237565e+18, "collected_at": "2026-05-22T04:30:36.850854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1727_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1727_IMG.JPG", "file_name": "117-1727_IMG.JPG", "file_stem": "117-1727_IMG", "file_ext": ".jpg", "file_size": 2066600.0, "mtime": "2002-08-17T11:10:38+00:00", "mtime_ts": 1029582638.0, "ctime": "2002-08-17T11:10:38+00:00", "sha256_file": "09cef8668c84fb3b7885f4417a7569ce214ea5a681332750e473c73ef726e8e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 11:10:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7936", "EXIF ExposureTime": "1/640", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 11:10:40", "EXIF DateTimeDigitized": "2002:08:17 11:10:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "52/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171727", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2080"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fdbec568ad465ca29d754a5dc7e731f1cbaf24d704698ddb6f00802f68e5abb", "phash": "91bfd663b6422a62", "dhash": "7c3894949edbc0f4", "phash_int": -7.944395493910369e+18, "collected_at": "2026-05-22T04:30:37.007741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1728_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1728_IMG.JPG", "file_name": "117-1728_IMG.JPG", "file_stem": "117-1728_IMG", "file_ext": ".jpg", "file_size": 1692700.0, "mtime": "2002-08-17T11:10:46+00:00", "mtime_ts": 1029582646.0, "ctime": "2002-08-17T11:10:46+00:00", "sha256_file": "689c20be4038ce2660bbea5009aea00fda37fe87db7d495a6589097391466d8e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 11:10:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7175", "EXIF ExposureTime": "1/250", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 11:10:47", "EXIF DateTimeDigitized": "2002:08:17 11:10:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "303/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171728", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1515"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79b87b15815828f2425e232add443d14dce3e21d58d4ae1dc0cf90ba28d4ecc7", "phash": "b6a6c889d91fbc09", "dhash": "b0ac2c2c3f1f5931", "phash_int": -5.285316618293888e+18, "collected_at": "2026-05-22T04:30:37.014732+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1730_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1730_IMG.JPG", "file_name": "117-1730_IMG.JPG", "file_stem": "117-1730_IMG", "file_ext": ".jpg", "file_size": 2057210.0, "mtime": "2002-08-17T18:36:18+00:00", "mtime_ts": 1029609378.0, "ctime": "2002-08-17T18:36:18+00:00", "sha256_file": "235c02d28ae49f19fb5f524cdf8537b70876be5c20a097f3e3ba9ee373cedeca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:36:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6371", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:36:19", "EXIF DateTimeDigitized": "2002:08:17 18:36:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171730", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c87c480316cf86bf25b994e0aac218ac199a98c22625f184b7feddf76b33e851", "phash": "f6c9b12e0571c64e", "dhash": "fef941c065440c0c", "phash_int": -6.638046588424831e+17, "collected_at": "2026-05-22T04:30:37.122363+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1729_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1729_IMG.JPG", "file_name": "117-1729_IMG.JPG", "file_stem": "117-1729_IMG", "file_ext": ".jpg", "file_size": 2606397.0, "mtime": "2002-08-17T11:10:52+00:00", "mtime_ts": 1029582652.0, "ctime": "2002-08-17T11:10:52+00:00", "sha256_file": "8ea09a0119e17efab7055502ffd6af52d751f1204f9c282779bcb20f763ee09a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 11:10:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7841", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 11:10:53", "EXIF DateTimeDigitized": "2002:08:17 11:10:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1013/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171729", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5065"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a00c6e3c3a11aced14f53cae73e832654c5ea1c5e0b6d34f9eb3ae2968bb82c", "phash": "e5dc3c7a18b39512", "dhash": "0626c6ca898ecc9e", "phash_int": -1.883564049049611e+18, "collected_at": "2026-05-22T04:30:37.137561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1732_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1732_IMG.JPG", "file_name": "117-1732_IMG.JPG", "file_stem": "117-1732_IMG", "file_ext": ".jpg", "file_size": 1377696.0, "mtime": "2002-08-17T18:36:28+00:00", "mtime_ts": 1029609388.0, "ctime": "2002-08-17T18:36:28+00:00", "sha256_file": "f67e70056305e5fe2118f7607dd14ba09637e137d2768d7a4b2c5022a03c46d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:36:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4048", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:36:29", "EXIF DateTimeDigitized": "2002:08:17 18:36:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171732", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac0412d8ca4cbda393ef5789141e44c873abf3788d0f0abe77acace98d43a8ef", "phash": "9c9cae6b6b720287", "dhash": "2520f4341b3b98c8", "phash_int": -7.161657531038563e+18, "collected_at": "2026-05-22T04:30:37.239565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1731_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1731_IMG.JPG", "file_name": "117-1731_IMG.JPG", "file_stem": "117-1731_IMG", "file_ext": ".jpg", "file_size": 1920864.0, "mtime": "2002-08-17T18:36:22+00:00", "mtime_ts": 1029609382.0, "ctime": "2002-08-17T18:36:22+00:00", "sha256_file": "6586c94731a167b07b4143ea97631b303c9e74c0b6e6c6dec865d3edc212e325", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:36:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6258", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:36:24", "EXIF DateTimeDigitized": "2002:08:17 18:36:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171731", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e56316e3ff2e4d755e639f0a7a392e7c8e27f5057b55511e16d007a1de90e685", "phash": "d4d68bf96803563c", "dhash": "00e4ecc01444e2f2", "phash_int": -3.110144589344582e+18, "collected_at": "2026-05-22T04:30:37.261565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1733_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1733_IMG.JPG", "file_name": "117-1733_IMG.JPG", "file_stem": "117-1733_IMG", "file_ext": ".jpg", "file_size": 1433148.0, "mtime": "2002-08-17T18:37:58+00:00", "mtime_ts": 1029609478.0, "ctime": "2002-08-17T18:37:58+00:00", "sha256_file": "a950ed18382923f367b91c732f529ee0e93c70a0dc91b8b6db0c2c555dd22979", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:37:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5090", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:37:59", "EXIF DateTimeDigitized": "2002:08:17 18:37:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171733", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "316", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a53c69f6244638c514ce7e02bea24925b8248976e66ffdda3b1894e373866bef", "phash": "dccbd37232b61c0c", "dhash": "09c1e324a5160604", "phash_int": -2.5367014776626145e+18, "collected_at": "2026-05-22T04:30:37.330568+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1734_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1734_IMG.JPG", "file_name": "117-1734_IMG.JPG", "file_stem": "117-1734_IMG", "file_ext": ".jpg", "file_size": 1853819.0, "mtime": "2002-08-17T18:40:16+00:00", "mtime_ts": 1029609616.0, "ctime": "2002-08-17T18:40:16+00:00", "sha256_file": "b6d5a92fb819248597e31014f286963d4664628462027f65e93649e35b6ca408", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:40:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6844", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:40:17", "EXIF DateTimeDigitized": "2002:08:17 18:40:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171734", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00f73395089cc86d5feeff4ac46c48c0b51f042a282089d2f29b3ed0f6bd2dc4", "phash": "869795afbb48243a", "dhash": "faecf8f033e7b1b8", "phash_int": -8.748359169150017e+18, "collected_at": "2026-05-22T04:30:37.372567+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1735_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1735_IMG.JPG", "file_name": "117-1735_IMG.JPG", "file_stem": "117-1735_IMG", "file_ext": ".jpg", "file_size": 1957476.0, "mtime": "2002-08-17T18:40:20+00:00", "mtime_ts": 1029609620.0, "ctime": "2002-08-17T18:40:20+00:00", "sha256_file": "08bc349e5c01c592ec3caa1debca6847049d7a766ea317fbb80065fb539af2d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:40:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7526", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:40:22", "EXIF DateTimeDigitized": "2002:08:17 18:40:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171735", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "18474e961330947c2c9a5c2beaa2aca1d9a2e9927208c5842a5772db9731f33d", "phash": "dac1c69ca8ba569a", "dhash": "b1c089193374554d", "phash_int": -2.683645526788123e+18, "collected_at": "2026-05-22T04:30:37.415573+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1736_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1736_IMG.JPG", "file_name": "117-1736_IMG.JPG", "file_stem": "117-1736_IMG", "file_ext": ".jpg", "file_size": 2212354.0, "mtime": "2002-08-17T18:40:24+00:00", "mtime_ts": 1029609624.0, "ctime": "2002-08-17T18:40:24+00:00", "sha256_file": "e29560a35c6c7d3c858a1d7090cd299e1c64ec6b19993bc790ff87c26bd968d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:40:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7600", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:40:26", "EXIF DateTimeDigitized": "2002:08:17 18:40:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171736", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "839d0283c006b28bbd450621693a62729876cf2f0bdeb27629999e9408d6e54c", "phash": "c0dbac807ae49f6c", "dhash": "c058508198a4a6b4", "phash_int": -4.5498533307101594e+18, "collected_at": "2026-05-22T04:30:37.455571+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1737_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1737_IMG.JPG", "file_name": "117-1737_IMG.JPG", "file_stem": "117-1737_IMG", "file_ext": ".jpg", "file_size": 2000782.0, "mtime": "2002-08-17T18:40:30+00:00", "mtime_ts": 1029609630.0, "ctime": "2002-08-17T18:40:30+00:00", "sha256_file": "570f973e78f8086f489a56bb5d3e328e3ea6986f05db039068f9897fcdef64de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:40:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7352", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:40:31", "EXIF DateTimeDigitized": "2002:08:17 18:40:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171737", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec78c75b67f6e69bebb69ffa0a200dddc9b45e11874618b559caba45fd8d288a", "phash": "9e95f4f803c2f134", "dhash": "b0743469e9312125", "phash_int": -7.019435098134876e+18, "collected_at": "2026-05-22T04:30:37.547255+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1738_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1738_IMG.JPG", "file_name": "117-1738_IMG.JPG", "file_stem": "117-1738_IMG", "file_ext": ".jpg", "file_size": 1945772.0, "mtime": "2002-08-17T18:40:34+00:00", "mtime_ts": 1029609634.0, "ctime": "2002-08-17T18:40:34+00:00", "sha256_file": "03625d414f0a717ef69db89928383eb97784cb72a4c546b3489dedb4fc456985", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 18:40:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6355", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 18:40:36", "EXIF DateTimeDigitized": "2002:08:17 18:40:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171738", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "762a98db942adddb76fa344140532ce8bce498c3f3f6a4d44ab43e8e1f0f32a1", "phash": "9fa09d9654d8cb4a", "dhash": "f8dfd39a646c7c7e", "phash_int": -6.944377356411155e+18, "collected_at": "2026-05-22T04:30:37.565256+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1739_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1739_IMG.JPG", "file_name": "117-1739_IMG.JPG", "file_stem": "117-1739_IMG", "file_ext": ".jpg", "file_size": 1826714.0, "mtime": "2002-08-17T19:02:44+00:00", "mtime_ts": 1029610964.0, "ctime": "2002-08-17T19:02:44+00:00", "sha256_file": "2c42bb8ce4ca6934af4567ed22319461cfc84e2877d2ccd15e8abefa7d1df9ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:02:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4899", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:02:45", "EXIF DateTimeDigitized": "2002:08:17 19:02:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171739", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "257", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bc1140aba10d390c7d92fd5371d41959d7878ec3130a6507b9cec1d5edb0ee8", "phash": "d0d3a2a03cbd4b4f", "dhash": "96c8f894e4f0f0e0", "phash_int": -3.3991944846370867e+18, "collected_at": "2026-05-22T04:30:37.658259+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1740_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1740_IMG.JPG", "file_name": "117-1740_IMG.JPG", "file_stem": "117-1740_IMG", "file_ext": ".jpg", "file_size": 1655842.0, "mtime": "2002-08-17T19:02:48+00:00", "mtime_ts": 1029610968.0, "ctime": "2002-08-17T19:02:48+00:00", "sha256_file": "13648280a73115effd885c2a5be8c33de2aa4318a4cf10112a407d0a47c187b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:02:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4503", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:02:50", "EXIF DateTimeDigitized": "2002:08:17 19:02:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171740", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f95e1cd87b907db505bb36eee570e66e6919a7bb176494b746349e08bbfd047d", "phash": "f2c63c711c9c4787", "dhash": "848ccc8cc8888c0c", "phash_int": -9.530078146333062e+17, "collected_at": "2026-05-22T04:30:37.680262+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1742_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1742_IMG.JPG", "file_name": "117-1742_IMG.JPG", "file_stem": "117-1742_IMG", "file_ext": ".jpg", "file_size": 1237038.0, "mtime": "2002-08-17T19:03:02+00:00", "mtime_ts": 1029610982.0, "ctime": "2002-08-17T19:03:02+00:00", "sha256_file": "f32af7f1ea34d8d3c2e3836003c1a6abd44260014a2f069569a108ee8b30ce2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4609", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:03", "EXIF DateTimeDigitized": "2002:08:17 19:03:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171742", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd57ecc7b1a7362f49575b6b33fee6a1a781f81b62e96a54a0eaeb35afa08e07", "phash": "edc693172c60c3cd", "dhash": "0440008363521a33", "phash_int": -1.313200513593851e+18, "collected_at": "2026-05-22T04:30:37.772354+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1741_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1741_IMG.JPG", "file_name": "117-1741_IMG.JPG", "file_stem": "117-1741_IMG", "file_ext": ".jpg", "file_size": 1705448.0, "mtime": "2002-08-17T19:02:56+00:00", "mtime_ts": 1029610976.0, "ctime": "2002-08-17T19:02:56+00:00", "sha256_file": "33de0d004f26ae8e56fc7fe6237a43bbfa1bb0559851f091a19ede53445cc536", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:02:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6169", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:02:57", "EXIF DateTimeDigitized": "2002:08:17 19:02:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171741", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abbdce95e6268434c9791c8377849ce4b099279f12f3f8a2d842d30824186ebe", "phash": "cfdcd19020369c6f", "dhash": "84206266f3f04840", "phash_int": -3.468667196036179e+18, "collected_at": "2026-05-22T04:30:37.778354+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1743_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1743_IMG.JPG", "file_name": "117-1743_IMG.JPG", "file_stem": "117-1743_IMG", "file_ext": ".jpg", "file_size": 1132365.0, "mtime": "2002-08-17T19:03:06+00:00", "mtime_ts": 1029610986.0, "ctime": "2002-08-17T19:03:06+00:00", "sha256_file": "de0c8f23e3c21af58eed9932c1f06f41638f7628b51457bdfabf150a3da647b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4221", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:08", "EXIF DateTimeDigitized": "2002:08:17 19:03:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171743", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fb1b4ff967a022f1757b16137d9c67298bfe283f6e33c7fd95039e24c9c48aa", "phash": "d7d0a1232c58dbd3", "dhash": "a088e0306c4b4ae6", "phash_int": -2.8956373879592806e+18, "collected_at": "2026-05-22T04:30:37.851354+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1744_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1744_IMG.JPG", "file_name": "117-1744_IMG.JPG", "file_stem": "117-1744_IMG", "file_ext": ".jpg", "file_size": 1300519.0, "mtime": "2002-08-17T19:03:10+00:00", "mtime_ts": 1029610990.0, "ctime": "2002-08-17T19:03:10+00:00", "sha256_file": "ae8266edba603f2eee4dc558000320c17d563d4cb1520c92347600ad591a07b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4408", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:12", "EXIF DateTimeDigitized": "2002:08:17 19:03:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171744", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "295", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6dd82c6076f246af7a786dcc47f4cbf972a73f0573da5c823d6c4b05c748acc6", "phash": "cdeb82344f69c992", "dhash": "e2f8e30266b496f0", "phash_int": -3.608647515225077e+18, "collected_at": "2026-05-22T04:30:37.857359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1745_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1745_IMG.JPG", "file_name": "117-1745_IMG.JPG", "file_stem": "117-1745_IMG", "file_ext": ".jpg", "file_size": 1333804.0, "mtime": "2002-08-17T19:03:16+00:00", "mtime_ts": 1029610996.0, "ctime": "2002-08-17T19:03:16+00:00", "sha256_file": "58d314272c8d6a138612452abe8e88aa5a2fe8402b64b10e3fa2133cf1a3196b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4816", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:17", "EXIF DateTimeDigitized": "2002:08:17 19:03:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171745", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a14031076b67d1143eb1662817a7764711306e9506ecd680d35af2bc46188f18", "phash": "cde392345d6dc892", "dhash": "e3e0e30236d676b0", "phash_int": -3.6108817226175754e+18, "collected_at": "2026-05-22T04:30:37.950357+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1746_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1746_IMG.JPG", "file_name": "117-1746_IMG.JPG", "file_stem": "117-1746_IMG", "file_ext": ".jpg", "file_size": 1445130.0, "mtime": "2002-08-17T19:03:20+00:00", "mtime_ts": 1029611000.0, "ctime": "2002-08-17T19:03:20+00:00", "sha256_file": "ae81526327bfc17d199e9d4b5f07eec01522a93d862c075af6eaef78960d0035", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4908", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:21", "EXIF DateTimeDigitized": "2002:08:17 19:03:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171746", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "280", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4e23d9dcd9b76219e323779b9928ac5b6d1e2746675fe679adb2eeef91bf4cc", "phash": "d08db62e45d0bb2e", "dhash": "fefed8d0c399998c", "phash_int": -3.41887623224828e+18, "collected_at": "2026-05-22T04:30:37.986358+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1747_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1747_IMG.JPG", "file_name": "117-1747_IMG.JPG", "file_stem": "117-1747_IMG", "file_ext": ".jpg", "file_size": 1727658.0, "mtime": "2002-08-17T19:03:24+00:00", "mtime_ts": 1029611004.0, "ctime": "2002-08-17T19:03:24+00:00", "sha256_file": "10121c98494ec0f3dcba815deab802f25e79c5d21fde6b61b6cefda82a0aee80", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5624", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:26", "EXIF DateTimeDigitized": "2002:08:17 19:03:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171747", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "72ea06b76d60e39e0e52ffb8423e5cbfae79e32fc90a203d3b5c5a3ef9e373bf", "phash": "9c8f8a6056dd8cab", "dhash": "fcfa7270c5951094", "phash_int": -7.165356335744316e+18, "collected_at": "2026-05-22T04:30:38.036363+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1748_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1748_IMG.JPG", "file_name": "117-1748_IMG.JPG", "file_stem": "117-1748_IMG", "file_ext": ".jpg", "file_size": 1648892.0, "mtime": "2002-08-17T19:03:32+00:00", "mtime_ts": 1029611012.0, "ctime": "2002-08-17T19:03:32+00:00", "sha256_file": "f65e17b9aa20ecb2850d9d06d4610c483edde0d1b778deac810d92e9cd4bb970", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:03:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5429", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:03:33", "EXIF DateTimeDigitized": "2002:08:17 19:03:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171748", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e61fd247dce60d3cc1a21420fd82583f9d3d8321fee07a18cb5021015443598f", "phash": "8685a47b794ed4b4", "dhash": "fef7e4e0192d292d", "phash_int": -8.753409450501549e+18, "collected_at": "2026-05-22T04:30:38.085366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1749_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1749_IMG.JPG", "file_name": "117-1749_IMG.JPG", "file_stem": "117-1749_IMG", "file_ext": ".jpg", "file_size": 1794999.0, "mtime": "2002-08-17T19:14:42+00:00", "mtime_ts": 1029611682.0, "ctime": "2002-08-17T19:14:42+00:00", "sha256_file": "0f17d5b16b4796cb42ec5e68684402c04a4fd59780bfbe4439989a8605affd6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:14:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6031", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:14:44", "EXIF DateTimeDigitized": "2002:08:17 19:14:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[25, 236, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171749", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "94", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3781455afddb3c7253c9e9b608d6e3e6dd01435f647fb81f75ae54e3e8c38d76", "phash": "a9a723ecd24c26b9", "dhash": "ef4bd3b13aa3b359", "phash_int": -6.221964860141591e+18, "collected_at": "2026-05-22T04:30:38.133366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1750_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1750_IMG.JPG", "file_name": "117-1750_IMG.JPG", "file_stem": "117-1750_IMG", "file_ext": ".jpg", "file_size": 1642493.0, "mtime": "2002-08-17T19:15:18+00:00", "mtime_ts": 1029611718.0, "ctime": "2002-08-17T19:15:18+00:00", "sha256_file": "b19be1fe6a9fd2df3de68209015bbea257200249dd1cd2f9bd886d988df8b71e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:15:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6066", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:15:19", "EXIF DateTimeDigitized": "2002:08:17 19:15:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[37, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171750", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75e5c07da2e8b44aca40714437a5b1ab622c49b9ec015d79f8145060aa35c988", "phash": "a5ab26b24b15b563", "dhash": "cbcbd2d29a0ec666", "phash_int": -6.509066289228172e+18, "collected_at": "2026-05-22T04:30:38.195366+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1751_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1751_IMG.JPG", "file_name": "117-1751_IMG.JPG", "file_stem": "117-1751_IMG", "file_ext": ".jpg", "file_size": 1547418.0, "mtime": "2002-08-17T19:19:14+00:00", "mtime_ts": 1029611954.0, "ctime": "2002-08-17T19:19:14+00:00", "sha256_file": "1cd0de49b5812e79492fdf9858c68f38639b319cb03f8e8ca1d996c30a683903", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:17 19:19:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5109", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:17 19:19:16", "EXIF DateTimeDigitized": "2002:08:17 19:19:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[37, 232, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171751", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0158ca140e2dfa0da9f8a1d5dda0c0c6b6eba9c441fbe8fbc8ec86e4f5280449", "phash": "c87c03b35c4b9da3", "dhash": "a1213330a0ca4b69", "phash_int": -4.000318300129354e+18, "collected_at": "2026-05-22T04:30:38.236368+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1752_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1752_IMG.JPG", "file_name": "117-1752_IMG.JPG", "file_stem": "117-1752_IMG", "file_ext": ".jpg", "file_size": 1867892.0, "mtime": "2002-08-18T08:41:20+00:00", "mtime_ts": 1029660080.0, "ctime": "2002-08-18T08:41:20+00:00", "sha256_file": "ec94bbd4768d8078b6fd068e6dc656350088752ddbee536c13e096b42bb92dfa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 08:41:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5903", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 08:41:21", "EXIF DateTimeDigitized": "2002:08:18 08:41:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[29, 235, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171752", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94d5a5c3b954892a01d8ceb3f0d55f26fc39c34367c7e9c5a4cdf2330244bef1", "phash": "b180794f643cf669", "dhash": "9ebfbf3f5e5d1b1c", "phash_int": -5.656387750086248e+18, "collected_at": "2026-05-22T04:30:38.327370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1753_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1753_IMG.JPG", "file_name": "117-1753_IMG.JPG", "file_stem": "117-1753_IMG", "file_ext": ".jpg", "file_size": 1918972.0, "mtime": "2002-08-18T08:41:30+00:00", "mtime_ts": 1029660090.0, "ctime": "2002-08-18T08:41:30+00:00", "sha256_file": "f787f85882a809f3278f99116b41935ad566c35e8eca3e94a186383cccce317d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 08:41:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6153", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 08:41:32", "EXIF DateTimeDigitized": "2002:08:18 08:41:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[34, 229, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171753", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "97", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c73e802e443a6b2b6bcf8e13b46cb0432bcdeb4bad611dafbbb94b7ae0e4220", "phash": "fc6a18f0e5c51353", "dhash": "112121260c9cb8b8", "phash_int": -2.5836660569426653e+17, "collected_at": "2026-05-22T04:30:38.348372+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1754_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1754_IMG.JPG", "file_name": "117-1754_IMG.JPG", "file_stem": "117-1754_IMG", "file_ext": ".jpg", "file_size": 1520208.0, "mtime": "2002-08-18T08:41:38+00:00", "mtime_ts": 1029660098.0, "ctime": "2002-08-18T08:41:38+00:00", "sha256_file": "8bff7b2cdf8a531f0b21b1ce77fd869c65a62a76e7994ec1e0d27366cadfef5e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 08:41:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5330", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 08:41:39", "EXIF DateTimeDigitized": "2002:08:18 08:41:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[31, 236, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171754", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "175d2f24b00167ffdc9fbb7c354231410a55f5d58f39630cdcf9e9587b8b1f63", "phash": "c561697a929ee427", "dhash": "c4c2c6ecf9b161d0", "phash_int": -4.2239790003300014e+18, "collected_at": "2026-05-22T04:30:38.427377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1755_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1755_IMG.JPG", "file_name": "117-1755_IMG.JPG", "file_stem": "117-1755_IMG", "file_ext": ".jpg", "file_size": 1634655.0, "mtime": "2002-08-18T09:53:48+00:00", "mtime_ts": 1029664428.0, "ctime": "2002-08-18T09:53:48+00:00", "sha256_file": "cab7aab834bb1f1f5dc28dcc981c26704c1d23bb0ce13a36cc907e4d389be93a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:53:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5766", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:53:49", "EXIF DateTimeDigitized": "2002:08:18 09:53:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 226, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171755", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "155", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2202"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f15067f9f2e4f50dcc5e943344aac98e26868fa41cbf1e4c6a71006f23178ac5", "phash": "a1620e8ef8d90fd9", "dhash": "67c79b9b9f6e9a36", "phash_int": -6.81787087866239e+18, "collected_at": "2026-05-22T04:30:38.442376+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1756_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1756_IMG.JPG", "file_name": "117-1756_IMG.JPG", "file_stem": "117-1756_IMG", "file_ext": ".jpg", "file_size": 803159.0, "mtime": "2002-08-18T09:54:10+00:00", "mtime_ts": 1029664450.0, "ctime": "2002-08-18T09:54:10+00:00", "sha256_file": "b4ad4c2f546a794092213c5937737de3fbd3867de88555bc6677b89b905f34e3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:54:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5242", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:54:11", "EXIF DateTimeDigitized": "2002:08:18 09:54:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "869/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[129, 135, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171756", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "155", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1738"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f612ffdbe2f4a2a3c17bb08b912c66eee0d837498865ffb5e921e0c064052d48", "phash": "b5e306071c990ff9", "dhash": "efce969e3eeebe36", "phash_int": -5.340418105516945e+18, "collected_at": "2026-05-22T04:30:38.474377+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1757_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1757_IMG.JPG", "file_name": "117-1757_IMG.JPG", "file_stem": "117-1757_IMG", "file_ext": ".jpg", "file_size": 611393.0, "mtime": "2002-08-18T09:54:26+00:00", "mtime_ts": 1029664466.0, "ctime": "2002-08-18T09:54:26+00:00", "sha256_file": "083d1103193346c0208e3a1b91e3853ebbd7a7c6fe4cac04d17b343038af8d82", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:54:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5586", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:54:28", "EXIF DateTimeDigitized": "2002:08:18 09:54:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "891/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171757", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "155", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "891"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "62a4456f5c2c73cf4de1e512e21613ba0293671c85126cbed8e4d0db78499ffe", "phash": "a2c7095c79d21f93", "dhash": "72e4cdcc17379d3b", "phash_int": -6.71739002641435e+18, "collected_at": "2026-05-22T04:30:38.483379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1759_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1759_IMG.JPG", "file_name": "117-1759_IMG.JPG", "file_stem": "117-1759_IMG", "file_ext": ".jpg", "file_size": 684064.0, "mtime": "2002-08-18T09:54:48+00:00", "mtime_ts": 1029664488.0, "ctime": "2002-08-18T09:54:48+00:00", "sha256_file": "c918237be01e69ff8cdb772062bddb6c5b87e15b7b57166f45910036a8ad1ffc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:54:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5805", "EXIF ExposureTime": "1/10", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:54:49", "EXIF DateTimeDigitized": "2002:08:18 09:54:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "747/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171759", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1494"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e49899d97783979882d88510f0ea2cb5b3483a3e4cd6867944d5bb5f26cb2efc", "phash": "a1c20e0e3d9b0ff9", "dhash": "e1cb9b9b9f6f9b36", "phash_int": -6.790849833795383e+18, "collected_at": "2026-05-22T04:30:38.534378+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1758_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1758_IMG.JPG", "file_name": "117-1758_IMG.JPG", "file_stem": "117-1758_IMG", "file_ext": ".jpg", "file_size": 644885.0, "mtime": "2002-08-18T09:54:42+00:00", "mtime_ts": 1029664482.0, "ctime": "2002-08-18T09:54:42+00:00", "sha256_file": "243bdd1964f8bcf006d09f3a7337f4546421c78b3a543b37f9a72ca465aea654", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:54:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6095", "EXIF ExposureTime": "1/10", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:54:44", "EXIF DateTimeDigitized": "2002:08:18 09:54:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6499/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171758", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6499"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e267c189a649c298c7273ed2da22130cb2cefd158f53fdc5ec2e91b3e8dff0d", "phash": "80df1b3963b638c6", "dhash": "3af2e4e4c7b3cd8d", "phash_int": -9.160573183748327e+18, "collected_at": "2026-05-22T04:30:38.538379+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1760_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1760_IMG.JPG", "file_name": "117-1760_IMG.JPG", "file_stem": "117-1760_IMG", "file_ext": ".jpg", "file_size": 673325.0, "mtime": "2002-08-18T09:54:52+00:00", "mtime_ts": 1029664492.0, "ctime": "2002-08-18T09:54:52+00:00", "sha256_file": "4dc7363bfc4531ecc4fceee1ddd82ccd3da07d384d9a2c0087e614010ff6f690", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:54:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5723", "EXIF ExposureTime": "1/13", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:54:54", "EXIF DateTimeDigitized": "2002:08:18 09:54:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1891/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171760", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1891"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdb4aa7b32d1c5e08745a34691d9d9fea5757e3c49236e6bf27def4d9e28ce25", "phash": "a1c20e0e7ef90f1d", "dhash": "e7cb9b9b2f6f1276", "phash_int": -6.790849832698704e+18, "collected_at": "2026-05-22T04:30:38.628384+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1761_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1761_IMG.JPG", "file_name": "117-1761_IMG.JPG", "file_stem": "117-1761_IMG", "file_ext": ".jpg", "file_size": 581898.0, "mtime": "2002-08-18T09:55:10+00:00", "mtime_ts": 1029664510.0, "ctime": "2002-08-18T09:55:10+00:00", "sha256_file": "ba54a855aa662bc9224df5c9bcf67a3664cf2b3cb9ad7f6cdf5c6e30faceb298", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:55:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3878", "EXIF ExposureTime": "1/100", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:55:12", "EXIF DateTimeDigitized": "2002:08:18 09:55:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "-2", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "471/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171761", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1884"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe3fcc951e51e8ec5ee05e84bf075a7ae8e59a709eda40ca1fe97549eac4eb1a", "phash": "a9410607fbdc0f9d", "dhash": "ebc79393bbee367e", "phash_int": -6.250708176453497e+18, "collected_at": "2026-05-22T04:30:38.635385+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1763_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1763_IMG.JPG", "file_name": "117-1763_IMG.JPG", "file_stem": "117-1763_IMG", "file_ext": ".jpg", "file_size": 725934.0, "mtime": "2002-08-18T09:56:18+00:00", "mtime_ts": 1029664578.0, "ctime": "2002-08-18T09:56:18+00:00", "sha256_file": "5a88239c13f7b463ad7bb84aa51f4e86aac60c6131cc6ee184c2718f5e4fd1f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:56:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5462", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:56:19", "EXIF DateTimeDigitized": "2002:08:18 09:56:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1821/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171763", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1821"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "049752e3c3e671bb121916406f3b4803f2613484e5168ce103260fe4e4623385", "phash": "a94b0687bc9d07f8", "dhash": "ebce97939befb636", "phash_int": -6.247892877991672e+18, "collected_at": "2026-05-22T04:30:38.672387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1762_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1762_IMG.JPG", "file_name": "117-1762_IMG.JPG", "file_stem": "117-1762_IMG", "file_ext": ".jpg", "file_size": 743947.0, "mtime": "2002-08-18T09:55:24+00:00", "mtime_ts": 1029664524.0, "ctime": "2002-08-18T09:55:24+00:00", "sha256_file": "245b2dbcb5e3ec2df7c979b41b3f68ec09f415f66505933f3a6ed5672668f6b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:55:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5474", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:55:26", "EXIF DateTimeDigitized": "2002:08:18 09:55:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "341/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171762", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1705"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3052c41c27bf7bad7a6f062b35539a2224e8c282b92310e4f0e73ec8f173030a", "phash": "a14b0687bc990ff9", "dhash": "ebcf97939fefb636", "phash_int": -6.824353630295355e+18, "collected_at": "2026-05-22T04:30:38.679386+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1764_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1764_IMG.JPG", "file_name": "117-1764_IMG.JPG", "file_stem": "117-1764_IMG", "file_ext": ".jpg", "file_size": 791303.0, "mtime": "2002-08-18T09:56:22+00:00", "mtime_ts": 1029664582.0, "ctime": "2002-08-18T09:56:22+00:00", "sha256_file": "a8b7113ea7281c93be2f8e6589aa5cf332d877316c207c21e20044fcb9aff83f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:56:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5543", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:56:24", "EXIF DateTimeDigitized": "2002:08:18 09:56:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1821/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171764", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Custom", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1821"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "acf492cee4df31539dde836e6152679ab8ae5d15cf3fef22b50c3847b16f3bdc", "phash": "a14306073fd90f3f", "dhash": "e3c7939b2fef36b6", "phash_int": -6.826605981957812e+18, "collected_at": "2026-05-22T04:30:38.773392+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1765_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1765_IMG.JPG", "file_name": "117-1765_IMG.JPG", "file_stem": "117-1765_IMG", "file_ext": ".jpg", "file_size": 685231.0, "mtime": "2002-08-18T09:56:36+00:00", "mtime_ts": 1029664596.0, "ctime": "2002-08-18T09:56:36+00:00", "sha256_file": "19d30ede7321b763245166562d440260636b47f092ba91bf6623bcdac5c4af92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 09:56:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5542", "EXIF ExposureTime": "1/20", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 09:56:38", "EXIF DateTimeDigitized": "2002:08:18 09:56:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "1/3", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "799/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171765", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "12", "MakerNote WhiteBalance": "Flash", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1598"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "635ec1e44d7cd72ffabc1d2cc3d59c3a9a897d975010f4659e5a19fda1eb3162", "phash": "a1c30607bcd90ff9", "dhash": "ebcf93939befb636", "phash_int": -6.790577182841696e+18, "collected_at": "2026-05-22T04:30:38.782389+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1766_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1766_IMG.JPG", "file_name": "117-1766_IMG.JPG", "file_stem": "117-1766_IMG", "file_ext": ".jpg", "file_size": 1454052.0, "mtime": "2002-08-18T12:53:38+00:00", "mtime_ts": 1029675218.0, "ctime": "2002-08-18T12:53:38+00:00", "sha256_file": "771006f5ee37c1a01389e0d9a20388b79b565e6912db5bf2c26dfda844312ee0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 12:53:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4448", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 12:53:40", "EXIF DateTimeDigitized": "2002:08:18 12:53:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171766", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "245", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "07b1a141e22e606b80642427c364c813edf8cd0b085be2d13e2c5aff8c0bc357", "phash": "e0c93b231f7087d5", "dhash": "13838386c3c38501", "phash_int": -2.2492015168574894e+18, "collected_at": "2026-05-22T04:30:38.883403+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1767_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1767_IMG.JPG", "file_name": "117-1767_IMG.JPG", "file_stem": "117-1767_IMG", "file_ext": ".jpg", "file_size": 2208910.0, "mtime": "2002-08-18T13:35:36+00:00", "mtime_ts": 1029677736.0, "ctime": "2002-08-18T13:35:36+00:00", "sha256_file": "404b081e376af241ae154fb80088f45724ffac08bc9b282b9660ac97c8f2bde7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:35:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7161", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:35:37", "EXIF DateTimeDigitized": "2002:08:18 13:35:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171767", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf407eef1a284e2194b2aeeffd907793edcd92d4b30f2e3b3d6ab57aa5d054d5", "phash": "f9d1469091971fb8", "dhash": "080232189b3a3804", "phash_int": -4.454973014011331e+17, "collected_at": "2026-05-22T04:30:38.904392+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1768_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1768_IMG.JPG", "file_name": "117-1768_IMG.JPG", "file_stem": "117-1768_IMG", "file_ext": ".jpg", "file_size": 2434783.0, "mtime": "2002-08-18T13:35:48+00:00", "mtime_ts": 1029677748.0, "ctime": "2002-08-18T13:35:48+00:00", "sha256_file": "d3f2d0e00b1d9c753c666e8d66976e7ee5bbfaea1c407c50de13439c6b8ffa1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:35:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7315", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:35:49", "EXIF DateTimeDigitized": "2002:08:18 13:35:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171768", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a74a6ac94dec07ddfd6053cbc28fcb3423ce9df2951a2e2c318de00c1061baeb", "phash": "fbc84cc183971e1e", "dhash": "0013395c1b1a0a18", "phash_int": -3.0390858082739046e+17, "collected_at": "2026-05-22T04:30:38.999395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1769_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1769_IMG.JPG", "file_name": "117-1769_IMG.JPG", "file_stem": "117-1769_IMG", "file_ext": ".jpg", "file_size": 1720978.0, "mtime": "2002-08-18T13:35:56+00:00", "mtime_ts": 1029677756.0, "ctime": "2002-08-18T13:35:56+00:00", "sha256_file": "85d74a5981b3300d64acd1052936ad5afd55ad71b9abc52146b3ac8eb43c0a16", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:35:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5771", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:35:57", "EXIF DateTimeDigitized": "2002:08:18 13:35:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171769", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26d4de4eceaa90c121b6068b7fac2e8712a10913054fb962281b7efa1fc9338d", "phash": "b687c5f926e09c62", "dhash": "e8e464e5ad199564", "phash_int": -5.294045163060946e+18, "collected_at": "2026-05-22T04:30:39.005395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1770_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1770_IMG.JPG", "file_name": "117-1770_IMG.JPG", "file_stem": "117-1770_IMG", "file_ext": ".jpg", "file_size": 1902341.0, "mtime": "2002-08-18T13:36:10+00:00", "mtime_ts": 1029677770.0, "ctime": "2002-08-18T13:36:10+00:00", "sha256_file": "6fbc080946ccbdccbec262c1172d1798594fe4bd96f8244a4441b0a72fd55266", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:36:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5586", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:36:12", "EXIF DateTimeDigitized": "2002:08:18 13:36:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171770", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b3c85669bb5480f7b9f340902d45a48d893935fd61a4fec646cbcd28f5212bc", "phash": "c383da7b003ebe4c", "dhash": "98daeecfc34518b0", "phash_int": -4.3583997925445637e+18, "collected_at": "2026-05-22T04:30:39.112407+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1771_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1771_IMG.JPG", "file_name": "117-1771_IMG.JPG", "file_stem": "117-1771_IMG", "file_ext": ".jpg", "file_size": 2555805.0, "mtime": "2002-08-18T13:37:58+00:00", "mtime_ts": 1029677878.0, "ctime": "2002-08-18T13:37:58+00:00", "sha256_file": "40b6d6166799a36efa4c533ee9281b37663c0a0b8a4c164e3b63ea8df1ba873f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:37:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7648", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:37:59", "EXIF DateTimeDigitized": "2002:08:18 13:37:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171771", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "281", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2bfc52f557e33b8cd4bcecd6c7b039403907b9689b81ce842cde67006765319e", "phash": "acd2f2e0e4cae9c2", "dhash": "0434b63626363626", "phash_int": -5.99346110635161e+18, "collected_at": "2026-05-22T04:30:39.135400+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1772_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1772_IMG.JPG", "file_name": "117-1772_IMG.JPG", "file_stem": "117-1772_IMG", "file_ext": ".jpg", "file_size": 2489383.0, "mtime": "2002-08-18T13:38:08+00:00", "mtime_ts": 1029677888.0, "ctime": "2002-08-18T13:38:08+00:00", "sha256_file": "e483cc3a2cb906906886d5aaf2c085a869db7576274c117fe67b122687a981e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:38:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7746", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:38:10", "EXIF DateTimeDigitized": "2002:08:18 13:38:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171772", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b203bf4c8373778a552fd75fda7444b8cfd67d97450c2ff5f5ba3bf8df4ac529", "phash": "acd2f3eacaa9c218", "dhash": "9196b6b666667676", "phash_int": -5.993459964328689e+18, "collected_at": "2026-05-22T04:30:39.257404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1773_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1773_IMG.JPG", "file_name": "117-1773_IMG.JPG", "file_stem": "117-1773_IMG", "file_ext": ".jpg", "file_size": 2677690.0, "mtime": "2002-08-18T13:38:44+00:00", "mtime_ts": 1029677924.0, "ctime": "2002-08-18T13:38:44+00:00", "sha256_file": "d6ee64124375c9ec05d33efc8ce905fd92de844f4b0537e5fa04bbe72bf29adf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:38:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8155", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:38:46", "EXIF DateTimeDigitized": "2002:08:18 13:38:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171773", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b044ce32007dead229b439064db5525b2a09b5327aca71f3279914f2aac942c3", "phash": "a7daf8e2c0a9c28b", "dhash": "0d2c6e66664656e6", "phash_int": -6.351490671674015e+18, "collected_at": "2026-05-22T04:30:39.259406+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1774_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1774_IMG.JPG", "file_name": "117-1774_IMG.JPG", "file_stem": "117-1774_IMG", "file_ext": ".jpg", "file_size": 2291673.0, "mtime": "2002-08-18T13:48:22+00:00", "mtime_ts": 1029678502.0, "ctime": "2002-08-18T13:48:22+00:00", "sha256_file": "d521ba7b8d66f36be5f758d4594f11924dc28ab9d939b218e2c22ffea310052d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:48:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7112", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:48:24", "EXIF DateTimeDigitized": "2002:08:18 13:48:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171774", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3e8e44b1535be8ebeed8e691cb1fe21423e59af0db4b85ad7e7eb51300a33ecb", "phash": "a630f5145d639657", "dhash": "cccd4d65656d6d64", "phash_int": -6.471403196716444e+18, "collected_at": "2026-05-22T04:30:39.399412+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1775_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1775_IMG.JPG", "file_name": "117-1775_IMG.JPG", "file_stem": "117-1775_IMG", "file_ext": ".jpg", "file_size": 2171707.0, "mtime": "2002-08-18T13:49:06+00:00", "mtime_ts": 1029678546.0, "ctime": "2002-08-18T13:49:06+00:00", "sha256_file": "1321d7fb1c247cdd2caf4e9d6d9994e33fcfc3460a2a3e3338a0f4c880381bb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:49:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7209", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:49:08", "EXIF DateTimeDigitized": "2002:08:18 13:49:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171775", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4cb14929e2bad04a2abd02fbd17b10ace8169340f7c73e4c7db5cec0b9b285fc", "phash": "8d6de78c4962dc2c", "dhash": "6222261236b4af63", "phash_int": -8.255687952187598e+18, "collected_at": "2026-05-22T04:30:39.407411+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1776_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1776_IMG.JPG", "file_name": "117-1776_IMG.JPG", "file_stem": "117-1776_IMG", "file_ext": ".jpg", "file_size": 2476705.0, "mtime": "2002-08-18T13:49:16+00:00", "mtime_ts": 1029678556.0, "ctime": "2002-08-18T13:49:16+00:00", "sha256_file": "4d1747692c612059cea562fecc95aa6c88be137e1c65fcc9cf75c14f7342ff2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:49:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6336", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:49:17", "EXIF DateTimeDigitized": "2002:08:18 13:49:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171776", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9fbac619d20d4d9e6aeb54de588076f60c401236d3c26c10395f70990186487d", "phash": "af2f2f022f92caa8", "dhash": "6f6f276365e89c33", "phash_int": -5.823384106732172e+18, "collected_at": "2026-05-22T04:30:39.544415+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1777_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1777_IMG.JPG", "file_name": "117-1777_IMG.JPG", "file_stem": "117-1777_IMG", "file_ext": ".jpg", "file_size": 2349301.0, "mtime": "2002-08-18T13:49:42+00:00", "mtime_ts": 1029678582.0, "ctime": "2002-08-18T13:49:42+00:00", "sha256_file": "11e8751216b7de9472ed868b9dbc18b12c155fb55ca6b95979254348be6c3c02", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:49:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6838", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:49:43", "EXIF DateTimeDigitized": "2002:08:18 13:49:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171777", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "284", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d012dab1b0ccdd67a797727aa32fdb929c8a442dbe76051c3261be00dd02dd19", "phash": "bc3ee6be40585983", "dhash": "3c3f3a38be32248e", "phash_int": -4.882211241225333e+18, "collected_at": "2026-05-22T04:30:39.552414+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1778_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1778_IMG.JPG", "file_name": "117-1778_IMG.JPG", "file_stem": "117-1778_IMG", "file_ext": ".jpg", "file_size": 2219180.0, "mtime": "2002-08-18T13:50:26+00:00", "mtime_ts": 1029678626.0, "ctime": "2002-08-18T13:50:26+00:00", "sha256_file": "fc554485026d55fd14ec5bedc2ebd73f593ea4e36201481ccfbb16ba18c0e1f0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:50:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5826", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:50:28", "EXIF DateTimeDigitized": "2002:08:18 13:50:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8249/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171778", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8249"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5c42866fa714329051a8fbabfe05e2ba6eb23401fc802dd2b9fcf1ad6840974", "phash": "cf4f1b98964e418e", "dhash": "715141e168f07178", "phash_int": -3.508555242527637e+18, "collected_at": "2026-05-22T04:30:39.690420+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1780_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1780_IMG.JPG", "file_name": "117-1780_IMG.JPG", "file_stem": "117-1780_IMG", "file_ext": ".jpg", "file_size": 1990663.0, "mtime": "2002-08-18T13:51:00+00:00", "mtime_ts": 1029678660.0, "ctime": "2002-08-18T13:51:00+00:00", "sha256_file": "b1e042ecce209bf8461903a0c29c1e44a7bdae5891ec72039fe8ebc0518d609a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:51:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6776", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:51:02", "EXIF DateTimeDigitized": "2002:08:18 13:51:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1429/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171780", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2858"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0539e466ea7fdb4e9783b7daf94cbb1fb40ad642919c6be4c7ccf48c0feae036", "phash": "cc6de466ec8c9ab0", "dhash": "37333373616dac30", "phash_int": -3.7160629868043566e+18, "collected_at": "2026-05-22T04:30:39.701425+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1782_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1782_IMG.JPG", "file_name": "117-1782_IMG.JPG", "file_stem": "117-1782_IMG", "file_ext": ".jpg", "file_size": 2289835.0, "mtime": "2002-08-18T13:51:48+00:00", "mtime_ts": 1029678708.0, "ctime": "2002-08-18T13:51:48+00:00", "sha256_file": "d06634884f16bd156e4e59b5f4202917828bf709279454c0cfcb0771dc459236", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:51:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6639", "EXIF ExposureTime": "1/160", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:51:49", "EXIF DateTimeDigitized": "2002:08:18 13:51:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5361/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171782", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5361"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "889a8d2957b2933edf7af32bbc585416c37b021c675fa3aa2f0a15a274f79f44", "phash": "e263f1c766981137", "dhash": "8f8f8f2f6f6bc383", "phash_int": -2.1335959597214554e+18, "collected_at": "2026-05-22T04:30:39.843946+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1781_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1781_IMG.JPG", "file_name": "117-1781_IMG.JPG", "file_stem": "117-1781_IMG", "file_ext": ".jpg", "file_size": 2213676.0, "mtime": "2002-08-18T13:51:34+00:00", "mtime_ts": 1029678694.0, "ctime": "2002-08-18T13:51:34+00:00", "sha256_file": "0355eb112d964310554e5531e5cce1e100162d41b5300f8b4766566937c476e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 13:51:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6913", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 13:51:35", "EXIF DateTimeDigitized": "2002:08:18 13:51:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "971/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171781", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3884"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87837bed75607adfdf65330e7d03ac0a6b731496fe313c561d43051a4cf6d321", "phash": "a7a7b730c34c1c3a", "dhash": "4fceefc7c797b6e3", "phash_int": -6.365918128202049e+18, "collected_at": "2026-05-22T04:30:39.852945+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1783_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1783_IMG.JPG", "file_name": "117-1783_IMG.JPG", "file_stem": "117-1783_IMG", "file_ext": ".jpg", "file_size": 1759032.0, "mtime": "2002-08-18T14:51:10+00:00", "mtime_ts": 1029682270.0, "ctime": "2002-08-18T14:51:10+00:00", "sha256_file": "4a35b428b13dae66153c946808b47972047c2e2a604ee22ebcb44eb64a7000da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:51:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4356", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:51:12", "EXIF DateTimeDigitized": "2002:08:18 14:51:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "719/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171783", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "344", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5752"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b94140fcb521e8e1bf96b5a49bec920450e3f5c7fe0cb4632827a7875f8e7413", "phash": "a2df99a0a6bda388", "dhash": "e0e06ccdad8cacec", "phash_int": -6.710476004487486e+18, "collected_at": "2026-05-22T04:30:39.964531+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1785_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1785_IMG.JPG", "file_name": "117-1785_IMG.JPG", "file_stem": "117-1785_IMG", "file_ext": ".jpg", "file_size": 1146265.0, "mtime": "2002-08-18T14:51:24+00:00", "mtime_ts": 1029682284.0, "ctime": "2002-08-18T14:51:24+00:00", "sha256_file": "aeb6e0c63500dfb25b27564adfaed7421d7e3a54f28700ecb11fd9c7bb1bc9cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:51:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4270", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:51:26", "EXIF DateTimeDigitized": "2002:08:18 14:51:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4381/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171785", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4381"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "645ac2f8dc00ed2ca30f63a5c444a3e34275a66e7b6c5e31bf8fd1b2111cdace", "phash": "bce4c28c3f72f80c", "dhash": "b4f2961f37b7491a", "phash_int": -4.835526192273361e+18, "collected_at": "2026-05-22T04:30:39.990610+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1786_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1786_IMG.JPG", "file_name": "117-1786_IMG.JPG", "file_stem": "117-1786_IMG", "file_ext": ".jpg", "file_size": 1093422.0, "mtime": "2002-08-18T14:51:38+00:00", "mtime_ts": 1029682298.0, "ctime": "2002-08-18T14:51:38+00:00", "sha256_file": "f5254ae6bae518be0fc41db61f829cfbab5aa371037909b2655bdc404ac434b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:51:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4435", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:51:40", "EXIF DateTimeDigitized": "2002:08:18 14:51:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "12763/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171786", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "508", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "336", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12763"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d17e6b06bd12486bce8d51dbf0f7365fc9d4cd1d0742c774552ef6c293b2e5c8", "phash": "be9fc71961c042f8", "dhash": "6966283a3a3a26ce", "phash_int": -4.710827773378149e+18, "collected_at": "2026-05-22T04:30:40.069615+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1787_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1787_IMG.JPG", "file_name": "117-1787_IMG.JPG", "file_stem": "117-1787_IMG", "file_ext": ".jpg", "file_size": 2533270.0, "mtime": "2002-08-18T14:52:38+00:00", "mtime_ts": 1029682358.0, "ctime": "2002-08-18T14:52:38+00:00", "sha256_file": "c2ba28b9382b01751ff109290127b37a9c0aee7027364d3a0c301d157cf302bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:52:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6414", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:52:40", "EXIF DateTimeDigitized": "2002:08:18 14:52:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171787", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91b5e0ed326f93adda5a8bd409465682e6e4a73f03e38a9296f3fab36787b700", "phash": "ea97360b720dd88b", "dhash": "b3ddf8c0d1f3332f", "phash_int": -1.5427049245650552e+18, "collected_at": "2026-05-22T04:30:40.072619+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1789_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1789_IMG.JPG", "file_name": "117-1789_IMG.JPG", "file_stem": "117-1789_IMG", "file_ext": ".jpg", "file_size": 2790823.0, "mtime": "2002-08-18T14:52:50+00:00", "mtime_ts": 1029682370.0, "ctime": "2002-08-18T14:52:50+00:00", "sha256_file": "aca55139d8f6e655b910fe64ff9604ee8e29a24484470cbce0508ac81c0115de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:52:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7169", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:52:52", "EXIF DateTimeDigitized": "2002:08:18 14:52:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171789", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3d963321ee96959ab14d9707f8cfb512f583b1235b582b2a03a8e5dba224198e", "phash": "82b8cdfde646118e", "dhash": "8031cdcdcccae5c5", "phash_int": -9.027238962690388e+18, "collected_at": "2026-05-22T04:30:40.254319+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1788_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1788_IMG.JPG", "file_name": "117-1788_IMG.JPG", "file_stem": "117-1788_IMG", "file_ext": ".jpg", "file_size": 2692199.0, "mtime": "2002-08-18T14:52:44+00:00", "mtime_ts": 1029682364.0, "ctime": "2002-08-18T14:52:44+00:00", "sha256_file": "43709f891a3244c2a20288978ea06956e60bd17cd93054e44d761510e0c818ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:52:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6395", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:52:45", "EXIF DateTimeDigitized": "2002:08:18 14:52:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171788", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "319", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d537cdd33ca1befa38e45c8fe986264c7409d0c8d5e260117dcb9606d4640f7", "phash": "d5af5068945fb22a", "dhash": "00074e4c6464f0bc", "phash_int": -3.049130012610416e+18, "collected_at": "2026-05-22T04:30:40.272320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1791_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1791_IMG.JPG", "file_name": "117-1791_IMG.JPG", "file_stem": "117-1791_IMG", "file_ext": ".jpg", "file_size": 1944960.0, "mtime": "2002-08-18T15:54:18+00:00", "mtime_ts": 1029686058.0, "ctime": "2002-08-18T15:54:18+00:00", "sha256_file": "fb84739a16b95df25184c05632bea2a69374b4c5f0d24a79f4de45b60253eb1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:54:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4332", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:54:19", "EXIF DateTimeDigitized": "2002:08:18 15:54:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171791", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "353", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "935dc7025f2f88787e12ddf827a523d8b781812949c8af5143a413db38130f89", "phash": "dbd2a42469eb6a52", "dhash": "e3f8f8f1f0d8f8f0", "phash_int": -2.606840757991282e+18, "collected_at": "2026-05-22T04:30:40.394328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1790_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1790_IMG.JPG", "file_name": "117-1790_IMG.JPG", "file_stem": "117-1790_IMG", "file_ext": ".jpg", "file_size": 2351161.0, "mtime": "2002-08-18T14:52:56+00:00", "mtime_ts": 1029682376.0, "ctime": "2002-08-18T14:52:56+00:00", "sha256_file": "61ada1ca909265deda580bc311c168ec77040f9453fe8e028dee7418d44af550", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 14:52:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6027", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 14:52:58", "EXIF DateTimeDigitized": "2002:08:18 14:52:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171790", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26fa6cda2db981cf6c9fbf6852d0eab912eb88c6fd2b8df66a3c44e30ee36490", "phash": "f0ea9419f8774aa4", "dhash": "8083811199b89eac", "phash_int": -1.0868935207928928e+18, "collected_at": "2026-05-22T04:30:40.397328+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1792_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1792_IMG.JPG", "file_name": "117-1792_IMG.JPG", "file_stem": "117-1792_IMG", "file_ext": ".jpg", "file_size": 2615099.0, "mtime": "2002-08-18T15:54:36+00:00", "mtime_ts": 1029686076.0, "ctime": "2002-08-18T15:54:36+00:00", "sha256_file": "f94bf4a18d7bb04ac719eedbcd74b68c656a4a46184c97a3e1b886a26f64a3a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:54:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6281", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:54:38", "EXIF DateTimeDigitized": "2002:08:18 15:54:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171792", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9fc3ed8842ff25177ef5f12a9e3fa37f4b69e4185dec40451dfa784d14e0b6e3", "phash": "bd3f9713c0c88d64", "dhash": "587e263396ca08c0", "phash_int": -4.809959765913859e+18, "collected_at": "2026-05-22T04:30:40.554700+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1793_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1793_IMG.JPG", "file_name": "117-1793_IMG.JPG", "file_stem": "117-1793_IMG", "file_ext": ".jpg", "file_size": 2083861.0, "mtime": "2002-08-18T15:55:36+00:00", "mtime_ts": 1029686136.0, "ctime": "2002-08-18T15:55:36+00:00", "sha256_file": "e0708bd790990353f37043541483f42b1bc05d1ea617f0dbae4f4f3653206330", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:55:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4718", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:55:38", "EXIF DateTimeDigitized": "2002:08:18 15:55:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171793", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "350", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7178bb3c76cacfceb6569fb1e70cf5d68472b80aa268a2f880e18d9f932906dc", "phash": "c6d6919135a5a56d", "dhash": "fcf1e4e5e1e0f0e1", "phash_int": -4.118944756327406e+18, "collected_at": "2026-05-22T04:30:40.564792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1794_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1794_IMG.JPG", "file_name": "117-1794_IMG.JPG", "file_stem": "117-1794_IMG", "file_ext": ".jpg", "file_size": 1743269.0, "mtime": "2002-08-18T15:55:48+00:00", "mtime_ts": 1029686148.0, "ctime": "2002-08-18T15:55:48+00:00", "sha256_file": "eba11306a1a82f474cdd47fbb17ee76452d765cc6e3fe0ddf9a9539dbca6e0f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:55:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5009", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:55:50", "EXIF DateTimeDigitized": "2002:08:18 15:55:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1127/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171794", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "341", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d1aafe88a5f3b25d3a75e358afe201d2316d80fd4f0b66d3fb5fe10f7acc7f74", "phash": "c9c9991d6624add9", "dhash": "e3f1e1c7c0f1f0c0", "phash_int": -3.9064228502204134e+18, "collected_at": "2026-05-22T04:30:40.695747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1795_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1795_IMG.JPG", "file_name": "117-1795_IMG.JPG", "file_stem": "117-1795_IMG", "file_ext": ".jpg", "file_size": 1424488.0, "mtime": "2002-08-18T15:56:04+00:00", "mtime_ts": 1029686164.0, "ctime": "2002-08-18T15:56:04+00:00", "sha256_file": "a43adc60bb2f29869ce4f734e89c01574f63bd2c93dbce8d900b54e65c01d686", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:56:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4723", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:56:05", "EXIF DateTimeDigitized": "2002:08:18 15:56:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "141/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171795", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "308", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "705"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef71e57ae65ce1012f192420befc847e6e10fe0589ca7e1dc1c695de7e8c0777", "phash": "8fe51b710c2b2b1d", "dhash": "43446666226a7071", "phash_int": -8.078020184269706e+18, "collected_at": "2026-05-22T04:30:40.717841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1796_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1796_IMG.JPG", "file_name": "117-1796_IMG.JPG", "file_stem": "117-1796_IMG", "file_ext": ".jpg", "file_size": 1540368.0, "mtime": "2002-08-18T15:56:18+00:00", "mtime_ts": 1029686178.0, "ctime": "2002-08-18T15:56:18+00:00", "sha256_file": "7dc6b70b77c8495bfcfe47560ed823bf9ba406ef0177e5ae5f8aa0a771a41ee8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:56:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3526", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:56:20", "EXIF DateTimeDigitized": "2002:08:18 15:56:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "75/16", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1127/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171796", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "150", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73c9ae47b94430818d1287db7da223aa60b28a0abb1e52719d0fedd3cfbd335d", "phash": "89b3b6204b35b6da", "dhash": "fefefcf3f3fef676", "phash_int": -8.524269419865197e+18, "collected_at": "2026-05-22T04:30:40.834846+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1797_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1797_IMG.JPG", "file_name": "117-1797_IMG.JPG", "file_stem": "117-1797_IMG", "file_ext": ".jpg", "file_size": 1675072.0, "mtime": "2002-08-18T15:57:16+00:00", "mtime_ts": 1029686236.0, "ctime": "2002-08-18T15:57:16+00:00", "sha256_file": "4f25e314ed8da5e949cc61c3103a5ae793bded7d520a8966cc39bf0263619b11", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:57:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4573", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:57:18", "EXIF DateTimeDigitized": "2002:08:18 15:57:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1127/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171797", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "345", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5635"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "753cda63f3c8e5404e018f12a3a8377368d64a6a754f22503c68063dfbcd27a3", "phash": "97d5c13d37455530", "dhash": "faffdc6c3e3e7a9c", "phash_int": -7.505880735278607e+18, "collected_at": "2026-05-22T04:30:40.856842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1798_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1798_IMG.JPG", "file_name": "117-1798_IMG.JPG", "file_stem": "117-1798_IMG", "file_ext": ".jpg", "file_size": 1976216.0, "mtime": "2002-08-18T15:57:30+00:00", "mtime_ts": 1029686250.0, "ctime": "2002-08-18T15:57:30+00:00", "sha256_file": "187f6b2f22108cfa73f0a27f8591babcf5eeca13576be059a93294f4193c182d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:57:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4300", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:57:31", "EXIF DateTimeDigitized": "2002:08:18 15:57:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171798", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21e64ea122c7be5373cb9f4159c6a26dd673dd91e67fcc1bb06cb2db06b9e5dd", "phash": "d6d4ad252b89ca36", "dhash": "fefcfcfcccccf6c0", "phash_int": -2.9665558793744686e+18, "collected_at": "2026-05-22T04:30:40.996849+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1799_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1799_IMG.JPG", "file_name": "117-1799_IMG.JPG", "file_stem": "117-1799_IMG", "file_ext": ".jpg", "file_size": 2266610.0, "mtime": "2002-08-18T15:57:42+00:00", "mtime_ts": 1029686262.0, "ctime": "2002-08-18T15:57:42+00:00", "sha256_file": "db30288dd54152a1dea834c059325cefb921a7ee1ea8a1dca833e740a94a180c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:18 15:57:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5527", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:18 15:57:44", "EXIF DateTimeDigitized": "2002:08:18 15:57:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171799", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99afe2b55cb3ab3dfc2c4f6697252e7937e98175c8c6ec1d41d789ff5a877580", "phash": "d1d9ddb4348435a5", "dhash": "f8f0f2d08e8d8862", "phash_int": -3.325383083791469e+18, "collected_at": "2026-05-22T04:30:41.000848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1800_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\117-1800_IMG.JPG", "file_name": "117-1800_IMG.JPG", "file_stem": "117-1800_IMG", "file_ext": ".jpg", "file_size": 1572109.0, "mtime": "2002-08-20T11:20:22+00:00", "mtime_ts": 1029842422.0, "ctime": "2002-08-20T11:20:22+00:00", "sha256_file": "cb04e4008529bbb147e1a96d5c7c24c03bc5936076f341d0ee944cf01306b821", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:20:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6704", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:20:23", "EXIF DateTimeDigitized": "2002:08:20 11:20:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171800", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "173", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fed59df60f06ebf8adee4a167ea77f624607104e894dfb84af3ebf68205055fc", "phash": "96cfa8e379186b48", "dhash": "3764743ccceaadb7", "phash_int": -7.579653952898569e+18, "collected_at": "2026-05-22T04:30:41.148976+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1802_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1802_IMG.JPG", "file_name": "118-1802_IMG.JPG", "file_stem": "118-1802_IMG", "file_ext": ".jpg", "file_size": 1624117.0, "mtime": "2002-08-20T11:20:38+00:00", "mtime_ts": 1029842438.0, "ctime": "2002-08-20T11:20:38+00:00", "sha256_file": "a6c8953a9bf23463d49c01d9f0f1e0cfc4321c87e9f479e57fe61a72410e482d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:20:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6743", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:20:39", "EXIF DateTimeDigitized": "2002:08:20 11:20:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181802", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "150", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edc2c1159f1b20bf7202b0545cd8906c46b8947f42e9d2aed5da6b609659d552", "phash": "aad0d74304cc76cf", "dhash": "04191d97a34b6b6d", "phash_int": -6.138169609262696e+18, "collected_at": "2026-05-22T04:30:41.160965+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1807_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1807_IMG.JPG", "file_name": "118-1807_IMG.JPG", "file_stem": "118-1807_IMG", "file_ext": ".jpg", "file_size": 983430.0, "mtime": "2002-08-20T11:21:58+00:00", "mtime_ts": 1029842518.0, "ctime": "2002-08-20T11:21:58+00:00", "sha256_file": "709251d02931d5375051bf336edcbbf2ddb8d32ad55ae8cc8a5ccddf77777526", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:21:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2923", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:21:59", "EXIF DateTimeDigitized": "2002:08:20 11:21:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "15769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181807", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "352", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "15769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b08ba5810d7e0635b37d884a4e61dff8d9b387b28239fec03d01f82a6fff413", "phash": "a3d42ad75827d619", "dhash": "80800058984e4f83", "phash_int": -6.641636446079298e+18, "collected_at": "2026-05-22T04:30:41.282220+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1808_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1808_IMG.JPG", "file_name": "118-1808_IMG.JPG", "file_stem": "118-1808_IMG", "file_ext": ".jpg", "file_size": 1332161.0, "mtime": "2002-08-20T11:22:34+00:00", "mtime_ts": 1029842554.0, "ctime": "2002-08-20T11:22:34+00:00", "sha256_file": "e245bce884674511d06b032ced7d8bf752f1f989f58a97cec2f07867f8f4a6a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:22:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5962", "EXIF ExposureTime": "1/400", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:22:35", "EXIF DateTimeDigitized": "2002:08:20 11:22:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4381/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181808", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4381"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0c8e6af1a722f3d17d82110807e7c8b9a1c7b8274b00b2437d1fa7f96691def1", "phash": "e69198ed921c6d65", "dhash": "3c89468c0f471174", "phash_int": -1.8325154272370737e+18, "collected_at": "2026-05-22T04:30:41.304220+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1810_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1810_IMG.JPG", "file_name": "118-1810_IMG.JPG", "file_stem": "118-1810_IMG", "file_ext": ".jpg", "file_size": 2651661.0, "mtime": "2002-08-20T11:22:54+00:00", "mtime_ts": 1029842574.0, "ctime": "2002-08-20T11:22:54+00:00", "sha256_file": "c934a1270d3b6868427faf772b9703a12f4c6602f39c4d8755adc3497135ea87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:22:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8098", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:22:55", "EXIF DateTimeDigitized": "2002:08:20 11:22:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181810", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "283", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "38dd8df6fbbf4b1da56e87bbd146c5bad5698e51804cad24f082ec73fe06f377", "phash": "f3930d2c3c78c90f", "dhash": "38d9d98d0c11020e", "phash_int": -8.953574172723259e+17, "collected_at": "2026-05-22T04:30:41.401300+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1809_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1809_IMG.JPG", "file_name": "118-1809_IMG.JPG", "file_stem": "118-1809_IMG", "file_ext": ".jpg", "file_size": 3120693.0, "mtime": "2002-08-20T11:22:42+00:00", "mtime_ts": 1029842562.0, "ctime": "2002-08-20T11:22:42+00:00", "sha256_file": "fa346f396392522999ffc640c5662feb4428b8a47e07a704a1dcc6f05aaab66d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:22:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8167", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:22:44", "EXIF DateTimeDigitized": "2002:08:20 11:22:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181809", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cde16fc50ccbf57a514609253da18fa1fa823648afe9c628eefad79b3c022a2a", "phash": "c9f4cbe5438c58a5", "dhash": "8000b2a8c4d3f3f3", "phash_int": -3.894263592227416e+18, "collected_at": "2026-05-22T04:30:41.403301+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1811_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1811_IMG.JPG", "file_name": "118-1811_IMG.JPG", "file_stem": "118-1811_IMG", "file_ext": ".jpg", "file_size": 2798943.0, "mtime": "2002-08-20T11:23:04+00:00", "mtime_ts": 1029842584.0, "ctime": "2002-08-20T11:23:04+00:00", "sha256_file": "f5e5cb56bc2e31c4a8288f2282d6c7b12ff729489e858286cb5223037c54a229", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 11:23:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8656", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 11:23:05", "EXIF DateTimeDigitized": "2002:08:20 11:23:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181811", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11da635a868c3708b2a8802a83dea1be4ec457a5b3d88d316b468c2d8edf9e12", "phash": "b54f562b4bce9144", "dhash": "5454b4b33b9fad94", "phash_int": -5.381988285729042e+18, "collected_at": "2026-05-22T04:30:41.641307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1814_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1814_IMG.JPG", "file_name": "118-1814_IMG.JPG", "file_stem": "118-1814_IMG", "file_ext": ".jpg", "file_size": 2994911.0, "mtime": "2002-08-20T16:51:24+00:00", "mtime_ts": 1029862284.0, "ctime": "2002-08-20T16:51:24+00:00", "sha256_file": "11060267754250efb92efa904ef10ee145e1202fd6df29672ec6b46834b865b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 16:51:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7866", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 16:51:26", "EXIF DateTimeDigitized": "2002:08:20 16:51:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181814", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "211", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b705939d9b8666c01d77d3660833a595755cb5411b638047b3c8837fb3bb1a4", "phash": "e5875e2120f0b8fe", "dhash": "e6444c8ec6929731", "phash_int": -1.907452420788537e+18, "collected_at": "2026-05-22T04:30:41.649308+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1822_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1822_IMG.JPG", "file_name": "118-1822_IMG.JPG", "file_stem": "118-1822_IMG", "file_ext": ".jpg", "file_size": 1738564.0, "mtime": "2002-08-20T17:49:22+00:00", "mtime_ts": 1029865762.0, "ctime": "2002-08-20T17:49:22+00:00", "sha256_file": "3f2ade2af9a661a85cd2f43657bd0f90c8c961b01343c37aab66f71da7f28be4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:49:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6566", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:49:24", "EXIF DateTimeDigitized": "2002:08:20 17:49:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181822", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "286", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2288586621f9edc66285118574467efa04e9c89c4cf937e78719235c69ab41ba", "phash": "a384ad4c4e63bc1f", "dhash": "8edfd8cdd595d959", "phash_int": -6.664011005357213e+18, "collected_at": "2026-05-22T04:30:41.787566+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1815_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1815_IMG.JPG", "file_name": "118-1815_IMG.JPG", "file_stem": "118-1815_IMG", "file_ext": ".jpg", "file_size": 2503452.0, "mtime": "2002-08-20T16:51:32+00:00", "mtime_ts": 1029862292.0, "ctime": "2002-08-20T16:51:32+00:00", "sha256_file": "2790af302036850644efabab09c308d6f76e2c15189e084badfade2cb1f06e17", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 16:51:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8266", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 16:51:34", "EXIF DateTimeDigitized": "2002:08:20 16:51:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181815", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e79a3afed7e94c7dc09bc28f01c0bd654e7f9a4c303dbf43dbecd35aaa0e669e", "phash": "93ee71683c3219c7", "dhash": "89414975f29a48d8", "phash_int": -7.787162013176556e+18, "collected_at": "2026-05-22T04:30:41.795582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1823_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1823_IMG.JPG", "file_name": "118-1823_IMG.JPG", "file_stem": "118-1823_IMG", "file_ext": ".jpg", "file_size": 1386147.0, "mtime": "2002-08-20T17:49:26+00:00", "mtime_ts": 1029865766.0, "ctime": "2002-08-20T17:49:26+00:00", "sha256_file": "e5e32a4d97a48994100944bfcd3484a2182d217edcbbd7c4aa7bf4325fab1e3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:49:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6484", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:49:27", "EXIF DateTimeDigitized": "2002:08:20 17:49:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181823", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "296", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ff60606c191ca486e8e105bac529907bd4080590ec37448253b8248a04840c5", "phash": "a384bd684c66bc1f", "dhash": "86dfeccdd595cd59", "phash_int": -6.663993292945442e+18, "collected_at": "2026-05-22T04:30:41.891693+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1824_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1824_IMG.JPG", "file_name": "118-1824_IMG.JPG", "file_stem": "118-1824_IMG", "file_ext": ".jpg", "file_size": 1745001.0, "mtime": "2002-08-20T17:49:28+00:00", "mtime_ts": 1029865768.0, "ctime": "2002-08-20T17:49:28+00:00", "sha256_file": "5323f045c8218d201d73a58e2b2469f40af58894a2d40009e05360f8f4e40355", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:49:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6999", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:49:30", "EXIF DateTimeDigitized": "2002:08:20 17:49:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181824", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c7183ec82b2fccb3beac4d8b39e28d2cdcc699b457ecc6e6b2cb6c69ea847851", "phash": "b09695ac2d539756", "dhash": "ae9c589997999b93", "phash_int": -5.72222170980027e+18, "collected_at": "2026-05-22T04:30:41.906691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1827_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1827_IMG.JPG", "file_name": "118-1827_IMG.JPG", "file_stem": "118-1827_IMG", "file_ext": ".jpg", "file_size": 1490947.0, "mtime": "2002-08-20T17:57:32+00:00", "mtime_ts": 1029866252.0, "ctime": "2002-08-20T17:57:32+00:00", "sha256_file": "98661748840a67630196a74efd7ca2ce31c47d11e9a911616e91bca78d9b85ba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:57:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4907", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:57:33", "EXIF DateTimeDigitized": "2002:08:20 17:57:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181827", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3be6d8a6c83c262f5955299371f59c355104153a1da8423328cb2115f1ccbee8", "phash": "89375269c9d95a72", "dhash": "999cbcf2d2f3f1e1", "phash_int": -8.559281952482829e+18, "collected_at": "2026-05-22T04:30:42.023821+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1826_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1826_IMG.JPG", "file_name": "118-1826_IMG.JPG", "file_stem": "118-1826_IMG", "file_ext": ".jpg", "file_size": 1536683.0, "mtime": "2002-08-20T17:57:24+00:00", "mtime_ts": 1029866244.0, "ctime": "2002-08-20T17:57:24+00:00", "sha256_file": "33bc7d379240dba73af82c2fe5701429eaa8c2d50aaec6f27749f1ad82fb1544", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:57:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5054", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:57:26", "EXIF DateTimeDigitized": "2002:08:20 17:57:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[57, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181826", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "123", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6c6a67e69ea4920ec728e5e049c5a36c7ede4720a49ac01641b8089b33dc1d3b", "phash": "88355b680dccde6b", "dhash": "ba9ef4f6b7b3e1e1", "phash_int": -8.631892608319431e+18, "collected_at": "2026-05-22T04:30:42.034824+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1828_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1828_IMG.JPG", "file_name": "118-1828_IMG.JPG", "file_stem": "118-1828_IMG", "file_ext": ".jpg", "file_size": 1914634.0, "mtime": "2002-08-20T17:58:02+00:00", "mtime_ts": 1029866282.0, "ctime": "2002-08-20T17:58:02+00:00", "sha256_file": "9244c871a0ce5f82fdc4e8a165998d9ae515f2f785b7f74501a8122ce086c917", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:58:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6972", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:58:03", "EXIF DateTimeDigitized": "2002:08:20 17:58:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181828", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "78c7d626d0009b89b4c5207ff5740a3de1be7fa4715666db1d80c428ad8ff45a", "phash": "c13a876f78f59083", "dhash": "0060d01ec7c6c6c4", "phash_int": -4.523153962899763e+18, "collected_at": "2026-05-22T04:30:42.155085+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1829_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1829_IMG.JPG", "file_name": "118-1829_IMG.JPG", "file_stem": "118-1829_IMG", "file_ext": ".jpg", "file_size": 2245369.0, "mtime": "2002-08-20T17:58:24+00:00", "mtime_ts": 1029866304.0, "ctime": "2002-08-20T17:58:24+00:00", "sha256_file": "3ffdc0b2a43ff7d1ba4aaa0704dc5b963e9adfe006dde03bac4bba729ebffe3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:58:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7888", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:58:26", "EXIF DateTimeDigitized": "2002:08:20 17:58:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181829", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b91809a734a9a790a68beeb9e00c127ab68e3076c9e9b36f6d5bbce3fa262d80", "phash": "9498a777c86c6a4d", "dhash": "bcbca9b1555d46cc", "phash_int": -7.739251826730702e+18, "collected_at": "2026-05-22T04:30:42.168083+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1831_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1831_IMG.JPG", "file_name": "118-1831_IMG.JPG", "file_stem": "118-1831_IMG", "file_ext": ".jpg", "file_size": 1411275.0, "mtime": "2002-08-20T17:59:00+00:00", "mtime_ts": 1029866340.0, "ctime": "2002-08-20T17:59:00+00:00", "sha256_file": "e2ef9e15850562126ca41163d43550ce9b6adf0b84c41e7115ce510105c325c9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:59:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4051", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:59:02", "EXIF DateTimeDigitized": "2002:08:20 17:59:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[116, 149, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181831", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "147", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb14feea8b5ab023518f27d7592f8bd000f97ae6355c023d0d25c0001d739090", "phash": "cb3c639e6c0ccc93", "dhash": "e0c8f0f2f0f8f0d0", "phash_int": -3.8020544533387807e+18, "collected_at": "2026-05-22T04:30:42.290550+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1830_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1830_IMG.JPG", "file_name": "118-1830_IMG.JPG", "file_stem": "118-1830_IMG", "file_ext": ".jpg", "file_size": 2335680.0, "mtime": "2002-08-20T17:58:44+00:00", "mtime_ts": 1029866324.0, "ctime": "2002-08-20T17:58:44+00:00", "sha256_file": "ddd5c0f7a8b2976380538ffe71ab5ab20464ea8a4bc80c038193dc6d73fefccb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:58:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7959", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:58:45", "EXIF DateTimeDigitized": "2002:08:20 17:58:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181830", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "277", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "70c66cd334d527ca080342ed729e13582b9a6ed04f8cb73459d610cbeb222e62", "phash": "951a2837374de237", "dhash": "7cd8e8ce4c8e6606", "phash_int": -7.702799995047648e+18, "collected_at": "2026-05-22T04:30:42.307554+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1840_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1840_IMG.JPG", "file_name": "118-1840_IMG.JPG", "file_stem": "118-1840_IMG", "file_ext": ".jpg", "file_size": 1183083.0, "mtime": "2002-08-20T19:28:04+00:00", "mtime_ts": 1029871684.0, "ctime": "2002-08-20T19:28:04+00:00", "sha256_file": "93721104407959dec092341d52de0801b96176a2e82058bfc1e1f156734442fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 19:28:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5344", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 19:28:05", "EXIF DateTimeDigitized": "2002:08:20 19:28:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "889/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 197, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181840", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1778"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "34de92cb1cdb04b3dc9042bcfd0b31ada8de5ef448e7fe900776dd994db73ced", "phash": "f03ecd328d0d9783", "dhash": "a82c30328d9d91c2", "phash_int": -1.1352444390522492e+18, "collected_at": "2026-05-22T04:30:42.461689+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1832_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1832_IMG.JPG", "file_name": "118-1832_IMG.JPG", "file_stem": "118-1832_IMG", "file_ext": ".jpg", "file_size": 1453469.0, "mtime": "2002-08-20T17:59:24+00:00", "mtime_ts": 1029866364.0, "ctime": "2002-08-20T17:59:24+00:00", "sha256_file": "9b6602fa90981a400c87508d6c679be08f4b639ae1eb3c8ec0f2227f6343cd5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 17:59:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4861", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 17:59:25", "EXIF DateTimeDigitized": "2002:08:20 17:59:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 225, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181832", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e6d8df8ee92c31026c432182abb864ccb372afe828323e68f3ec975c2c0e152", "phash": "a1fc7f2919cb4701", "dhash": "360f8f87d7d7dfce", "phash_int": -6.774399924968929e+18, "collected_at": "2026-05-22T04:30:42.467691+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1841_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1841_IMG.JPG", "file_name": "118-1841_IMG.JPG", "file_stem": "118-1841_IMG", "file_ext": ".jpg", "file_size": 1575568.0, "mtime": "2002-08-20T19:58:38+00:00", "mtime_ts": 1029873518.0, "ctime": "2002-08-20T19:58:38+00:00", "sha256_file": "e487a4681e7479579491fb94090add44775f5b755b6b6e05c11b155931795bb8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 19:58:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4923", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 19:58:40", "EXIF DateTimeDigitized": "2002:08:20 19:58:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181841", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8fbeaf66b6ab69a14e8491ff10751916dc7a9246559648115c1b4d3b0cdb5eb0", "phash": "d1f3cc98a26f0173", "dhash": "f1b8d0ccd8d0f2e0", "phash_int": -3.3180835445096443e+18, "collected_at": "2026-05-22T04:30:42.660980+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1843_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1843_IMG.JPG", "file_name": "118-1843_IMG.JPG", "file_stem": "118-1843_IMG", "file_ext": ".jpg", "file_size": 1798279.0, "mtime": "2002-08-20T19:59:00+00:00", "mtime_ts": 1029873540.0, "ctime": "2002-08-20T19:59:00+00:00", "sha256_file": "43a894cc7e790878132248760daa56ac2098737d9f07b31ee1c6497dfef66e68", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 19:59:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5460", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 19:59:01", "EXIF DateTimeDigitized": "2002:08:20 19:59:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181843", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c06190c4d5572818df8797f57e1983c19ceea4cdcc3529d6d68f79b6a7be1b6e", "phash": "89898bd1e978f472", "dhash": "f3e3e33370f4c1c9", "phash_int": -8.536137885022621e+18, "collected_at": "2026-05-22T04:30:42.667983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1844_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1844_IMG.JPG", "file_name": "118-1844_IMG.JPG", "file_stem": "118-1844_IMG", "file_ext": ".jpg", "file_size": 1858690.0, "mtime": "2002-08-20T19:59:12+00:00", "mtime_ts": 1029873552.0, "ctime": "2002-08-20T19:59:12+00:00", "sha256_file": "8c7690ed6b7fa38f625ed541c434dc117ec79d8d49c515c5ae8c05294e3bdbd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 19:59:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5149", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 19:59:13", "EXIF DateTimeDigitized": "2002:08:20 19:59:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181844", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2c8d5211f0b610b9302fdfe517abb3dfad90c3fb90678de253bb8a407a896b6", "phash": "8d09cbc1a5edec70", "dhash": "f3e3e272d2e4c4ee", "phash_int": -8.283866006998357e+18, "collected_at": "2026-05-22T04:30:42.829066+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1845_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1845_IMG.JPG", "file_name": "118-1845_IMG.JPG", "file_stem": "118-1845_IMG", "file_ext": ".jpg", "file_size": 1605334.0, "mtime": "2002-08-20T20:01:26+00:00", "mtime_ts": 1029873686.0, "ctime": "2002-08-20T20:01:26+00:00", "sha256_file": "fd817de5cd48ce2c45df7c30368da6e938de2bd54e3aad4d22ac7505377397fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 20:01:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6903", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 20:01:27", "EXIF DateTimeDigitized": "2002:08:20 20:01:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181845", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca75dce9ea1c103b8ea9fbdb7b318c0b8375c477a659167681a6624bbc0ca555", "phash": "8c9467599866cc7b", "dhash": "e4f464b431734c26", "phash_int": -8.316908977339839e+18, "collected_at": "2026-05-22T04:30:42.903070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1846_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1846_IMG.JPG", "file_name": "118-1846_IMG.JPG", "file_stem": "118-1846_IMG", "file_ext": ".jpg", "file_size": 1689826.0, "mtime": "2002-08-20T20:01:32+00:00", "mtime_ts": 1029873692.0, "ctime": "2002-08-20T20:01:32+00:00", "sha256_file": "660ddcdec7c56d0e43c1470f10070f6d40759ac7ebb54accc0a69791be61913f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 20:01:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6927", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 20:01:33", "EXIF DateTimeDigitized": "2002:08:20 20:01:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181846", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "9", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0ba1102116f73f98590fa5737090e6f02fec473514c86db194690229078672f", "phash": "9c94675b9846cc6b", "dhash": "f4f674b491336c66", "phash_int": -7.163987464145155e+18, "collected_at": "2026-05-22T04:30:42.965071+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1847_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1847_IMG.JPG", "file_name": "118-1847_IMG.JPG", "file_stem": "118-1847_IMG", "file_ext": ".jpg", "file_size": 1830749.0, "mtime": "2002-08-20T20:01:38+00:00", "mtime_ts": 1029873698.0, "ctime": "2002-08-20T20:01:38+00:00", "sha256_file": "43c6f678471753fc0580bb50c80ac61374771a00cbc2983f56683778ad9f9906", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 20:01:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 20:01:40", "EXIF DateTimeDigitized": "2002:08:20 20:01:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181847", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b01d3244adfadaaeadde163488717a4a8fcab26a99eac29ecf398647760b5003", "phash": "901d0f7b3067763c", "dhash": "f870e4bc98c941f0", "phash_int": -8.062270736155838e+18, "collected_at": "2026-05-22T04:30:43.022076+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1848_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1848_IMG.JPG", "file_name": "118-1848_IMG.JPG", "file_stem": "118-1848_IMG", "file_ext": ".jpg", "file_size": 357216.0, "mtime": "2002-08-20T22:10:20+00:00", "mtime_ts": 1029881420.0, "ctime": "2002-08-20T22:10:20+00:00", "sha256_file": "8b91be1aa4bea619aae1e9a0522535da22677dd53f227adcc75bd06a064a7a70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 22:10:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1075", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 22:10:21", "EXIF DateTimeDigitized": "2002:08:20 22:10:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181848", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00bb4c9d250a71a39b7bae7763ea15a45b21a2d8d72f1abe17dd9a4194bf6dc0", "phash": "cccecccccccc2ccc", "dhash": "2040404020203030", "phash_int": -3.68878586478853e+18, "collected_at": "2026-05-22T04:30:43.056080+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1849_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1849_IMG.JPG", "file_name": "118-1849_IMG.JPG", "file_stem": "118-1849_IMG", "file_ext": ".jpg", "file_size": 619581.0, "mtime": "2002-08-20T22:10:42+00:00", "mtime_ts": 1029881442.0, "ctime": "2002-08-20T22:10:42+00:00", "sha256_file": "d9b674806697c90ef02df3f0c63f52b53ffe699c1ff4c93499d69e9e3eb7079f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 22:10:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3080", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 22:10:43", "EXIF DateTimeDigitized": "2002:08:20 22:10:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181849", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76b0f1516ecd8f1487a68b8ac7e106a319841342ae68d448fe5f6dd73e5a7080", "phash": "a26c5f96a4699b64", "dhash": "a18393978ebcbded", "phash_int": -6.742909441472357e+18, "collected_at": "2026-05-22T04:30:43.079077+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1850_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1850_IMG.JPG", "file_name": "118-1850_IMG.JPG", "file_stem": "118-1850_IMG", "file_ext": ".jpg", "file_size": 608518.0, "mtime": "2002-08-20T22:11:00+00:00", "mtime_ts": 1029881460.0, "ctime": "2002-08-20T22:11:00+00:00", "sha256_file": "f58c794dad16f01f3581b8a340d597834b33882e078616b621c771c82d06c9a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 22:11:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2971", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 22:11:01", "EXIF DateTimeDigitized": "2002:08:20 22:11:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181850", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "222", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "71045ed9a8d5bdec87fb6ded74dee1b8581b5285ee571807148c5fa4bc0ae5b9", "phash": "a2695f95a5499a6c", "dhash": "b18393978ebcbced", "phash_int": -6.743753870682777e+18, "collected_at": "2026-05-22T04:30:43.123078+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1853_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1853_IMG.JPG", "file_name": "118-1853_IMG.JPG", "file_stem": "118-1853_IMG", "file_ext": ".jpg", "file_size": 1189972.0, "mtime": "2002-08-20T22:12:08+00:00", "mtime_ts": 1029881528.0, "ctime": "2002-08-20T22:12:08+00:00", "sha256_file": "83d637e6194d14da8e12cf1d79bb54313106a7dacf16b4c2fda390dc362d51f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 22:12:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3561", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 22:12:10", "EXIF DateTimeDigitized": "2002:08:20 22:12:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181853", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b9e90558c2f4d96997af0df42d5a620765e705e984a69d815e86b029bab28b9a", "phash": "b96c5a922cb99366", "dhash": "313387968e9c98db", "phash_int": -5.085590295346048e+18, "collected_at": "2026-05-22T04:30:43.206189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1854_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1854_IMG.JPG", "file_name": "118-1854_IMG.JPG", "file_stem": "118-1854_IMG", "file_ext": ".jpg", "file_size": 1321170.0, "mtime": "2002-08-20T22:12:24+00:00", "mtime_ts": 1029881544.0, "ctime": "2002-08-20T22:12:24+00:00", "sha256_file": "27f81e5b67fca552399b8b2ce5361fec5ca6f76d6b159a0409f102ea51f24257", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:20 22:12:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5216", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:20 22:12:26", "EXIF DateTimeDigitized": "2002:08:20 22:12:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181854", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c5b658d8ae69107cfe7ae63c8b64d6c4785492affff2b76a668a1b57099547b2", "phash": "c67c6ca13b195d85", "dhash": "b4656429ccc0c0c8", "phash_int": -4.1443181173506463e+18, "collected_at": "2026-05-22T04:30:43.213189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1935_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1935_IMG.JPG", "file_name": "119-1935_IMG.JPG", "file_stem": "119-1935_IMG", "file_ext": ".jpg", "file_size": 2368760.0, "mtime": "2002-08-22T14:27:06+00:00", "mtime_ts": 1030026426.0, "ctime": "2002-08-22T14:27:06+00:00", "sha256_file": "c0a4365380769270d7d5b0aeae95dbd509a6f7cf3f82d04345beeb81407abed2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8693", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:07", "EXIF DateTimeDigitized": "2002:08:22 14:27:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191935", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "266", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a37e12ba5d125f7bdbdfca8e3db46a659de16dfaa08cc2cb307d96bbafbfd77d", "phash": "e1b9f0213e1c3ab6", "dhash": "9b92d364c5c2c424", "phash_int": -2.1814485189176701e+18, "collected_at": "2026-05-22T04:30:43.353200+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1859_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\118-1859_IMG.JPG", "file_name": "118-1859_IMG.JPG", "file_stem": "118-1859_IMG", "file_ext": ".jpg", "file_size": 1379361.0, "mtime": "2002-08-21T21:34:58+00:00", "mtime_ts": 1029965698.0, "ctime": "2002-08-21T21:34:58+00:00", "sha256_file": "2ca955c1641af57a8dd3d679e84995ec0953be8976fc10be9a853016373a86ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:21 21:34:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3300", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:21 21:34:59", "EXIF DateTimeDigitized": "2002:08:21 21:34:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "731/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181859", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65428", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "222", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3655"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47de8e794f0ce54bdb40e5250f38274a30f77cbba5a58015cde4760452b68300", "phash": "817fde5881865a79", "dhash": "f82a4ac6d2d0f0e0", "phash_int": -9.11532264906304e+18, "collected_at": "2026-05-22T04:30:43.362195+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1936_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1936_IMG.JPG", "file_name": "119-1936_IMG.JPG", "file_stem": "119-1936_IMG", "file_ext": ".jpg", "file_size": 2266938.0, "mtime": "2002-08-22T14:27:10+00:00", "mtime_ts": 1030026430.0, "ctime": "2002-08-22T14:27:10+00:00", "sha256_file": "4cbd50e5dc0974eb5bd28663e2f7478ba6d7367420f71469b6e0f6d2adf07400", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8696", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:12", "EXIF DateTimeDigitized": "2002:08:22 14:27:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191936", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08ed4a27e84b5feae93da67bfccbc749021d2b692a1b9eb9f7f4364117d91205", "phash": "e0bcfc330f1e68c2", "dhash": "36969762cb8b8484", "phash_int": -2.2526484173649078e+18, "collected_at": "2026-05-22T04:30:43.490205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1937_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1937_IMG.JPG", "file_name": "119-1937_IMG.JPG", "file_stem": "119-1937_IMG", "file_ext": ".jpg", "file_size": 2243900.0, "mtime": "2002-08-22T14:27:18+00:00", "mtime_ts": 1030026438.0, "ctime": "2002-08-22T14:27:18+00:00", "sha256_file": "381a204bed43c5db51f1ebdcededd25d61f20c6d1981813e9ef27ec8b4c08f2d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7738", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:19", "EXIF DateTimeDigitized": "2002:08:22 14:27:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191937", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "256", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc8bc8d6333a793dbb144fd55f1319a291fff880a6779d8c39438703c94a4493", "phash": "d3b16c91c3b26e49", "dhash": "1c541858d8582960", "phash_int": -3.1926512875196626e+18, "collected_at": "2026-05-22T04:30:43.504201+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1938_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1938_IMG.JPG", "file_name": "119-1938_IMG.JPG", "file_stem": "119-1938_IMG", "file_ext": ".jpg", "file_size": 2063449.0, "mtime": "2002-08-22T14:27:22+00:00", "mtime_ts": 1030026442.0, "ctime": "2002-08-22T14:27:22+00:00", "sha256_file": "45ed05af66e1024ebeb5dcece044ad4b799ba9b9924e119892796d8d9bab0c39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7782", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:24", "EXIF DateTimeDigitized": "2002:08:22 14:27:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191938", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ad9689e94893f50a9390ec909d9e6b01ecef9c242e2e48e59f0ca9679fa82dd", "phash": "db906e99cb326d48", "dhash": "38549818d8583961", "phash_int": -2.6254769759388677e+18, "collected_at": "2026-05-22T04:30:43.620205+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1939_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1939_IMG.JPG", "file_name": "119-1939_IMG.JPG", "file_stem": "119-1939_IMG", "file_ext": ".jpg", "file_size": 2444737.0, "mtime": "2002-08-22T14:27:32+00:00", "mtime_ts": 1030026452.0, "ctime": "2002-08-22T14:27:32+00:00", "sha256_file": "fa78f7db2614b81f5efb7772f9d96650d874e20798da7f0be7a58158f153599f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8897", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:34", "EXIF DateTimeDigitized": "2002:08:22 14:27:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191939", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10a5f7809838f2d5d089ca7d86ae23a231162e28563e3b0cfa259af16c12d071", "phash": "dad691d3883c7127", "dhash": "f8ec2723e31935b1", "phash_int": -2.6777925907153915e+18, "collected_at": "2026-05-22T04:30:43.639206+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1940_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1940_IMG.JPG", "file_name": "119-1940_IMG.JPG", "file_stem": "119-1940_IMG", "file_ext": ".jpg", "file_size": 2065828.0, "mtime": "2002-08-22T14:27:40+00:00", "mtime_ts": 1030026460.0, "ctime": "2002-08-22T14:27:40+00:00", "sha256_file": "1f885e6562e2e7e60f5553fa81b06576b803c8df1c56c987d64a89a94aa91760", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7639", "EXIF ExposureTime": "1/250", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:42", "EXIF DateTimeDigitized": "2002:08:22 14:27:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1541/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191940", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3082"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65dd00abd2764958ceae788e95e34681539f95f20e6f8c4ca23675fc39ee2dd7", "phash": "d3c535c5f1e320d1", "dhash": "ca60b0b9f161684c", "phash_int": -3.1870820370117345e+18, "collected_at": "2026-05-22T04:30:43.692206+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1941_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1941_IMG.JPG", "file_name": "119-1941_IMG.JPG", "file_stem": "119-1941_IMG", "file_ext": ".jpg", "file_size": 2056971.0, "mtime": "2002-08-22T14:27:52+00:00", "mtime_ts": 1030026472.0, "ctime": "2002-08-22T14:27:52+00:00", "sha256_file": "1535fad8e7c385d035460a5a8265ee223d269e639073d7a2d555330d2288c148", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:27:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8108", "EXIF ExposureTime": "1/320", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:27:54", "EXIF DateTimeDigitized": "2002:08:22 14:27:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2361/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191941", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2361"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "474d61e31a2a7f0c3404f422063d02dc569ec5f6774dc590e45d4d6f369d9567", "phash": "f99d1414e5bac34c", "dhash": "763a5b1392888d84", "phash_int": -4.60189506935799e+17, "collected_at": "2026-05-22T04:30:43.755639+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1942_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1942_IMG.JPG", "file_name": "119-1942_IMG.JPG", "file_stem": "119-1942_IMG", "file_ext": ".jpg", "file_size": 2049021.0, "mtime": "2002-08-22T14:43:42+00:00", "mtime_ts": 1030027422.0, "ctime": "2002-08-22T14:43:42+00:00", "sha256_file": "24826bc7af314c31aaed58b5a2ca8dd2308f7b1c1b9ee0fa6c28cec14c297c76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:43:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7553", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:43:44", "EXIF DateTimeDigitized": "2002:08:22 14:43:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191942", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fed8e026718decfed1e242a8107a502db796efdf5765985fb39b23620efca17", "phash": "f3e1ec6c5e488287", "dhash": "038a89995999122d", "phash_int": -8.731569025507322e+17, "collected_at": "2026-05-22T04:30:43.831639+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1943_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1943_IMG.JPG", "file_name": "119-1943_IMG.JPG", "file_stem": "119-1943_IMG", "file_ext": ".jpg", "file_size": 2140690.0, "mtime": "2002-08-22T14:43:50+00:00", "mtime_ts": 1030027430.0, "ctime": "2002-08-22T14:43:50+00:00", "sha256_file": "41492fbf835675bfcbc1b8fed33be380448643f35c8e68727355bd42d29376a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:43:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7648", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:43:51", "EXIF DateTimeDigitized": "2002:08:22 14:43:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191943", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b8485d2fe30d2542dfff739e25a7291eee029b5a4a8e48fd2825e4b83cadae3", "phash": "fef401252f47c1b8", "dhash": "0ea5b123332365c9", "phash_int": -7.543403453980627e+16, "collected_at": "2026-05-22T04:30:43.877640+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1944_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1944_IMG.JPG", "file_name": "119-1944_IMG.JPG", "file_stem": "119-1944_IMG", "file_ext": ".jpg", "file_size": 2124260.0, "mtime": "2002-08-22T14:44:00+00:00", "mtime_ts": 1030027440.0, "ctime": "2002-08-22T14:44:00+00:00", "sha256_file": "970122061957a528dba7c54efe0bf1c15993cc301eda424bbb5eec1a28c779a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8006", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:01", "EXIF DateTimeDigitized": "2002:08:22 14:44:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191944", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30bbab40bd4b80b89ff9ed91749c105ba02fc5b078f718643d0c60c7b1f902d7", "phash": "ec216f138b2c7c87", "dhash": "670706b758382463", "phash_int": -1.4317410767970967e+18, "collected_at": "2026-05-22T04:30:43.937641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1945_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1945_IMG.JPG", "file_name": "119-1945_IMG.JPG", "file_stem": "119-1945_IMG", "file_ext": ".jpg", "file_size": 2287622.0, "mtime": "2002-08-22T14:44:04+00:00", "mtime_ts": 1030027444.0, "ctime": "2002-08-22T14:44:04+00:00", "sha256_file": "3d6ad5019c519935c4267f05d2276c05b0367c06ab758baec2280824c582ce6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8462", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:06", "EXIF DateTimeDigitized": "2002:08:22 14:44:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191945", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "297", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c53f6aa33158a0ecb9be4ffb56618254db23b42fdb55076570080098336a8e1", "phash": "912762c9a730fb1e", "dhash": "d0d9dcf6f2939d8c", "phash_int": -7.987306795885331e+18, "collected_at": "2026-05-22T04:30:44.000643+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1946_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1946_IMG.JPG", "file_name": "119-1946_IMG.JPG", "file_stem": "119-1946_IMG", "file_ext": ".jpg", "file_size": 2365289.0, "mtime": "2002-08-22T14:44:10+00:00", "mtime_ts": 1030027450.0, "ctime": "2002-08-22T14:44:10+00:00", "sha256_file": "53937178295ccbd8427e7b11f43fc9b4d48b90c50e6160d6b64c0434622e168b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8171", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:12", "EXIF DateTimeDigitized": "2002:08:22 14:44:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191946", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "317", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "baaf5f0845615e8278eca64a46f10612a28b1525743378c4c7ee58953a17379f", "phash": "8cf0e2cde68c0cdb", "dhash": "869e3274f07062ec", "phash_int": -8.290877540024972e+18, "collected_at": "2026-05-22T04:30:44.029645+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1947_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1947_IMG.JPG", "file_name": "119-1947_IMG.JPG", "file_stem": "119-1947_IMG", "file_ext": ".jpg", "file_size": 2458175.0, "mtime": "2002-08-22T14:44:26+00:00", "mtime_ts": 1030027466.0, "ctime": "2002-08-22T14:44:26+00:00", "sha256_file": "293b23827ba5da9e717f706561b752315a91626731dc026cd35e2e673d32386d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8908", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:28", "EXIF DateTimeDigitized": "2002:08:22 14:44:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191947", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "297", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "044da4c457aaf0f8c8f5e82f7e5ff105b2fdf7c4776a5ae830b8fb5a97e7353d", "phash": "dd1ee06309ccb2b5", "dhash": "583474767a098496", "phash_int": -2.513324826055364e+18, "collected_at": "2026-05-22T04:30:44.097820+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1948_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1948_IMG.JPG", "file_name": "119-1948_IMG.JPG", "file_stem": "119-1948_IMG", "file_ext": ".jpg", "file_size": 2204044.0, "mtime": "2002-08-22T14:44:32+00:00", "mtime_ts": 1030027472.0, "ctime": "2002-08-22T14:44:32+00:00", "sha256_file": "fc5fbe236d2651151269c58d4a262fedaafc568f5dbc404240d8f17944a893cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7663", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:33", "EXIF DateTimeDigitized": "2002:08:22 14:44:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191948", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "269", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79b3b48de2e8fc092071dab9f0f397a5dafc825a1ef864720b3bcc01e1fa1712", "phash": "e62c661f9d0478ce", "dhash": "230385d63834e4c8", "phash_int": -1.861000260046522e+18, "collected_at": "2026-05-22T04:30:44.163822+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1949_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1949_IMG.JPG", "file_name": "119-1949_IMG.JPG", "file_stem": "119-1949_IMG", "file_ext": ".jpg", "file_size": 2354855.0, "mtime": "2002-08-22T14:44:52+00:00", "mtime_ts": 1030027492.0, "ctime": "2002-08-22T14:44:52+00:00", "sha256_file": "4c84926b03a7fac30aa3ef18368039acc007eaf5d673b230b70ecc0d9882e009", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8898", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:53", "EXIF DateTimeDigitized": "2002:08:22 14:44:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191949", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1f756142103791ff46c6eb6f00173ba9acc169e47ff1bc0a3820f3e8ddb2efe8", "phash": "e40fb923132fd86a", "dhash": "7626a7e4aa8e06ac", "phash_int": -2.0131869481144259e+18, "collected_at": "2026-05-22T04:30:44.215825+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1950_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1950_IMG.JPG", "file_name": "119-1950_IMG.JPG", "file_stem": "119-1950_IMG", "file_ext": ".jpg", "file_size": 2297045.0, "mtime": "2002-08-22T14:44:56+00:00", "mtime_ts": 1030027496.0, "ctime": "2002-08-22T14:44:56+00:00", "sha256_file": "bfd9071b9c5f16da9bcd73c6312201e8a1ade31bc51c6fd2ee656cfa501e39dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:44:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8610", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:44:58", "EXIF DateTimeDigitized": "2002:08:22 14:44:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191950", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5647d33d03dd674aad8bbbcf7c37c3e904a2ffbacf1a2d73c3b7073bd141091e", "phash": "e49fb52b1629d06a", "dhash": "7236b7e6e7a687a4", "phash_int": -1.9726589151049277e+18, "collected_at": "2026-05-22T04:30:44.264835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1951_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1951_IMG.JPG", "file_name": "119-1951_IMG.JPG", "file_stem": "119-1951_IMG", "file_ext": ".jpg", "file_size": 1597630.0, "mtime": "2002-08-22T14:45:24+00:00", "mtime_ts": 1030027524.0, "ctime": "2002-08-22T14:45:24+00:00", "sha256_file": "af9e832fb8c6947d41386f7ce9e1d1a8b18b2412b363f1d563251d5a71fc3b23", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:45:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5656", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:45:25", "EXIF DateTimeDigitized": "2002:08:22 14:45:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191951", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8cae9ada880e1e7fdb0499bcbb0f22fe2b385e9936ebbb418255dc40be22f4d", "phash": "8b6eb8ab619da154", "dhash": "63e5c442427b7ddc", "phash_int": -8.399573208782758e+18, "collected_at": "2026-05-22T04:30:44.346828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1952_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1952_IMG.JPG", "file_name": "119-1952_IMG.JPG", "file_stem": "119-1952_IMG", "file_ext": ".jpg", "file_size": 1502315.0, "mtime": "2002-08-22T14:45:32+00:00", "mtime_ts": 1030027532.0, "ctime": "2002-08-22T14:45:32+00:00", "sha256_file": "3caa64bae0d29f9639610bc488a819ee2412ddda8d6bdc730bca7f9137b34087", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 14:45:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5374", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 14:45:34", "EXIF DateTimeDigitized": "2002:08:22 14:45:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1023/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191952", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2046"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1eb177c30ba9737f919ab1bf189a10e3a1e8ea27aafedf94f857911fd30c749", "phash": "a5a55aab2f5614ac", "dhash": "0f869e4e4e1a1131", "phash_int": -6.510697995014106e+18, "collected_at": "2026-05-22T04:30:44.366832+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1953_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1953_IMG.JPG", "file_name": "119-1953_IMG.JPG", "file_stem": "119-1953_IMG", "file_ext": ".jpg", "file_size": 1877621.0, "mtime": "2002-08-22T19:57:08+00:00", "mtime_ts": 1030046228.0, "ctime": "2002-08-22T19:57:08+00:00", "sha256_file": "c6f8ed4cb4c5d973f736118036cb09d3a3628ed2e0b75bd9e39e0a77239070b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 19:57:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6430", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 19:57:09", "EXIF DateTimeDigitized": "2002:08:22 19:57:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191953", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "529af2db8f572a804c0cdda199325be5e684fc66abe8eb8bd6432fc74777b3ea", "phash": "d92e669b816770d2", "dhash": "643c34b298981996", "phash_int": -2.7971855004734956e+18, "collected_at": "2026-05-22T04:30:44.441834+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1954_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1954_IMG.JPG", "file_name": "119-1954_IMG.JPG", "file_stem": "119-1954_IMG", "file_ext": ".jpg", "file_size": 1541855.0, "mtime": "2002-08-22T19:57:16+00:00", "mtime_ts": 1030046236.0, "ctime": "2002-08-22T19:57:16+00:00", "sha256_file": "8ce2d20df00909d298bd11fa2bc3ca4a902263dd3e6cf8994bed604dbfb50b5b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 19:57:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4563", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 19:57:18", "EXIF DateTimeDigitized": "2002:08:22 19:57:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1911/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191954", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1911"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1988a552c476d740f95055439d06ca0c74374dab3ff6a5a5ff27e2aaa70f4f9a", "phash": "ef673828d1c1863b", "dhash": "134b4d4263233319", "phash_int": -1.1959254280746092e+18, "collected_at": "2026-05-22T04:30:44.461834+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1955_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1955_IMG.JPG", "file_name": "119-1955_IMG.JPG", "file_stem": "119-1955_IMG", "file_ext": ".jpg", "file_size": 1979842.0, "mtime": "2002-08-22T19:57:34+00:00", "mtime_ts": 1030046254.0, "ctime": "2002-08-22T19:57:34+00:00", "sha256_file": "2199cc853e85aff0ffc32770218da3bbba501c8abb77271b476a6f6a9c47fa21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 19:57:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6834", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 19:57:36", "EXIF DateTimeDigitized": "2002:08:22 19:57:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191955", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "45", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0a1eae1d5b74fe95e9b155f1e59c5e664f4330b119e7c2dcecb2bb74fa9e4bf", "phash": "915f06b3685d13e6", "dhash": "f878f89a99d8ec8c", "phash_int": -7.971645447802646e+18, "collected_at": "2026-05-22T04:30:44.540836+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1959_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1959_IMG.JPG", "file_name": "119-1959_IMG.JPG", "file_stem": "119-1959_IMG", "file_ext": ".jpg", "file_size": 2028455.0, "mtime": "2002-08-22T19:58:24+00:00", "mtime_ts": 1030046304.0, "ctime": "2002-08-22T19:58:24+00:00", "sha256_file": "0f74bf8a7b891a16bbfc25710e35e3049fad93b60117f498752be99d7977e5fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 19:58:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5871", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 19:58:26", "EXIF DateTimeDigitized": "2002:08:22 19:58:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "98/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191959", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3920"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10bce33b5e2d74eda346e8dfca955cbb9d107bc9a6bd38edc3826006a53e1af6", "phash": "f4448e73998d72e1", "dhash": "b4b49494948c86b3", "phash_int": -8.453942028902433e+17, "collected_at": "2026-05-22T04:30:44.619842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1961_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1961_IMG.JPG", "file_name": "119-1961_IMG.JPG", "file_stem": "119-1961_IMG", "file_ext": ".jpg", "file_size": 987971.0, "mtime": "2002-08-22T20:22:58+00:00", "mtime_ts": 1030047778.0, "ctime": "2002-08-22T20:22:58+00:00", "sha256_file": "83649af0e8d0bb74f9a9d08e7f1891638c00a6b7a0787ae356040a7ff09bdb14", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 20:22:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1852", "EXIF ExposureTime": "1", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 20:22:59", "EXIF DateTimeDigitized": "2002:08:22 20:22:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191961", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28f062869ab26acc2df65450f908e1d2ae278a0a76faa117fddbc0fe41a56cd2", "phash": "9959cca2b27646ae", "dhash": "e0507038dffa7fed", "phash_int": -7.396655913828465e+18, "collected_at": "2026-05-22T04:30:44.659849+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1962_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1962_IMG.JPG", "file_name": "119-1962_IMG.JPG", "file_stem": "119-1962_IMG", "file_ext": ".jpg", "file_size": 558907.0, "mtime": "2002-08-22T20:23:14+00:00", "mtime_ts": 1030047794.0, "ctime": "2002-08-22T20:23:14+00:00", "sha256_file": "91d0a5e437ed6742ab876e943eab55493eb9f5892769a391ceec8096a113ec23", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:22 20:23:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1276", "EXIF ExposureTime": "1", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:22 20:23:15", "EXIF DateTimeDigitized": "2002:08:22 20:23:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "12763/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191962", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65269", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "12763"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1abe7298908b542d6227a09438c4c90aadb4bdb65a0159bd9e514a31f7bfa545", "phash": "9959cca2766666a6", "dhash": "285090109bda3a04", "phash_int": -7.396655914836138e+18, "collected_at": "2026-05-22T04:30:44.735845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1963_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1963_IMG.JPG", "file_name": "119-1963_IMG.JPG", "file_stem": "119-1963_IMG", "file_ext": ".jpg", "file_size": 1287229.0, "mtime": "2002-08-24T10:40:48+00:00", "mtime_ts": 1030185648.0, "ctime": "2002-08-24T10:40:48+00:00", "sha256_file": "5b5f5bfa1c018e73f3596c80fa08c866cc62e20a0aa34c9de3823cb7ac1e54fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 10:40:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3397", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 10:40:50", "EXIF DateTimeDigitized": "2002:08:24 10:40:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191963", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "368", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6cf89faf336506a75c871ac8c4f1e156b725ff3faf12641abe6418f9c2064fe7", "phash": "84a9d47f9f48c6a1", "dhash": "fcfceef8dec6f4fc", "phash_int": -8.887338745040681e+18, "collected_at": "2026-05-22T04:30:44.741843+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1964_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1964_IMG.JPG", "file_name": "119-1964_IMG.JPG", "file_stem": "119-1964_IMG", "file_ext": ".jpg", "file_size": 2067560.0, "mtime": "2002-08-24T11:07:00+00:00", "mtime_ts": 1030187220.0, "ctime": "2002-08-24T11:07:00+00:00", "sha256_file": "0760c3280240f99b9da4e25546ef65100979fc07d5874fb9f83793a43e25c80b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 11:07:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5834", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 11:07:02", "EXIF DateTimeDigitized": "2002:08:24 11:07:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191964", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a0dfa08efdb06d7b2c3c06e83b85fdbd33a6ef0ae6235c1a37b0d4696161361", "phash": "c9c90ede3131ca6d", "dhash": "f1e1d392d26078e0", "phash_int": -3.9065748542963195e+18, "collected_at": "2026-05-22T04:30:44.889850+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1965_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1965_IMG.JPG", "file_name": "119-1965_IMG.JPG", "file_stem": "119-1965_IMG", "file_ext": ".jpg", "file_size": 1331740.0, "mtime": "2002-08-24T11:37:14+00:00", "mtime_ts": 1030189034.0, "ctime": "2002-08-24T11:37:14+00:00", "sha256_file": "35ae3af5a3065392ebf897b43d90995375744546d253712c40df1b849f8a0e72", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 11:37:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2553", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 11:37:15", "EXIF DateTimeDigitized": "2002:08:24 11:37:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1261/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191965", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "342", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2522"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8ce26d7b3337d9549e19a8b011006e9484f91cd847ab6cdac0b49a75c9bb6dc", "phash": "80ffff0000f9267e", "dhash": "c0e060d0e0ec50d8", "phash_int": -9.151315542312147e+18, "collected_at": "2026-05-22T04:30:44.895850+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1966_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1966_IMG.JPG", "file_name": "119-1966_IMG.JPG", "file_stem": "119-1966_IMG", "file_ext": ".jpg", "file_size": 1320271.0, "mtime": "2002-08-24T11:47:46+00:00", "mtime_ts": 1030189666.0, "ctime": "2002-08-24T11:47:46+00:00", "sha256_file": "85049c3e5036da91c7a50d7ce6e26937da6e8f9f81af54318295aa803d90b1f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 11:47:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5281", "EXIF ExposureTime": "1/800", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 11:47:48", "EXIF DateTimeDigitized": "2002:08:24 11:47:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "681/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191966", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "681"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a62a0a284c43eb81dee671109066d659189666940c41b4939c5973d7a9771a3e", "phash": "bab02d4f71090fcb", "dhash": "8e0d8d9d4d697323", "phash_int": -4.994442167531794e+18, "collected_at": "2026-05-22T04:30:45.030854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1967_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1967_IMG.JPG", "file_name": "119-1967_IMG.JPG", "file_stem": "119-1967_IMG", "file_ext": ".jpg", "file_size": 1650549.0, "mtime": "2002-08-24T12:32:58+00:00", "mtime_ts": 1030192378.0, "ctime": "2002-08-24T12:32:58+00:00", "sha256_file": "a60d2d99b3c495ca906be038d572587b0b8210db8d1e74a6358025b7a30ac69e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 12:33:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5031", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 12:33:00", "EXIF DateTimeDigitized": "2002:08:24 12:33:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191967", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b7a6f668bb90691b3a64325c522dac4465eeeeaec4e009176b4284b366bcb5b", "phash": "aad4f59b31266689", "dhash": "86246745d36b6bc7", "phash_int": -6.137010345305807e+18, "collected_at": "2026-05-22T04:30:45.049858+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1968_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1968_IMG.JPG", "file_name": "119-1968_IMG.JPG", "file_stem": "119-1968_IMG", "file_ext": ".jpg", "file_size": 1871506.0, "mtime": "2002-08-24T12:33:12+00:00", "mtime_ts": 1030192392.0, "ctime": "2002-08-24T12:33:12+00:00", "sha256_file": "8177d4c320f6f1aacf3010fbf41f8bd6f883a5f5958c8ec3b9f5874e6e914dd0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 12:33:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4624", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 12:33:13", "EXIF DateTimeDigitized": "2002:08:24 12:33:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191968", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "348", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "709b4d3a19a4f103b61cba337fae4dee3cae8bb3b5d3baf6e0123c31dc897af8", "phash": "f1718c3e41973cc5", "dhash": "191b1a988f0f1ad2", "phash_int": -1.0489030391843233e+18, "collected_at": "2026-05-22T04:30:45.183280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1969_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\119-1969_IMG.JPG", "file_name": "119-1969_IMG.JPG", "file_stem": "119-1969_IMG", "file_ext": ".jpg", "file_size": 1482854.0, "mtime": "2002-08-24T12:33:32+00:00", "mtime_ts": 1030192412.0, "ctime": "2002-08-24T12:33:32+00:00", "sha256_file": "fdcace3fdf5b2b52bbd2a6e30433608cee696ecff222c408610a771e70f1cf85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:24 12:33:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5315", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:24 12:33:33", "EXIF DateTimeDigitized": "2002:08:24 12:33:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191969", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "916268aa26a93b0aa7b43dfb253cc4a99e4a33d4790ee00ab559eb47a67f6737", "phash": "a7c9dff697040960", "dhash": "e143b3ef8ece4e6e", "phash_int": -6.356303148868172e+18, "collected_at": "2026-05-22T04:30:45.194280+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Hvar\\Rotation of 114-1494_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Hvar\\Rotation of 114-1494_IMG.JPG", "file_name": "Rotation of 114-1494_IMG.JPG", "file_stem": "Rotation of 114-1494_IMG", "file_ext": ".jpg", "file_size": 1158386.0, "mtime": "2003-01-22T22:53:02+00:00", "mtime_ts": 1043275982.0, "ctime": "2003-01-22T22:53:02+00:00", "sha256_file": "daa5fd8b6aa039a5d67a4096c4eb060b6f63e26e0f52dc51a7fd40f587ba22de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:08:10 16:51:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "2943", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:08:10 16:51:47", "EXIF DateTimeDigitized": "2002:08:10 16:51:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "719/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "4032799/280", "EXIF FocalPlaneYResolution": "3024599/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1141494", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "32", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f21e36a80bd7255f0fbcda701d221aba3a6d9d0a33a4ff473ef5d87babae882", "phash": "e29c4b94cb16cb56", "dhash": "878f8f0f0f8f8fcf", "phash_int": -2.1177346223364641e+18, "collected_at": "2026-05-22T04:30:45.390458+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0001_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0001_IMG.JPG", "file_name": "100-0001_IMG.JPG", "file_stem": "100-0001_IMG", "file_ext": ".jpg", "file_size": 2149145.0, "mtime": "2002-11-07T23:49:10+00:00", "mtime_ts": 1036712950.0, "ctime": "2002-11-07T23:49:10+00:00", "sha256_file": "c15be7aab284dc6bdab9baa2eacc7d367bdd086e328c461ce0a2080ad79bdb0c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 00:49:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5647", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 00:49:11", "EXIF DateTimeDigitized": "2002:11:08 00:49:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c136112130bb155b88e5532e0a654c6d35d31cc8becb93ec058518d5bd2aa970", "phash": "fba0126e11b7c6b1", "dhash": "153b131323232959", "phash_int": -3.1523170996297555e+17, "collected_at": "2026-05-22T04:30:45.409462+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0003_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0003_IMG.JPG", "file_name": "100-0003_IMG.JPG", "file_stem": "100-0003_IMG", "file_ext": ".jpg", "file_size": 815034.0, "mtime": "2002-11-07T23:50:54+00:00", "mtime_ts": 1036713054.0, "ctime": "2002-11-07T23:50:54+00:00", "sha256_file": "64d0c90a643ab94fbd55166a3c804a8bc84273674353e2c82034041fcb0204b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 00:50:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3798", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 00:50:55", "EXIF DateTimeDigitized": "2002:11:08 00:50:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8ec8c6b833ad7f2069bfd2e870fcdfacccf0e603ff1db30da2c26e16fd74f665", "phash": "cee5123fc31e2496", "dhash": "e1e36571713331f1", "phash_int": -3.5384018671638845e+18, "collected_at": "2026-05-22T04:30:45.511462+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0002_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0002_IMG.JPG", "file_name": "100-0002_IMG.JPG", "file_stem": "100-0002_IMG", "file_ext": ".jpg", "file_size": 1544528.0, "mtime": "2002-11-07T23:49:16+00:00", "mtime_ts": 1036712956.0, "ctime": "2002-11-07T23:49:16+00:00", "sha256_file": "c40e8c41aea9c35af062e9192e39527f014324a20148970ad64e030212f78184", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 00:49:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5082", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 00:49:18", "EXIF DateTimeDigitized": "2002:11:08 00:49:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "205", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fb4347abd55c33db7743bcef813ff41f82353836fa35048a554336421d12406", "phash": "aa3037cd14c6d39d", "dhash": "998d8d95b1e16131", "phash_int": -6.183380934423293e+18, "collected_at": "2026-05-22T04:30:45.544546+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0004_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0004_IMG.JPG", "file_name": "100-0004_IMG.JPG", "file_stem": "100-0004_IMG", "file_ext": ".jpg", "file_size": 736527.0, "mtime": "2002-11-07T23:54:58+00:00", "mtime_ts": 1036713298.0, "ctime": "2002-11-07T23:54:58+00:00", "sha256_file": "206d66113367d10f0e0ba747be6c0ed6b8f709532b928502e12f4375d8fc7d3d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 00:54:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3999", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 00:54:59", "EXIF DateTimeDigitized": "2002:11:08 00:54:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e715496e116dd313e4dbdd32449a165024350ee892fcff656cf398132fba428", "phash": "9091059e5ae37ddc", "dhash": "f0f09898b8fcecf0", "phash_int": -8.029630482937054e+18, "collected_at": "2026-05-22T04:30:45.573553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0005_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0005_IMG.JPG", "file_name": "100-0005_IMG.JPG", "file_stem": "100-0005_IMG", "file_ext": ".jpg", "file_size": 938366.0, "mtime": "2002-11-08T13:38:14+00:00", "mtime_ts": 1036762694.0, "ctime": "2002-11-08T13:38:14+00:00", "sha256_file": "3f16ae3b837f3669a615678067040a681863405294971eb6aa9669ade3f13e9b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:38:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4583", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:38:15", "EXIF DateTimeDigitized": "2002:11:08 14:38:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "19", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c301d026694b1505426a40d7141b895594a5313f9742decf393880f20b741d28", "phash": "ce8e90992f2879e3", "dhash": "706461676a70f0f0", "phash_int": -3.562751267607906e+18, "collected_at": "2026-05-22T04:30:45.663204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0011_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0011_IMG.JPG", "file_name": "100-0011_IMG.JPG", "file_stem": "100-0011_IMG", "file_ext": ".jpg", "file_size": 934015.0, "mtime": "2002-11-08T13:44:08+00:00", "mtime_ts": 1036763048.0, "ctime": "2002-11-08T13:44:08+00:00", "sha256_file": "24bfbe67e334a3a928a8afdfc6d63962f15c00e9d01e5e7f2671c126f1dd764d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:44:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4509", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:44:09", "EXIF DateTimeDigitized": "2002:11:08 14:44:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "19", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "218", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7db2a4f9c01dee4f89979decab46162b773522fbf835b8b4300d51d186c9517b", "phash": "aa5c9596d5938c8b", "dhash": "f807850963e549e3", "phash_int": -6.170892914343572e+18, "collected_at": "2026-05-22T04:30:45.669206+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0012_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0012_IMG.JPG", "file_name": "100-0012_IMG.JPG", "file_stem": "100-0012_IMG", "file_ext": ".jpg", "file_size": 1104631.0, "mtime": "2002-11-08T13:44:18+00:00", "mtime_ts": 1036763058.0, "ctime": "2002-11-08T13:44:18+00:00", "sha256_file": "51de239c2be21336ad903816fbf55bcfb1dffc04f5fb8232162a77bd7f740182", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:44:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5042", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:44:20", "EXIF DateTimeDigitized": "2002:11:08 14:44:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ba3987d88217c82dea4cefca13124e8002433b85e3e30a05613d00bfa324c30", "phash": "d5f8628d4a37c926", "dhash": "00a29098e2b24ccc", "phash_int": -3.0285623904315776e+18, "collected_at": "2026-05-22T04:30:45.731664+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0013_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0013_IMG.JPG", "file_name": "100-0013_IMG.JPG", "file_stem": "100-0013_IMG", "file_ext": ".jpg", "file_size": 659838.0, "mtime": "2002-11-08T13:44:24+00:00", "mtime_ts": 1036763064.0, "ctime": "2002-11-08T13:44:24+00:00", "sha256_file": "0e167b6cd1b4cecafcc251c071caf6bf3945e803eebdee66eef9f7e06ad2ddea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:44:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3864", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:44:25", "EXIF DateTimeDigitized": "2002:11:08 14:44:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65458", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6dc8d844f461f9977fe16e99e1458f49301f3af4c448310c7d1944628245ad8", "phash": "a7b335a54ba5344a", "dhash": "4e2e0fea694e6e9c", "phash_int": -6.362682864489385e+18, "collected_at": "2026-05-22T04:30:45.747742+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0014_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0014_IMG.JPG", "file_name": "100-0014_IMG.JPG", "file_stem": "100-0014_IMG", "file_ext": ".jpg", "file_size": 2657969.0, "mtime": "2002-11-08T13:44:44+00:00", "mtime_ts": 1036763084.0, "ctime": "2002-11-08T13:44:44+00:00", "sha256_file": "b752d2940f2d0e52a54ec2d9f3f596ee08994c29a491bbd5c7c532f03e075285", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:44:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6039", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:44:45", "EXIF DateTimeDigitized": "2002:11:08 14:44:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba4cdc860ce998bc8138c3ffd183df1ce7da1b038eaf144446427626e0e13b8b", "phash": "d14cbae10eb9c03f", "dhash": "c8e0b030c0881c39", "phash_int": -3.365109345775141e+18, "collected_at": "2026-05-22T04:30:45.877264+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0015_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0015_IMG.JPG", "file_name": "100-0015_IMG.JPG", "file_stem": "100-0015_IMG", "file_ext": ".jpg", "file_size": 2585013.0, "mtime": "2002-11-08T13:44:54+00:00", "mtime_ts": 1036763094.0, "ctime": "2002-11-08T13:44:54+00:00", "sha256_file": "ef4b79786ded3b6f83a63c7c482aae6b1f65146fddaabc38aa99792079953af5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:44:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6038", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:44:55", "EXIF DateTimeDigitized": "2002:11:08 14:44:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6212bf62d615b25fc16dee6a819c32602311bc63bd89e49de666c3cea598da51", "phash": "fb0d807d7780059f", "dhash": "f050e000181088c8", "phash_int": -3.564875191282551e+17, "collected_at": "2026-05-22T04:30:45.897263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0017_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0017_IMG.JPG", "file_name": "100-0017_IMG.JPG", "file_stem": "100-0017_IMG", "file_ext": ".jpg", "file_size": 2258739.0, "mtime": "2002-11-08T13:45:24+00:00", "mtime_ts": 1036763124.0, "ctime": "2002-11-08T13:45:24+00:00", "sha256_file": "07d3aaf98e27afcb75ae8c157d112c49109aa69c42b9f4e90d52d512d7bc1478", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:45:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6377", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:45:25", "EXIF DateTimeDigitized": "2002:11:08 14:45:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a13b02e54da9dfc8add7a57ff3fb937149679ca6954fcd13d241a9f6593fd92b", "phash": "87dac3868e6a9396", "dhash": "e0f07872e4e4e4d4", "phash_int": -8.657392350983974e+18, "collected_at": "2026-05-22T04:30:46.021603+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0016_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0016_IMG.JPG", "file_name": "100-0016_IMG.JPG", "file_stem": "100-0016_IMG", "file_ext": ".jpg", "file_size": 2439113.0, "mtime": "2002-11-08T13:45:02+00:00", "mtime_ts": 1036763102.0, "ctime": "2002-11-08T13:45:02+00:00", "sha256_file": "0b154f45f0e37969bd973185dab006d98e8a4d4278c87b47b2b1d044774c67b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:45:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5772", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:45:04", "EXIF DateTimeDigitized": "2002:11:08 14:45:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f6ba17743687c7ec79146e7cf074a0c9c0209aa4ddf6b0f778218f81622e084", "phash": "f70c907b87ac02bd", "dhash": "f2b0c2c849091a0c", "phash_int": -6.449817863892494e+17, "collected_at": "2026-05-22T04:30:46.027601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0018_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0018_IMG.JPG", "file_name": "100-0018_IMG.JPG", "file_stem": "100-0018_IMG", "file_ext": ".jpg", "file_size": 1814855.0, "mtime": "2002-11-08T13:48:00+00:00", "mtime_ts": 1036763280.0, "ctime": "2002-11-08T13:48:00+00:00", "sha256_file": "a722913f7a353511b278cf3cf207ff74ebb0bd637f645136d23a782aadc6b459", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:48:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4038", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:48:02", "EXIF DateTimeDigitized": "2002:11:08 14:48:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4682f293b3f5c1e90872a161e2793e274a434f949d002915812c2a696e6d06ae", "phash": "c1f0e371191d1e1f", "dhash": "c888c080d0c0c0c1", "phash_int": -4.4718243550867543e+18, "collected_at": "2026-05-22T04:30:46.186164+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0019_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0019_IMG.JPG", "file_name": "100-0019_IMG.JPG", "file_stem": "100-0019_IMG", "file_ext": ".jpg", "file_size": 2086683.0, "mtime": "2002-11-08T13:48:18+00:00", "mtime_ts": 1036763298.0, "ctime": "2002-11-08T13:48:18+00:00", "sha256_file": "d035f95b381c28020f23c5957cb1fb41cf1629106a64f2620a50ec1c5b057910", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:48:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6208", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:48:20", "EXIF DateTimeDigitized": "2002:11:08 14:48:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9435caa3d35396d1b63f93793a6ab611c2b11dd884ac1db3ae1369d1d6e80872", "phash": "d0e0693c4f4fb4b4", "dhash": "888c8cc0acc418b0", "phash_int": -3.395598411287776e+18, "collected_at": "2026-05-22T04:30:46.213241+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0020_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0020_IMG.JPG", "file_name": "100-0020_IMG.JPG", "file_stem": "100-0020_IMG", "file_ext": ".jpg", "file_size": 891908.0, "mtime": "2002-11-08T13:48:52+00:00", "mtime_ts": 1036763332.0, "ctime": "2002-11-08T13:48:52+00:00", "sha256_file": "1d12c048b4a3ae67d3d3fad06b5623ad59e18a0e537e4de35e2c3d79dd8137f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:48:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2519", "EXIF ExposureTime": "1/60", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:48:54", "EXIF DateTimeDigitized": "2002:11:08 14:48:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Slow Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65530", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "On", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "230", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1dd2a06a3bcb3c1854f99bf4710f43e068fca88303ce57dceef54c5423911790", "phash": "f807e807bf600ff0", "dhash": "c48091b0f888951b", "phash_int": -5.7423530749329e+17, "collected_at": "2026-05-22T04:30:46.273320+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0021_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0021_IMG.JPG", "file_name": "100-0021_IMG.JPG", "file_stem": "100-0021_IMG", "file_ext": ".jpg", "file_size": 1958518.0, "mtime": "2002-11-08T13:49:06+00:00", "mtime_ts": 1036763346.0, "ctime": "2002-11-08T13:49:06+00:00", "sha256_file": "a5a0604cdaa163722eb5f86a1653e9f1c2dcf0b1c477e28b3f126f534a52de55", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:49:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5908", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:49:08", "EXIF DateTimeDigitized": "2002:11:08 14:49:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29e6fc9551ed034e6a201be0a78a61185f19b784274c7ff2bc7e4dbcf2587dbb", "phash": "986eb7f0069d52a5", "dhash": "b293f373b398189c", "phash_int": -7.462825290975325e+18, "collected_at": "2026-05-22T04:30:46.331491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0022_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0022_IMG.JPG", "file_name": "100-0022_IMG.JPG", "file_stem": "100-0022_IMG", "file_ext": ".jpg", "file_size": 2035626.0, "mtime": "2002-11-08T13:49:12+00:00", "mtime_ts": 1036763352.0, "ctime": "2002-11-08T13:49:12+00:00", "sha256_file": "80173c7ada7e84dc02cbd4e00ff9df82ae45e9b2e8adc29ac654cb637b978fee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:49:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6205", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:49:13", "EXIF DateTimeDigitized": "2002:11:08 14:49:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a48db2c8e2cb2ab95c184f90b21f003269050bcf936e06a2fb1fec49b0a011e8", "phash": "f02b176d12575764", "dhash": "afbb8ca88b0e049c", "phash_int": -1.1407923233817007e+18, "collected_at": "2026-05-22T04:30:46.381768+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0023_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0023_IMG.JPG", "file_name": "100-0023_IMG.JPG", "file_stem": "100-0023_IMG", "file_ext": ".jpg", "file_size": 2038917.0, "mtime": "2002-11-08T13:49:16+00:00", "mtime_ts": 1036763356.0, "ctime": "2002-11-08T13:49:16+00:00", "sha256_file": "2099c236a383437c675c54fa2e0c849a1f21bb3104aa3f7cae1846402bb5e399", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:49:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6378", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:49:18", "EXIF DateTimeDigitized": "2002:11:08 14:49:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52bce36720b9cfd63e32de292af1787f5a2b118a49625628d20b06dc7a3242d0", "phash": "8593895beb2c666c", "dhash": "d8f8a66e7038b663", "phash_int": -8.821556217208084e+18, "collected_at": "2026-05-22T04:30:46.425900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0025_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0025_IMG.JPG", "file_name": "100-0025_IMG.JPG", "file_stem": "100-0025_IMG", "file_ext": ".jpg", "file_size": 976336.0, "mtime": "2002-11-08T13:49:34+00:00", "mtime_ts": 1036763374.0, "ctime": "2002-11-08T13:49:34+00:00", "sha256_file": "094438a95a05631b5d244cbe2459a145a67bc9c5ddbf0feb1f64211ada375069", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:49:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6372", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:49:36", "EXIF DateTimeDigitized": "2002:11:08 14:49:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60375593982eb72b7f0ad2bd430f53ef4f7ad1632b3a5b9831768947cf145bd9", "phash": "ff0d426c525f5a24", "dhash": "59367a7816140c0d", "phash_int": -6.832538633480752e+16, "collected_at": "2026-05-22T04:30:46.507774+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0024_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0024_IMG.JPG", "file_name": "100-0024_IMG.JPG", "file_stem": "100-0024_IMG", "file_ext": ".jpg", "file_size": 984558.0, "mtime": "2002-11-08T13:49:28+00:00", "mtime_ts": 1036763368.0, "ctime": "2002-11-08T13:49:28+00:00", "sha256_file": "65a8a6ccccad6eee7b2097d645204ca2761b169164ae9ee5a6076ce2e6eb8735", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:49:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5602", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:49:30", "EXIF DateTimeDigitized": "2002:11:08 14:49:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01c5b1ade14e61ce2bb8fe135e41198b143005e910f9700eeeaad9e41cc3b05f", "phash": "cc36530b016e99fd", "dhash": "76a4b4a7a2a3a190", "phash_int": -3.731703934496106e+18, "collected_at": "2026-05-22T04:30:46.511775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0027_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0027_IMG.JPG", "file_name": "100-0027_IMG.JPG", "file_stem": "100-0027_IMG", "file_ext": ".jpg", "file_size": 779105.0, "mtime": "2002-11-08T13:53:14+00:00", "mtime_ts": 1036763594.0, "ctime": "2002-11-08T13:53:14+00:00", "sha256_file": "a415264865b86a731a3f72a44d244a88d4bf29a7254e1959cfdf4309e150941d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:53:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3153", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:53:16", "EXIF DateTimeDigitized": "2002:11:08 14:53:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55269e02ba0f4af2d4a197ac44bbb17de79256e228e4bc82ff511dca5ea4924d", "phash": "81623f9dc2613f1e", "dhash": "db33c6c1e87ecf71", "phash_int": -9.123659948295635e+18, "collected_at": "2026-05-22T04:30:46.610864+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0026_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0026_IMG.JPG", "file_name": "100-0026_IMG.JPG", "file_stem": "100-0026_IMG", "file_ext": ".jpg", "file_size": 1358998.0, "mtime": "2002-11-08T13:53:06+00:00", "mtime_ts": 1036763586.0, "ctime": "2002-11-08T13:53:06+00:00", "sha256_file": "97fb43a86c105079217b0f871538368df6542ac4ac7834aaf99083c954388c4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:53:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6715", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:53:07", "EXIF DateTimeDigitized": "2002:11:08 14:53:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "19", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e2c8f42c89a1a4364e40a4e12ea78fbf01b4b855bfc102315528c5840f41866", "phash": "f044f815d162daf6", "dhash": "b0a0e1d3dcee0f1b", "phash_int": -1.133508433599604e+18, "collected_at": "2026-05-22T04:30:46.621862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0028_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0028_IMG.JPG", "file_name": "100-0028_IMG.JPG", "file_stem": "100-0028_IMG", "file_ext": ".jpg", "file_size": 1158442.0, "mtime": "2002-11-08T13:53:32+00:00", "mtime_ts": 1036763612.0, "ctime": "2002-11-08T13:53:32+00:00", "sha256_file": "cec6c2a79690ff3a90ad5e7c70d26509f686ded1fed32b12f65c2ee0c5c781b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:53:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5905", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:53:34", "EXIF DateTimeDigitized": "2002:11:08 14:53:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "72/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "576"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0f586271d9ff5f658951501d4d73097be283fce12c795845b2e65c289184bce2", "phash": "835f4e2bd1335ca1", "dhash": "6368fcdcdeffefe8", "phash_int": -8.980373181853115e+18, "collected_at": "2026-05-22T04:30:46.687868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0029_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0029_IMG.JPG", "file_name": "100-0029_IMG.JPG", "file_stem": "100-0029_IMG", "file_ext": ".jpg", "file_size": 1218806.0, "mtime": "2002-11-08T13:53:40+00:00", "mtime_ts": 1036763620.0, "ctime": "2002-11-08T13:53:40+00:00", "sha256_file": "7f6f72482f93f414d6e8ee218ac9d4227e8c86c62f41cbf1c25af176439c75a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:53:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5696", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:53:41", "EXIF DateTimeDigitized": "2002:11:08 14:53:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b7a88b61257f1fc5b8893b71c8a5b2f7e1a20a26a69d6d7dff8f050c5c19aa5", "phash": "914c6de31e6ca31d", "dhash": "a2a0fcbceccfdefe", "phash_int": -7.976880017744551e+18, "collected_at": "2026-05-22T04:30:46.693865+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0030_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0030_IMG.JPG", "file_name": "100-0030_IMG.JPG", "file_stem": "100-0030_IMG", "file_ext": ".jpg", "file_size": 1134877.0, "mtime": "2002-11-08T13:53:56+00:00", "mtime_ts": 1036763636.0, "ctime": "2002-11-08T13:53:56+00:00", "sha256_file": "15c5d116b1767d3914e6a400306cc60d2a74533973315c93ea1b39989c969294", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:53:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6155", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:53:57", "EXIF DateTimeDigitized": "2002:11:08 14:53:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "459/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "459"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "adee5880f9e6b307d267cfd476a05832089ed8c6c52c56ecb6a0d656aca02a15", "phash": "aa9631662d4bf44b", "dhash": "7cbdfdffef7ffbbb", "phash_int": -6.154677525838826e+18, "collected_at": "2026-05-22T04:30:46.787869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0031_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0031_IMG.JPG", "file_name": "100-0031_IMG.JPG", "file_stem": "100-0031_IMG", "file_ext": ".jpg", "file_size": 998865.0, "mtime": "2002-11-08T13:54:10+00:00", "mtime_ts": 1036763650.0, "ctime": "2002-11-08T13:54:10+00:00", "sha256_file": "86d04dc43eabd1b0a9075479dfd0fa7737879a7e1016236c47adf2c94e2f0c5a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:54:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6472", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:54:12", "EXIF DateTimeDigitized": "2002:11:08 14:54:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "253/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "33", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "253"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a9c5cd70167d5b05ea5092c4582915d63306ad64fb8eae80e9def28489f5a2b6", "phash": "dec7191ce43f1506", "dhash": "62e36841ac38313a", "phash_int": -2.393917065045011e+18, "collected_at": "2026-05-22T04:30:46.834460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0032_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0032_IMG.JPG", "file_name": "100-0032_IMG.JPG", "file_stem": "100-0032_IMG", "file_ext": ".jpg", "file_size": 975799.0, "mtime": "2002-11-08T13:54:22+00:00", "mtime_ts": 1036763662.0, "ctime": "2002-11-08T13:54:22+00:00", "sha256_file": "392b04fda8d3b9f1f88bd94597f59c93dea94db031fca8997da2bf9d7357e5c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:54:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6066", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:54:23", "EXIF DateTimeDigitized": "2002:11:08 14:54:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "28/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "224"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "924e7d09054ad5ae221e7fd2a33b065b2cf5b83291904a068f67a97b53469c56", "phash": "f7c3a10e17f5c2c0", "dhash": "c254c448207116de", "phash_int": -5.934536439791772e+17, "collected_at": "2026-05-22T04:30:46.908535+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0033_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0033_IMG.JPG", "file_name": "100-0033_IMG.JPG", "file_stem": "100-0033_IMG", "file_ext": ".jpg", "file_size": 940219.0, "mtime": "2002-11-08T13:59:02+00:00", "mtime_ts": 1036763942.0, "ctime": "2002-11-08T13:59:02+00:00", "sha256_file": "07f6be13052efbcc3d12c808d1f40fbf9be39b71ef6c385087eaed77c95f3785", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:59:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4155", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:59:03", "EXIF DateTimeDigitized": "2002:11:08 14:59:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65519", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c575748f26396cd67254aa06de83424dee3f3f57140975c1a20403b71b0f4b51", "phash": "b00bb20df4875bad", "dhash": "8c99981c06cc8c9c", "phash_int": -5.761315525283587e+18, "collected_at": "2026-05-22T04:30:46.934736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0034_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0034_IMG.JPG", "file_name": "100-0034_IMG.JPG", "file_stem": "100-0034_IMG", "file_ext": ".jpg", "file_size": 961475.0, "mtime": "2002-11-08T13:59:06+00:00", "mtime_ts": 1036763946.0, "ctime": "2002-11-08T13:59:06+00:00", "sha256_file": "8b9e3175c5b6988e8c9b2dd45741fb72476efe6de4fc206cfefffec95335f735", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 14:59:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5057", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 14:59:08", "EXIF DateTimeDigitized": "2002:11:08 14:59:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Fast Shutter", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "64", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d01bf8488ac471b742692ebdd10b4b6dadb3cec8e84d88ba63678a98a17c3682", "phash": "c8f87cf97d411123", "dhash": "30a1e1a38bc8c064", "phash_int": -3.9652820609096044e+18, "collected_at": "2026-05-22T04:30:46.965340+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0041_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0041_IMG.JPG", "file_name": "100-0041_IMG.JPG", "file_stem": "100-0041_IMG", "file_ext": ".jpg", "file_size": 966906.0, "mtime": "2002-11-08T14:02:12+00:00", "mtime_ts": 1036764132.0, "ctime": "2002-11-08T14:02:12+00:00", "sha256_file": "7e9bb35d8787ba3d486a847e5ea3772c2f3baae63d75ad2719009c834089d715", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:02:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5357", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:02:13", "EXIF DateTimeDigitized": "2002:11:08 15:02:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "281/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "281"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b94429321d1a1946581f64e3a69fd375f746e65d780a57a4f6f3ee1115d3dcd8", "phash": "b309e43285778fb4", "dhash": "0f333bdadc190c86", "phash_int": -5.545650560491352e+18, "collected_at": "2026-05-22T04:30:46.995419+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0042_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0042_IMG.JPG", "file_name": "100-0042_IMG.JPG", "file_stem": "100-0042_IMG", "file_ext": ".jpg", "file_size": 971781.0, "mtime": "2002-11-08T14:02:32+00:00", "mtime_ts": 1036764152.0, "ctime": "2002-11-08T14:02:32+00:00", "sha256_file": "c265e9981637bb66e091324d459fbfd779da9f9106eb8b3debb6469d77b0b74c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:02:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5877", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:02:34", "EXIF DateTimeDigitized": "2002:11:08 15:02:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "207/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "207"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca07f32505c03f4c09dfb2f85f9aedc4471227c1607b8b6beaab7d54849f9c42", "phash": "b549ec16ed36c134", "dhash": "32399adb9c5c2c06", "phash_int": -5.383512296331493e+18, "collected_at": "2026-05-22T04:30:47.044737+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0043_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0043_IMG.JPG", "file_name": "100-0043_IMG.JPG", "file_stem": "100-0043_IMG", "file_ext": ".jpg", "file_size": 911986.0, "mtime": "2002-11-08T14:03:04+00:00", "mtime_ts": 1036764184.0, "ctime": "2002-11-08T14:03:04+00:00", "sha256_file": "97467d71b24e4c6a08141bdb3984d1dd8f2a5fb2c56e95ff7fc986d78463b5bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:03:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6120", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:03:06", "EXIF DateTimeDigitized": "2002:11:08 15:03:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "253/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "253"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61cbc39c7d993fe4e1e1127f20c7ca4b507ec05f282f6515b1fab870d4198b9f", "phash": "f514d4a32ce1235f", "dhash": "8624041306cf0200", "phash_int": -7.867702375852842e+17, "collected_at": "2026-05-22T04:30:47.061809+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0044_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0044_IMG.JPG", "file_name": "100-0044_IMG.JPG", "file_stem": "100-0044_IMG", "file_ext": ".jpg", "file_size": 810151.0, "mtime": "2002-11-08T14:05:16+00:00", "mtime_ts": 1036764316.0, "ctime": "2002-11-08T14:05:16+00:00", "sha256_file": "d880932b936e8847633b0dd858c014af5d1a86f4a8fe4c6af2e2ddd44a417d13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:05:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6254", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:05:18", "EXIF DateTimeDigitized": "2002:11:08 15:05:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "207/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "207"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d1d6585f035c04a8c17e85e28896456ab024dad193991e8c74cf29fde9b13e97", "phash": "d225ef9a226a9e83", "dhash": "ad06dc0cb8383939", "phash_int": -3.303971306324976e+18, "collected_at": "2026-05-22T04:30:47.082806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0045_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0045_IMG.JPG", "file_name": "100-0045_IMG.JPG", "file_stem": "100-0045_IMG", "file_ext": ".jpg", "file_size": 758620.0, "mtime": "2002-11-08T14:05:24+00:00", "mtime_ts": 1036764324.0, "ctime": "2002-11-08T14:05:24+00:00", "sha256_file": "04f295e25bf5d23bdecfb20657c1a6a9955f9f2c30297f4a0a50f0eadf7b4efb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:05:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5048", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:05:26", "EXIF DateTimeDigitized": "2002:11:08 15:05:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "327/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "327"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59c5711802bf4bbde3a9a1370fc41e237399d41eeda6f8f496718e3da78f329b", "phash": "877a97b568d59160", "dhash": "9d0dc5298f5eecec", "phash_int": -8.684462126026879e+18, "collected_at": "2026-05-22T04:30:47.108807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0046_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0046_IMG.JPG", "file_name": "100-0046_IMG.JPG", "file_stem": "100-0046_IMG", "file_ext": ".jpg", "file_size": 813828.0, "mtime": "2002-11-08T14:05:32+00:00", "mtime_ts": 1036764332.0, "ctime": "2002-11-08T14:05:32+00:00", "sha256_file": "77ec94c939643c5da5891d28d3f837d9850c2de6a3f9da897128880605e5a031", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:05:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5947", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:05:34", "EXIF DateTimeDigitized": "2002:11:08 15:05:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "327/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "327"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a7a80d277ac1717a51ba6f536b9592afb704152851fce6b1fc50c74f332a5b42", "phash": "9568de9e610ed615", "dhash": "279a8a0ade7c6c7c", "phash_int": -7.680644392665819e+18, "collected_at": "2026-05-22T04:30:47.134807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0047_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0047_IMG.JPG", "file_name": "100-0047_IMG.JPG", "file_stem": "100-0047_IMG", "file_ext": ".jpg", "file_size": 993728.0, "mtime": "2002-11-08T14:05:44+00:00", "mtime_ts": 1036764344.0, "ctime": "2002-11-08T14:05:44+00:00", "sha256_file": "29fbe4443f03bbe64baf1d998e43300f86f2bfb07291b259d1ede6a2b067f293", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:05:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7183", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:05:45", "EXIF DateTimeDigitized": "2002:11:08 15:05:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "201/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "201"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "01b16890023b39b86153994a8220d5a3c9da90c86a75c3ff941ba9098d9944b3", "phash": "b2c08b5b19bb59a9", "dhash": "b1a48e0c3c1d0c3f", "phash_int": -5.56629591603994e+18, "collected_at": "2026-05-22T04:30:47.159812+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0048_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0048_IMG.JPG", "file_name": "100-0048_IMG.JPG", "file_stem": "100-0048_IMG", "file_ext": ".jpg", "file_size": 1233327.0, "mtime": "2002-11-08T14:15:38+00:00", "mtime_ts": 1036764938.0, "ctime": "2002-11-08T14:15:38+00:00", "sha256_file": "b54641c0deba8493b86eb112770cc6dd03af2ef5d9bf77840e6a3ff0aaffb43c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:15:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6390", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:15:39", "EXIF DateTimeDigitized": "2002:11:08 15:15:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dcd61f9babeeead054c308102c3f8027844b752e6046bfd6426900f23d17e94", "phash": "d6954c337cc67905", "dhash": "b46270240e4c65a7", "phash_int": -2.9843953940426604e+18, "collected_at": "2026-05-22T04:30:47.217873+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0049_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0049_IMG.JPG", "file_name": "100-0049_IMG.JPG", "file_stem": "100-0049_IMG", "file_ext": ".jpg", "file_size": 999034.0, "mtime": "2002-11-08T14:15:46+00:00", "mtime_ts": 1036764946.0, "ctime": "2002-11-08T14:15:46+00:00", "sha256_file": "c1801dca1456af2247fa0aabd1d5512f4b51e64c30519c555b3eba7655d6d5de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:15:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4950", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:15:47", "EXIF DateTimeDigitized": "2002:11:08 15:15:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "047a5588e63c467af6f90b5b0d19f0c9d8fb7cc8121ef7e5911797f690dbb0ac", "phash": "d4092ff466483db9", "dhash": "20b0f2e0ac30904c", "phash_int": -3.167948136143897e+18, "collected_at": "2026-05-22T04:30:47.230878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0050_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0050_IMG.JPG", "file_name": "100-0050_IMG.JPG", "file_stem": "100-0050_IMG", "file_ext": ".jpg", "file_size": 1225389.0, "mtime": "2002-11-08T14:16:34+00:00", "mtime_ts": 1036764994.0, "ctime": "2002-11-08T14:16:34+00:00", "sha256_file": "6686f9f0ac767b7d8013b1e36d7583fd5b47f63879dcb3b6574be548014974bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:16:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6869", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:16:36", "EXIF DateTimeDigitized": "2002:11:08 15:16:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0a621d05db1351172ce1e81e56eed260d77980b2e017911e4546849d65586fc", "phash": "c755423b0e69da4d", "dhash": "e064c0a43e09cac1", "phash_int": -4.083284665729165e+18, "collected_at": "2026-05-22T04:30:47.289048+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0051_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0051_IMG.JPG", "file_name": "100-0051_IMG.JPG", "file_stem": "100-0051_IMG", "file_ext": ".jpg", "file_size": 1484596.0, "mtime": "2002-11-08T14:20:00+00:00", "mtime_ts": 1036765200.0, "ctime": "2002-11-08T14:20:00+00:00", "sha256_file": "ee806583374eefae691d772e176e778e833703ab4b683c4243d3b0d54725fd5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:20:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5448", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:20:01", "EXIF DateTimeDigitized": "2002:11:08 15:20:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[43, 226, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "114", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b14f9e47ef29cc4d0579da4569b27ca1859540281a9a9f0ddac106256072928b", "phash": "c1c165ca65e65acd", "dhash": "c2d0e8e0f0f0f4fa", "phash_int": -4.485191833916909e+18, "collected_at": "2026-05-22T04:30:47.301049+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0053_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0053_IMG.JPG", "file_name": "100-0053_IMG.JPG", "file_stem": "100-0053_IMG", "file_ext": ".jpg", "file_size": 1092914.0, "mtime": "2002-11-08T14:21:38+00:00", "mtime_ts": 1036765298.0, "ctime": "2002-11-08T14:21:38+00:00", "sha256_file": "dbb2aac485491e50151fa9267a081f371ad9a75ac661db0a128d5ce5d93db051", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:21:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4931", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:21:39", "EXIF DateTimeDigitized": "2002:11:08 15:21:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "939c31176e290f58a0d49311b87f3e5438035bc13af4aab9e1a26ae56666d1de", "phash": "bd6516df3000e65d", "dhash": "3627273632717130", "phash_int": -4.799404680054512e+18, "collected_at": "2026-05-22T04:30:47.395492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0052_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0052_IMG.JPG", "file_name": "100-0052_IMG.JPG", "file_stem": "100-0052_IMG", "file_ext": ".jpg", "file_size": 1345241.0, "mtime": "2002-11-08T14:20:12+00:00", "mtime_ts": 1036765212.0, "ctime": "2002-11-08T14:20:12+00:00", "sha256_file": "f951579d6db686ff9ee7c36f3b7915ef1bc4a92b163918f4964430cee530068f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:20:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5374", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:20:14", "EXIF DateTimeDigitized": "2002:11:08 15:20:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73e112bc3651b744f6f5b5489d4c38aea973fcad7494b8e5b9d3de2c8532c777", "phash": "c0c9696e6de466a6", "dhash": "e3d1e0e0e0e1b5fa", "phash_int": -4.554993625097542e+18, "collected_at": "2026-05-22T04:30:47.405491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0054_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0054_IMG.JPG", "file_name": "100-0054_IMG.JPG", "file_stem": "100-0054_IMG", "file_ext": ".jpg", "file_size": 1217623.0, "mtime": "2002-11-08T14:22:06+00:00", "mtime_ts": 1036765326.0, "ctime": "2002-11-08T14:22:06+00:00", "sha256_file": "128e43b3b45d7595e73d409718b97e478d72b92548ffd9219f5956412f20f13e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:22:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5062", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:22:08", "EXIF DateTimeDigitized": "2002:11:08 15:22:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "253a4c931b1a24754b27c2b753b6031d74f6d9ee82c007a1c3ae5776f530cded", "phash": "f4d709ba01759c33", "dhash": "988d2ccc8cac2e96", "phash_int": -8.041633139692923e+17, "collected_at": "2026-05-22T04:30:47.449495+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0055_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0055_IMG.JPG", "file_name": "100-0055_IMG.JPG", "file_stem": "100-0055_IMG", "file_ext": ".jpg", "file_size": 934610.0, "mtime": "2002-11-08T14:22:54+00:00", "mtime_ts": 1036765374.0, "ctime": "2002-11-08T14:22:54+00:00", "sha256_file": "eed73404321b055facfcbc8a3543e0b129dc4312e03d6477fa0673f949a642d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:22:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4417", "EXIF ExposureTime": "1/8", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:22:56", "EXIF DateTimeDigitized": "2002:11:08 15:22:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "153/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1224"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00b77e0915253804e9b14913586b7dcfe822100078cadb42223ea0353bbb07d7", "phash": "c5dd981ce11874cf", "dhash": "b062e2c6e6e6b8de", "phash_int": -4.189024828581711e+18, "collected_at": "2026-05-22T04:30:47.464492+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0056_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0056_IMG.JPG", "file_name": "100-0056_IMG.JPG", "file_stem": "100-0056_IMG", "file_ext": ".jpg", "file_size": 1144334.0, "mtime": "2002-11-08T14:34:02+00:00", "mtime_ts": 1036766042.0, "ctime": "2002-11-08T14:34:02+00:00", "sha256_file": "3a5b69ae9236eb94a97f6dc1542445bcf8571edff6e112d0680fdcf658a6ab0c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:34:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4519", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:34:04", "EXIF DateTimeDigitized": "2002:11:08 15:34:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dabdd4bd3ae588cc235a2c39a16127e5a1d3f30e58a4b73d770995b0ab2c2101", "phash": "e5ed9933348c13b2", "dhash": "9c424644cccc64d4", "phash_int": -1.8786770243396516e+18, "collected_at": "2026-05-22T04:30:47.498659+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0057_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0057_IMG.JPG", "file_name": "100-0057_IMG.JPG", "file_stem": "100-0057_IMG", "file_ext": ".jpg", "file_size": 1194012.0, "mtime": "2002-11-08T14:34:08+00:00", "mtime_ts": 1036766048.0, "ctime": "2002-11-08T14:34:08+00:00", "sha256_file": "9483ce123307f63ac5a62d34c0a00f9ff933cc310ce202592fad0de1aaf30938", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:34:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4453", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:34:10", "EXIF DateTimeDigitized": "2002:11:08 15:34:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "72/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "576"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e39bb13a68da9af01cc304e65a1b98d65e2a787f47b2497fa3af55de9558f05", "phash": "e5ed9933349c1332", "dhash": "9e424646cccc64d4", "phash_int": -1.8786770243386033e+18, "collected_at": "2026-05-22T04:30:47.507660+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0059_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0059_IMG.JPG", "file_name": "100-0059_IMG.JPG", "file_stem": "100-0059_IMG", "file_ext": ".jpg", "file_size": 895805.0, "mtime": "2002-11-08T14:46:40+00:00", "mtime_ts": 1036766800.0, "ctime": "2002-11-08T14:46:40+00:00", "sha256_file": "e7258bc7ca1bd4e237502401ab24af7850e322c59dfc0d4ece3d6034d1f2b684", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:46:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5383", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:46:42", "EXIF DateTimeDigitized": "2002:11:08 15:46:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d5ba4a55a71b2f0d44e52cadf5bcfe1667bc10eee51a1f14d688cf706b3af96", "phash": "964cb471b319398f", "dhash": "75e561f1291c3c1c", "phash_int": -7.616514469361273e+18, "collected_at": "2026-05-22T04:30:47.570803+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0058_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0058_IMG.JPG", "file_name": "100-0058_IMG.JPG", "file_stem": "100-0058_IMG", "file_ext": ".jpg", "file_size": 1200361.0, "mtime": "2002-11-08T14:34:34+00:00", "mtime_ts": 1036766074.0, "ctime": "2002-11-08T14:34:34+00:00", "sha256_file": "f25f6fde9b9633320c1e924b750cd96019ac6026cbb1bc234044d7ccfd5b566f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:34:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:34:35", "EXIF DateTimeDigitized": "2002:11:08 15:34:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "133", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8e78a5c7c2408455caef737953ff920e1c30546bb1dace4f3ddb4a99316edfc", "phash": "c1c349f0e2e3f2d1", "dhash": "c8e0cccccce0f0e0", "phash_int": -4.484659504983314e+18, "collected_at": "2026-05-22T04:30:47.571804+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0060_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0060_IMG.JPG", "file_name": "100-0060_IMG.JPG", "file_stem": "100-0060_IMG", "file_ext": ".jpg", "file_size": 716892.0, "mtime": "2002-11-08T14:46:58+00:00", "mtime_ts": 1036766818.0, "ctime": "2002-11-08T14:46:58+00:00", "sha256_file": "0e9e3969c017f36d92507f58c031078b1f738fe2af4866df1f15fb58aa65317f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:46:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3426", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:46:59", "EXIF DateTimeDigitized": "2002:11:08 15:46:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "111/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "444"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a16398d8d570db059fa7c9735a405aa67875e3e15325c4d10a7e0c8c6ee7f4f9", "phash": "956e96264f12ae39", "dhash": "ece6724973eefcf0", "phash_int": -7.679035223340569e+18, "collected_at": "2026-05-22T04:30:47.644806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0061_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0061_IMG.JPG", "file_name": "100-0061_IMG.JPG", "file_stem": "100-0061_IMG", "file_ext": ".jpg", "file_size": 940328.0, "mtime": "2002-11-08T14:49:54+00:00", "mtime_ts": 1036766994.0, "ctime": "2002-11-08T14:49:54+00:00", "sha256_file": "0125a76beb6e5edc8be30da931705e915a33edaeed10ea0caa413f7a4f8e8550", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 15:49:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6348", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 15:49:56", "EXIF DateTimeDigitized": "2002:11:08 15:49:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8da9d1bf7bf320a7720f491ebe616cf69a25fd21f79c21e30442bcff84cc47d9", "phash": "c1a14dcc19dd26cf", "dhash": "d2928e98d1a13040", "phash_int": -4.4942254141364536e+18, "collected_at": "2026-05-22T04:30:47.663806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0062_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0062_IMG.JPG", "file_name": "100-0062_IMG.JPG", "file_stem": "100-0062_IMG", "file_ext": ".jpg", "file_size": 636683.0, "mtime": "2002-11-08T16:17:36+00:00", "mtime_ts": 1036772256.0, "ctime": "2002-11-08T16:17:36+00:00", "sha256_file": "e5856e671e851d7c2e3d25d8f73cafbf7781acfecfe705f79fb4a5352c308770", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 17:17:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2997", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 17:17:37", "EXIF DateTimeDigitized": "2002:11:08 17:17:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09aea09e012285f707022b386324b916fa303e626443017c47991dac7e956ee0", "phash": "c87dcd9a3c3c9289", "dhash": "30c0000d9961a3a0", "phash_int": -3.9998148317158723e+18, "collected_at": "2026-05-22T04:30:47.688807+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0064_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0064_IMG.JPG", "file_name": "100-0064_IMG.JPG", "file_stem": "100-0064_IMG", "file_ext": ".jpg", "file_size": 678118.0, "mtime": "2002-11-08T16:18:20+00:00", "mtime_ts": 1036772300.0, "ctime": "2002-11-08T16:18:20+00:00", "sha256_file": "c91b8fedb8d206fd8f6cab1ec278a4d4d95599942a48e6cfae63cdc260f1256b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 17:18:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3040", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 17:18:21", "EXIF DateTimeDigitized": "2002:11:08 17:18:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "163", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "182bd5cf3006d2c10f0772935e944ce050737d49f3927dc1a7a418bba980da63", "phash": "d90dcd923c3b8a2d", "dhash": "30f0b00101711112", "phash_int": -2.806360964822497e+18, "collected_at": "2026-05-22T04:30:47.724130+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0063_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0063_IMG.JPG", "file_name": "100-0063_IMG.JPG", "file_stem": "100-0063_IMG", "file_ext": ".jpg", "file_size": 637699.0, "mtime": "2002-11-08T16:17:40+00:00", "mtime_ts": 1036772260.0, "ctime": "2002-11-08T16:17:40+00:00", "sha256_file": "f01f0e2ec9ea0305301c1051a638e5188ed2066026485390a311ad024eab8278", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 17:17:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3027", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 17:17:41", "EXIF DateTimeDigitized": "2002:11:08 17:17:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "173", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43243cbc2abc3c573d46e6679366ad83c70209dfbfdbb3829ce47ea040434368", "phash": "d93d0d16343f860f", "dhash": "3000c000082030c2", "phash_int": -2.7930618048828196e+18, "collected_at": "2026-05-22T04:30:47.729199+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0065_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0065_IMG.JPG", "file_name": "100-0065_IMG.JPG", "file_stem": "100-0065_IMG", "file_ext": ".jpg", "file_size": 685069.0, "mtime": "2002-11-08T16:18:40+00:00", "mtime_ts": 1036772320.0, "ctime": "2002-11-08T16:18:40+00:00", "sha256_file": "a2fef4c3e3ae5b0de41506523f0a56b13e42277353f69c1d6f0adc21c5863c38", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 17:18:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3290", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 17:18:42", "EXIF DateTimeDigitized": "2002:11:08 17:18:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "149", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a11d93a19b9980294b1d33255f9807ac2505e00c476f2986ac8aabea44581971", "phash": "cc2cc4d93f3ec1c4", "dhash": "6020810311918181", "phash_int": -3.734393553648959e+18, "collected_at": "2026-05-22T04:30:47.796204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0066_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0066_IMG.JPG", "file_name": "100-0066_IMG.JPG", "file_stem": "100-0066_IMG", "file_ext": ".jpg", "file_size": 566503.0, "mtime": "2002-11-08T17:07:32+00:00", "mtime_ts": 1036775252.0, "ctime": "2002-11-08T17:07:32+00:00", "sha256_file": "87d150c1941927b1f6f038b1e77bd58f975c175a8410d9d23be8907c3bd06f26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:07:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2935", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:07:33", "EXIF DateTimeDigitized": "2002:11:08 18:07:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 50, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e7038a335cc959ec115249c74f661bb6ce325cd3ffb61a724aad0dc64ac9808d", "phash": "9583d618393fd6c1", "dhash": "f8e0e873b1a4b4e4", "phash_int": -7.673053940581149e+18, "collected_at": "2026-05-22T04:30:47.809267+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0067_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0067_IMG.JPG", "file_name": "100-0067_IMG.JPG", "file_stem": "100-0067_IMG", "file_ext": ".jpg", "file_size": 772694.0, "mtime": "2002-11-08T17:07:40+00:00", "mtime_ts": 1036775260.0, "ctime": "2002-11-08T17:07:40+00:00", "sha256_file": "5f2af8c6e95c544bf481004703f67b520378ba3f0394e7e12e31d4d66d3452bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:07:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4827", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:07:42", "EXIF DateTimeDigitized": "2002:11:08 18:07:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "81", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bab13a5b6bf5cb8255268a19fe0550e945ef77e24e5beac2122099a0bf906df3", "phash": "9d82e7710c39b2d6", "dhash": "fce86877b01a5262", "phash_int": -7.096855590060051e+18, "collected_at": "2026-05-22T04:30:47.875565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0068_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0068_IMG.JPG", "file_name": "100-0068_IMG.JPG", "file_stem": "100-0068_IMG", "file_ext": ".jpg", "file_size": 769552.0, "mtime": "2002-11-08T17:07:46+00:00", "mtime_ts": 1036775266.0, "ctime": "2002-11-08T17:07:46+00:00", "sha256_file": "8e89dcf1080beb9632973188f37a0f5fc7473dd61bdfd4868da69d1555898b2e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:07:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4837", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:07:48", "EXIF DateTimeDigitized": "2002:11:08 18:07:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "946914c24d1bab11fb4445cf5a9a1a7f524b52c1d728abcdbb7e3a9b63aa6d34", "phash": "9d82f778083db6c2", "dhash": "b4a86873b03a3272", "phash_int": -7.096837967876082e+18, "collected_at": "2026-05-22T04:30:47.887569+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0069_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0069_IMG.JPG", "file_name": "100-0069_IMG.JPG", "file_stem": "100-0069_IMG", "file_ext": ".jpg", "file_size": 1108854.0, "mtime": "2002-11-08T17:08:08+00:00", "mtime_ts": 1036775288.0, "ctime": "2002-11-08T17:08:08+00:00", "sha256_file": "fa48f19fde75b9c6e99d566c261955aadae216df85d5f645ca6f4641ae6c3f67", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:08:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6692", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:08:09", "EXIF DateTimeDigitized": "2002:11:08 18:08:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4c4d5faca65508612fe347532ea8011d9ce9e8648285dcd093d983f97de00164", "phash": "c80eb10f6318f3dd", "dhash": "c2b33283c362329a", "phash_int": -4.0310899368048097e+18, "collected_at": "2026-05-22T04:30:47.958738+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0070_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0070_IMG.JPG", "file_name": "100-0070_IMG.JPG", "file_stem": "100-0070_IMG", "file_ext": ".jpg", "file_size": 1028102.0, "mtime": "2002-11-08T17:08:14+00:00", "mtime_ts": 1036775294.0, "ctime": "2002-11-08T17:08:14+00:00", "sha256_file": "0aada4b8701eec5f6f44c01648faa940c38f324e2561f3321d6e3d39838e89f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:08:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6054", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:08:16", "EXIF DateTimeDigitized": "2002:11:08 18:08:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65530", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db88ce87aed4e2b664b19997cea3828d736eb6ca0b8052735d574e3a43c822e0", "phash": "aac8d7376ed50825", "dhash": "4dd99391494d0e8d", "phash_int": -6.140421458837043e+18, "collected_at": "2026-05-22T04:30:47.971826+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0072_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0072_IMG.JPG", "file_name": "100-0072_IMG.JPG", "file_stem": "100-0072_IMG", "file_ext": ".jpg", "file_size": 876349.0, "mtime": "2002-11-08T17:11:24+00:00", "mtime_ts": 1036775484.0, "ctime": "2002-11-08T17:11:24+00:00", "sha256_file": "955b35c3b823ae9f825c41c60f55ecde2983c0b48d4c6df61b7c8918de08be60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:11:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3574", "EXIF ExposureTime": "1/8", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:11:26", "EXIF DateTimeDigitized": "2002:11:08 18:11:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "7341/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7341"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c03930b71b616ddcd152240026b03957d44402c90e11a6a64c0b5716acba5551", "phash": "f2f20c4c69a3b656", "dhash": "55aa8e0fb2c0a0e0", "phash_int": -9.406758498376278e+17, "collected_at": "2026-05-22T04:30:48.036681+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0071_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0071_IMG.JPG", "file_name": "100-0071_IMG.JPG", "file_stem": "100-0071_IMG", "file_ext": ".jpg", "file_size": 1151561.0, "mtime": "2002-11-08T17:08:40+00:00", "mtime_ts": 1036775320.0, "ctime": "2002-11-08T17:08:40+00:00", "sha256_file": "7eafb602b9ae7dc599f14f41b66bd551a24c27bf90b6b593aa2e57b3415ebad8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 18:08:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6556", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 18:08:41", "EXIF DateTimeDigitized": "2002:11:08 18:08:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9f73cc41705f5a28cafc7bf4d441d50d02cedafefa54820e9c37e0126987db48", "phash": "84bee36ccc963c61", "dhash": "26c4e8aca4b4c8ca", "phash_int": -8.881411358699668e+18, "collected_at": "2026-05-22T04:30:48.045752+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0073_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0073_IMG.JPG", "file_name": "100-0073_IMG.JPG", "file_stem": "100-0073_IMG", "file_ext": ".jpg", "file_size": 802422.0, "mtime": "2002-11-08T21:55:14+00:00", "mtime_ts": 1036792514.0, "ctime": "2002-11-08T21:55:14+00:00", "sha256_file": "8f6e1ee086b21f5250698e850bd71973300423556905e38e3548fee0224be9db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:08 22:55:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3787", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:08 22:55:16", "EXIF DateTimeDigitized": "2002:11:08 22:55:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "47", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df1e2984ec80af0d622b8105c541693ded72dc759b97daeb00e3ae7831bcb293", "phash": "d33d3dc6b2db0818", "dhash": "faf2f2c889e1c0c0", "phash_int": -3.2253538345138893e+18, "collected_at": "2026-05-22T04:30:48.098754+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0074_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0074_IMG.JPG", "file_name": "100-0074_IMG.JPG", "file_stem": "100-0074_IMG", "file_ext": ".jpg", "file_size": 1008892.0, "mtime": "2002-11-09T11:02:20+00:00", "mtime_ts": 1036839740.0, "ctime": "2002-11-09T11:02:20+00:00", "sha256_file": "b041b19dba1328d1b2efd32b64cc48c79ad06398377deaeeba115038abb70509", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:02:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5292", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:02:22", "EXIF DateTimeDigitized": "2002:11:09 12:02:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "9225"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a25b0e46f3b854226f1bcec5e6d73ca5d33b4d520f00647096b49208269fd410", "phash": "df3d29602f06f06c", "dhash": "7878386c2289696b", "phash_int": -2.360685136589689e+18, "collected_at": "2026-05-22T04:30:48.123181+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0075_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0075_IMG.JPG", "file_name": "100-0075_IMG.JPG", "file_stem": "100-0075_IMG", "file_ext": ".jpg", "file_size": 960220.0, "mtime": "2002-11-09T11:29:34+00:00", "mtime_ts": 1036841374.0, "ctime": "2002-11-09T11:29:34+00:00", "sha256_file": "8e3069e28317e69ff135832232528f4890a443969a2221c7ab26082fa107670b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:29:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5459", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:29:35", "EXIF DateTimeDigitized": "2002:11:09 12:29:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86e15924a1793d6c50067f71f38dcd2bdc5c815b2d5cae80be3c30208606acfe", "phash": "91d0ce67e3a0f8d1", "dhash": "e8f0b0d8da576b63", "phash_int": -7.939619197458254e+18, "collected_at": "2026-05-22T04:30:48.131255+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0077_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0077_IMG.JPG", "file_name": "100-0077_IMG.JPG", "file_stem": "100-0077_IMG", "file_ext": ".jpg", "file_size": 1185073.0, "mtime": "2002-11-09T11:36:44+00:00", "mtime_ts": 1036841804.0, "ctime": "2002-11-09T11:36:44+00:00", "sha256_file": "7dd11e3a01340abb7fe5c33d82d9cecc14ad660f44a0d8cefd9ac3cc6b597843", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:36:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7665", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:36:46", "EXIF DateTimeDigitized": "2002:11:09 12:36:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6843/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc6401cd91d1a271d4a2bbe5a03d325aa22e3ccda6d5f540af2f6082d0861250", "phash": "9bcbf515b93928a0", "dhash": "f3e04359cd6e3a9a", "phash_int": -7.220408103907809e+18, "collected_at": "2026-05-22T04:30:48.259551+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0076_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0076_IMG.JPG", "file_name": "100-0076_IMG.JPG", "file_stem": "100-0076_IMG", "file_ext": ".jpg", "file_size": 893589.0, "mtime": "2002-11-09T11:29:52+00:00", "mtime_ts": 1036841392.0, "ctime": "2002-11-09T11:29:52+00:00", "sha256_file": "6e4aecfe62be4cadb91f3bfbc112c12406ad9b76b7e812f86a2094ffd3923aab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:29:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5011", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:29:53", "EXIF DateTimeDigitized": "2002:11:09 12:29:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6843/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[95, 139, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "162", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "215", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6f930050ed7fbe2a8c757fb9ef43a6eb5f3c915ee71272dae01768b8ca37971", "phash": "e34a144d73370f6a", "dhash": "0119890b03438f1d", "phash_int": -2.0688187559452961e+18, "collected_at": "2026-05-22T04:30:48.263557+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0078_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0078_IMG.JPG", "file_name": "100-0078_IMG.JPG", "file_stem": "100-0078_IMG", "file_ext": ".jpg", "file_size": 1324616.0, "mtime": "2002-11-09T11:47:42+00:00", "mtime_ts": 1036842462.0, "ctime": "2002-11-09T11:47:42+00:00", "sha256_file": "0a1d2f13f28de767e6ccca509c2026377bf284902ad4ff3836881e9141c997ad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:47:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6483", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:47:44", "EXIF DateTimeDigitized": "2002:11:09 12:47:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe6456acf419dccf6a514b0cfb866e0b504d0e9cbb4413208b2f527bbebc9266", "phash": "d70569c2c193673d", "dhash": "c0c64adcec481c0a", "phash_int": -2.952837695479257e+18, "collected_at": "2026-05-22T04:30:48.335318+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0079_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0079_IMG.JPG", "file_name": "100-0079_IMG.JPG", "file_stem": "100-0079_IMG", "file_ext": ".jpg", "file_size": 1073378.0, "mtime": "2002-11-09T11:50:28+00:00", "mtime_ts": 1036842628.0, "ctime": "2002-11-09T11:50:28+00:00", "sha256_file": "ff2391d17935d8f0ba20270470fb2a81b31c8149b49aa751c3a48c7de87e8089", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:50:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6915", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:50:29", "EXIF DateTimeDigitized": "2002:11:09 12:50:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d97836a447599e0391a4488893be23653d10bb29a4291c7bf56f9115e2b077b5", "phash": "d3fcab0798cc4e18", "dhash": "080c31b4dcc9c989", "phash_int": -3.171471988459025e+18, "collected_at": "2026-05-22T04:30:48.341315+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0080_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0080_IMG.JPG", "file_name": "100-0080_IMG.JPG", "file_stem": "100-0080_IMG", "file_ext": ".jpg", "file_size": 957720.0, "mtime": "2002-11-09T11:50:44+00:00", "mtime_ts": 1036842644.0, "ctime": "2002-11-09T11:50:44+00:00", "sha256_file": "55d2ea165f702e9f411da16a180ac30bc19b5e1f0f34056b7fcacf90ea19bf17", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 12:50:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5610", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 12:50:46", "EXIF DateTimeDigitized": "2002:11:09 12:50:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000080", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "262", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a43c666ec9d6c389b19742bc48471ad62f819000e4cd2e241c3d4197e013386b", "phash": "dacb92226656e17a", "dhash": "68f1d07129893df4", "phash_int": -2.680888476725485e+18, "collected_at": "2026-05-22T04:30:48.373672+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0081_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0081_IMG.JPG", "file_name": "100-0081_IMG.JPG", "file_stem": "100-0081_IMG", "file_ext": ".jpg", "file_size": 749044.0, "mtime": "2002-11-09T12:05:02+00:00", "mtime_ts": 1036843502.0, "ctime": "2002-11-09T12:05:02+00:00", "sha256_file": "02e16732ebedbad723ba9472bc5ceb328ef8a785cbe916ae844d9d96a5fe5b52", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:05:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5900", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:05:03", "EXIF DateTimeDigitized": "2002:11:09 13:05:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "282", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba110533cdd73aadeb0da818bfe2c3347dda02194e9f8f0624c9861525cbd253", "phash": "c78c9a03382ce7fc", "dhash": "f8f00454514ae8a8", "phash_int": -4.067707024804354e+18, "collected_at": "2026-05-22T04:30:48.390756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0082_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0082_IMG.JPG", "file_name": "100-0082_IMG.JPG", "file_stem": "100-0082_IMG", "file_ext": ".jpg", "file_size": 1163799.0, "mtime": "2002-11-09T12:06:02+00:00", "mtime_ts": 1036843562.0, "ctime": "2002-11-09T12:06:02+00:00", "sha256_file": "9e91305d11fdd884da9155dff44dd6586194fca3bfc4935328a33d3d13bc4fb3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:06:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7082", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:06:03", "EXIF DateTimeDigitized": "2002:11:09 13:06:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d775b6614aa1a2df7c688817b172b136ec917e8d439cb8bebd53737669ab455", "phash": "e595cf5218c7d286", "dhash": "e02aea82a8884283", "phash_int": -1.9033873159841498e+18, "collected_at": "2026-05-22T04:30:48.424759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0083_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0083_IMG.JPG", "file_name": "100-0083_IMG.JPG", "file_stem": "100-0083_IMG", "file_ext": ".jpg", "file_size": 1024479.0, "mtime": "2002-11-09T12:06:48+00:00", "mtime_ts": 1036843608.0, "ctime": "2002-11-09T12:06:48+00:00", "sha256_file": "a455b011839468f71e1a51d20be00d065f686eeb79ba58d3f9f1a8836a27dfc3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:06:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5851", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:06:50", "EXIF DateTimeDigitized": "2002:11:09 13:06:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05a6f642162893a5df97af0d4d8b7d38351690da33973d7200e1b4b04b98b921", "phash": "bd82c4f60768cc79", "dhash": "7cf8f3e33a271333", "phash_int": -4.791050492603479e+18, "collected_at": "2026-05-22T04:30:48.426758+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0085_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0085_IMG.JPG", "file_name": "100-0085_IMG.JPG", "file_stem": "100-0085_IMG", "file_ext": ".jpg", "file_size": 1135073.0, "mtime": "2002-11-09T12:26:36+00:00", "mtime_ts": 1036844796.0, "ctime": "2002-11-09T12:26:36+00:00", "sha256_file": "0a13b8622a724df9161da51e0df40a639f9b8584d376c055ac64a8dc54b1289e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:26:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6544", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:26:37", "EXIF DateTimeDigitized": "2002:11:09 13:26:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "459d6980bd11fba632211aec3cee9314267484944b97cefb45090824d84f01ef", "phash": "d44c334d9b3c027f", "dhash": "0680a5a420e22688", "phash_int": -3.14908563102892e+18, "collected_at": "2026-05-22T04:30:48.507964+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0084_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0084_IMG.JPG", "file_name": "100-0084_IMG.JPG", "file_stem": "100-0084_IMG", "file_ext": ".jpg", "file_size": 1019436.0, "mtime": "2002-11-09T12:26:28+00:00", "mtime_ts": 1036844788.0, "ctime": "2002-11-09T12:26:28+00:00", "sha256_file": "6aad86809fa3d4e84f317e57189671186b9c682422c78deb0bd360b727413830", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:26:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6058", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:26:30", "EXIF DateTimeDigitized": "2002:11:09 13:26:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3f76e24617cbd505d5d5f497dac7004ba006a6b721c6aa6d8dfe49c00d4e7bee", "phash": "d1e21f6e24dc328b", "dhash": "81d89890c8583012", "phash_int": -3.3230590171207306e+18, "collected_at": "2026-05-22T04:30:48.512962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0086_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0086_IMG.JPG", "file_name": "100-0086_IMG.JPG", "file_stem": "100-0086_IMG", "file_ext": ".jpg", "file_size": 874032.0, "mtime": "2002-11-09T12:56:02+00:00", "mtime_ts": 1036846562.0, "ctime": "2002-11-09T12:56:02+00:00", "sha256_file": "f6683866c88aa1ee0f8d2683477f7ac9f8781b8e73011ef8fd28b522098d9ec8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:56:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6921", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:56:04", "EXIF DateTimeDigitized": "2002:11:09 13:56:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d67434ebfa7c0417d6540acb15f6973167994f3bedaee01a23ee90e160fbde6", "phash": "a691d429efadc918", "dhash": "e68c9c4b4b5b2725", "phash_int": -6.444136315210578e+18, "collected_at": "2026-05-22T04:30:48.605141+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0087_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0087_IMG.JPG", "file_name": "100-0087_IMG.JPG", "file_stem": "100-0087_IMG", "file_ext": ".jpg", "file_size": 991974.0, "mtime": "2002-11-09T12:56:40+00:00", "mtime_ts": 1036846600.0, "ctime": "2002-11-09T12:56:40+00:00", "sha256_file": "d625d4e25243e1526ff2022532f67e76dcb4676240b49fa439d4fd53e6a7b75e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 13:56:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7008", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 13:56:42", "EXIF DateTimeDigitized": "2002:11:09 13:56:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000087", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "208", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc514c904874442a017abd856d81a7b13afa435490d1dee1ee47aca8ea56721e", "phash": "f98476f0aedd4211", "dhash": "269afa239a101223", "phash_int": -4.671176852417244e+17, "collected_at": "2026-05-22T04:30:48.609214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0088_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0088_IMG.JPG", "file_name": "100-0088_IMG.JPG", "file_stem": "100-0088_IMG", "file_ext": ".jpg", "file_size": 1228433.0, "mtime": "2002-11-09T14:58:38+00:00", "mtime_ts": 1036853918.0, "ctime": "2002-11-09T14:58:38+00:00", "sha256_file": "98591567741711e73c3f839d3cba09a8abecb71985955d5efd17fb8792d137db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 15:58:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6233", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 15:58:40", "EXIF DateTimeDigitized": "2002:11:09 15:58:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000088", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "188", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39af3aeea39f63c3b4981e2c70a7fa33cbad7621958a4a9ce367006ab1468cb5", "phash": "adadd2522c645a9b", "dhash": "265652323318c0e1", "phash_int": -5.931853883803149e+18, "collected_at": "2026-05-22T04:30:48.737291+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0089_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0089_IMG.JPG", "file_name": "100-0089_IMG.JPG", "file_stem": "100-0089_IMG", "file_ext": ".jpg", "file_size": 1159180.0, "mtime": "2002-11-09T14:58:44+00:00", "mtime_ts": 1036853924.0, "ctime": "2002-11-09T14:58:44+00:00", "sha256_file": "d656ce6a0c587d048a8f0ffeb53a593ec024f40029b0365cf3515233c78ef3ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 15:58:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5953", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 15:58:46", "EXIF DateTimeDigitized": "2002:11:09 15:58:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20e32c08a779ede2a4707ed80b205381f63d4b88b63646d6cae1e16d1598774e", "phash": "c7c181197eb6cea8", "dhash": "c2c2e06173704cce", "phash_int": -4.0528162431566607e+18, "collected_at": "2026-05-22T04:30:48.761291+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0090_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0090_IMG.JPG", "file_name": "100-0090_IMG.JPG", "file_stem": "100-0090_IMG", "file_ext": ".jpg", "file_size": 909392.0, "mtime": "2002-11-09T15:42:40+00:00", "mtime_ts": 1036856560.0, "ctime": "2002-11-09T15:42:40+00:00", "sha256_file": "d4338ca993e190537be6680a285d0644971224712af767cc29e3309b618ed04c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 16:42:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5345", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 16:42:41", "EXIF DateTimeDigitized": "2002:11:09 16:42:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "196", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f913cfbe6310b8a5a496c9dca99093f54bf8ee4c1a282dd356abfdb4980a922d", "phash": "f886625ddd3129a9", "dhash": "03a5b73032121991", "phash_int": -5.386349501417283e+17, "collected_at": "2026-05-22T04:30:48.800834+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0091_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0091_IMG.JPG", "file_name": "100-0091_IMG.JPG", "file_stem": "100-0091_IMG", "file_ext": ".jpg", "file_size": 751161.0, "mtime": "2002-11-09T15:50:14+00:00", "mtime_ts": 1036857014.0, "ctime": "2002-11-09T15:50:14+00:00", "sha256_file": "aed5eebfa20514210a7714d3912ff400b0bf42489484111c0e183d02209dca1b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 16:50:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3527", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 16:50:15", "EXIF DateTimeDigitized": "2002:11:09 16:50:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 103, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c4cf382ee9c4a37c50454b6cb1fcb8c4f03c4d394938ade247f6f3421c87950", "phash": "feec810c59599197", "dhash": "30251011203070f8", "phash_int": -7.754520353350821e+16, "collected_at": "2026-05-22T04:30:48.830993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0092_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0092_IMG.JPG", "file_name": "100-0092_IMG.JPG", "file_stem": "100-0092_IMG", "file_ext": ".jpg", "file_size": 805863.0, "mtime": "2002-11-09T15:50:28+00:00", "mtime_ts": 1036857028.0, "ctime": "2002-11-09T15:50:28+00:00", "sha256_file": "cb06de7b458180d2be9bece74dadce5cdd77229c07a6b1ae39817cac5ad4c581", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 16:50:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4633", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 16:50:29", "EXIF DateTimeDigitized": "2002:11:09 16:50:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000092", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63007a40fc37a766e917ac0ac72d57774ea96aafe79c38f4572c617b1db46f15", "phash": "8cc8994f799893c7", "dhash": "b2e7e8b26060f0f0", "phash_int": -8.302217346436001e+18, "collected_at": "2026-05-22T04:30:48.857270+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0093_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0093_IMG.JPG", "file_name": "100-0093_IMG.JPG", "file_stem": "100-0093_IMG", "file_ext": ".jpg", "file_size": 844678.0, "mtime": "2002-11-09T16:17:10+00:00", "mtime_ts": 1036858630.0, "ctime": "2002-11-09T16:17:10+00:00", "sha256_file": "a57f754f27d10dd11a28e130974c900a66937fbeeaf458faf4f0e70f391928a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 17:17:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4788", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 17:17:11", "EXIF DateTimeDigitized": "2002:11:09 17:17:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000093", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b1926d1b3edcca3f368caaf46712704d7cfdc53ee26a750a76540bf1847111ea", "phash": "afd0d8adc3f1108e", "dhash": "d464e6cb43636361", "phash_int": -5.777880081088049e+18, "collected_at": "2026-05-22T04:30:48.889542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0094_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0094_IMG.JPG", "file_name": "100-0094_IMG.JPG", "file_stem": "100-0094_IMG", "file_ext": ".jpg", "file_size": 950107.0, "mtime": "2002-11-09T16:17:16+00:00", "mtime_ts": 1036858636.0, "ctime": "2002-11-09T16:17:16+00:00", "sha256_file": "33665fb78ce96dd4cf5ab5ea0d36b205ecee40e1322fcb6885de08be13154a26", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 17:17:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5670", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 17:17:18", "EXIF DateTimeDigitized": "2002:11:09 17:17:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5078561344812ca031b8defa9245a68b8954ead596c6fe8d42440278824430d", "phash": "8ebb3144c6752daa", "dhash": "7c797bece4a6a6a5", "phash_int": -8.161875728221787e+18, "collected_at": "2026-05-22T04:30:48.912541+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0095_IMG.JPG", "file_name": "100-0095_IMG.JPG", "file_stem": "100-0095_IMG", "file_ext": ".jpg", "file_size": 806929.0, "mtime": "2002-11-09T17:02:20+00:00", "mtime_ts": 1036861340.0, "ctime": "2002-11-09T17:02:20+00:00", "sha256_file": "3361389b8dbaf12a05efde2104654a339be7cc144b0d85ec9f3c334872b3a60c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:02:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:02:21", "EXIF DateTimeDigitized": "2002:11:09 18:02:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000095", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac4f634c905707841e0cefcd9c85c914bb5bf4e14775573dec8d63afbd10a010", "phash": "d32c3bc2608f9d1d", "dhash": "539972e6c4e86959", "phash_int": -3.230141126701769e+18, "collected_at": "2026-05-22T04:30:48.941697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0096_IMG.JPG", "file_name": "100-0096_IMG.JPG", "file_stem": "100-0096_IMG", "file_ext": ".jpg", "file_size": 836102.0, "mtime": "2002-11-09T17:03:34+00:00", "mtime_ts": 1036861414.0, "ctime": "2002-11-09T17:03:34+00:00", "sha256_file": "e160d86d80998cae0f06101aed50c28bdb0c31a791683e1274ff62214e27de60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:03:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4344", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:03:35", "EXIF DateTimeDigitized": "2002:11:09 18:03:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2429/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000096", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2429"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04277eeac8e99280cc4a33a6fe5dd0bc5e725a99761f933a99137db761c5f9dc", "phash": "8e6a31caa55aba65", "dhash": "9994b9f4e469b0ce", "phash_int": -8.184674626365113e+18, "collected_at": "2026-05-22T04:30:49.026011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0097_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0097_IMG.JPG", "file_name": "100-0097_IMG.JPG", "file_stem": "100-0097_IMG", "file_ext": ".jpg", "file_size": 578745.0, "mtime": "2002-11-09T17:05:22+00:00", "mtime_ts": 1036861522.0, "ctime": "2002-11-09T17:05:22+00:00", "sha256_file": "e4a94738be95ff4437ed8c1be6a1f62fb4d96289f2f8320584f58421bff88186", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:05:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4018", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:05:24", "EXIF DateTimeDigitized": "2002:11:09 18:05:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "47/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000097", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "470"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f15de8ebe098356059ff75ffcc0ec2ce03efba48276ff7e0974803efdfbabde8", "phash": "cd93726633663166", "dhash": "b2b2f2f2b2b22170", "phash_int": -3.633434691083292e+18, "collected_at": "2026-05-22T04:30:49.031008+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0098_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0098_IMG.JPG", "file_name": "100-0098_IMG.JPG", "file_stem": "100-0098_IMG", "file_ext": ".jpg", "file_size": 1124302.0, "mtime": "2002-11-09T17:10:36+00:00", "mtime_ts": 1036861836.0, "ctime": "2002-11-09T17:10:36+00:00", "sha256_file": "6ca4c7caa8acf8802189a7293357aebc1d6aaa1d7620ac062ab34116bf15646b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:10:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6573", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:10:38", "EXIF DateTimeDigitized": "2002:11:09 18:10:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000098", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1f8c4be5b8b4fa2102924261601df5a2da62716d25b88103a56be051787633f", "phash": "d6cd4036c8b9c33e", "dhash": "a1e4683a284829a1", "phash_int": -2.9686459753272596e+18, "collected_at": "2026-05-22T04:30:49.127014+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0099_IMG.JPG", "file_name": "100-0099_IMG.JPG", "file_stem": "100-0099_IMG", "file_ext": ".jpg", "file_size": 886268.0, "mtime": "2002-11-09T17:12:22+00:00", "mtime_ts": 1036861942.0, "ctime": "2002-11-09T17:12:22+00:00", "sha256_file": "30e48d11cdcf6940aeb9f66c5640885ead852e49977638e28e24c9f35985792e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:12:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:12:23", "EXIF DateTimeDigitized": "2002:11:09 18:12:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000099", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5505"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a58e99be3a19da83bade5360d6c8eec73a78529b4ac212d4451f1afa676bc49d", "phash": "d47a674c9c936493", "dhash": "e0e2e4a8b0a448ce", "phash_int": -3.1360806117680486e+18, "collected_at": "2026-05-22T04:30:49.129020+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\100-0100_IMG.JPG", "file_name": "100-0100_IMG.JPG", "file_stem": "100-0100_IMG", "file_ext": ".jpg", "file_size": 1005824.0, "mtime": "2002-11-09T17:15:02+00:00", "mtime_ts": 1036862102.0, "ctime": "2002-11-09T17:15:02+00:00", "sha256_file": "1e06bdcfe3e04e129cbf2131df5409f01cbdafff990275356d8863704f90204b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:15:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5873", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:15:04", "EXIF DateTimeDigitized": "2002:11:09 18:15:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000100", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65477", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "200", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa7a6f451b0e56ac53842b485a46a071f5eaef229020bff889f3990df05f6d6f", "phash": "83a138973db993c3", "dhash": "9e87c1f3e8e8b1b1", "phash_int": -8.961819561263787e+18, "collected_at": "2026-05-22T04:30:49.231344+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0101_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0101_IMG.JPG", "file_name": "101-0101_IMG.JPG", "file_stem": "101-0101_IMG", "file_ext": ".jpg", "file_size": 962341.0, "mtime": "2002-11-09T17:16:16+00:00", "mtime_ts": 1036862176.0, "ctime": "2002-11-09T17:16:16+00:00", "sha256_file": "21539b4468f8838e8ca74f164e8bd7deb23dadb5989ddbd05b18a1602dfb51a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:16:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5434", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:16:17", "EXIF DateTimeDigitized": "2002:11:09 18:16:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010101", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65462", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f70c45a7441fdcf571f8eb6780f5431f0264a167a4ea5bcd464fa838706f4646", "phash": "9db5634a5ba498a5", "dhash": "185616363030643a", "phash_int": -7.082645667953994e+18, "collected_at": "2026-05-22T04:30:49.244347+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0102_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0102_IMG.JPG", "file_name": "101-0102_IMG.JPG", "file_stem": "101-0102_IMG", "file_ext": ".jpg", "file_size": 550675.0, "mtime": "2002-11-09T17:16:24+00:00", "mtime_ts": 1036862184.0, "ctime": "2002-11-09T17:16:24+00:00", "sha256_file": "3f2373e955c8996f085bd0929eee706510fe65f124c82a5526e0e55070b88eca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:16:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3844", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:16:26", "EXIF DateTimeDigitized": "2002:11:09 18:16:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010102", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65463", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "28d37a856dcd255367bcc57e5069d96edb554504a177268e7ae013b3bf3a7ee0", "phash": "999193db59646c2e", "dhash": "5859153632324e1a", "phash_int": -7.380955743976658e+18, "collected_at": "2026-05-22T04:30:49.276349+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0103_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0103_IMG.JPG", "file_name": "101-0103_IMG.JPG", "file_stem": "101-0103_IMG", "file_ext": ".jpg", "file_size": 856139.0, "mtime": "2002-11-09T17:17:52+00:00", "mtime_ts": 1036862272.0, "ctime": "2002-11-09T17:17:52+00:00", "sha256_file": "ff6439fb5ddbd44a211bffae030abf231f00e4a4dca1627603bed724315b87fd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:17:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4382", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:17:54", "EXIF DateTimeDigitized": "2002:11:09 18:17:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010103", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "34", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fea2285d3a826e58f5f6aaa4af13fc5db2a322d35d7de2018ba030088d9c670b", "phash": "99626ce55cb2cd0d", "dhash": "2459d95878fabab2", "phash_int": -7.394227905830401e+18, "collected_at": "2026-05-22T04:30:49.291350+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0104_IMG.JPG", "file_name": "101-0104_IMG.JPG", "file_stem": "101-0104_IMG", "file_ext": ".jpg", "file_size": 833614.0, "mtime": "2002-11-09T17:18:56+00:00", "mtime_ts": 1036862336.0, "ctime": "2002-11-09T17:18:56+00:00", "sha256_file": "ff62529d177fec3302b6953b3001973530bbcb38b9c591ac9320c7b3ba3d23bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:18:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4233", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:18:58", "EXIF DateTimeDigitized": "2002:11:09 18:18:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010104", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26015f4d56d79cf412d530569e97879769ad25a6af9ff9221de7ce38ae047367", "phash": "8cc06b61998f7f70", "dhash": "f286b0f0f466e777", "phash_int": -8.304519645938876e+18, "collected_at": "2026-05-22T04:30:49.337604+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0105_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0105_IMG.JPG", "file_name": "101-0105_IMG.JPG", "file_stem": "101-0105_IMG", "file_ext": ".jpg", "file_size": 713341.0, "mtime": "2002-11-09T17:20:52+00:00", "mtime_ts": 1036862452.0, "ctime": "2002-11-09T17:20:52+00:00", "sha256_file": "2c13e16d1a4d996b2ee19db93a253096dcdd7c7bba3d6577881b0b15a176026e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:20:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4188", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:20:53", "EXIF DateTimeDigitized": "2002:11:09 18:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "1", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 1079, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010105", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65476", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "32", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "211", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "acdf1f3542535e4fc5162e4fe87f4c602166567b93b73cb54ec41c412b4155b4", "phash": "8c3763794c866d96", "dhash": "d1ec66f47472f4e4", "phash_int": -8.343090412054484e+18, "collected_at": "2026-05-22T04:30:49.349665+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0106_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0106_IMG.JPG", "file_name": "101-0106_IMG.JPG", "file_stem": "101-0106_IMG", "file_ext": ".jpg", "file_size": 646313.0, "mtime": "2002-11-09T17:21:20+00:00", "mtime_ts": 1036862480.0, "ctime": "2002-11-09T17:21:20+00:00", "sha256_file": "28742a95e115a2318cbcf1dcba90ce1c60458ee4b34405994d50b22b450b51b0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:21:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3840", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:21:22", "EXIF DateTimeDigitized": "2002:11:09 18:21:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010106", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3273f061191db8c1cc6917ebf6c066a13cfabc4f80d6ed6a7139903ee803c00c", "phash": "8e6b25c9936c26cb", "dhash": "e4e264f5f0f4e4f4", "phash_int": -8.184406350123751e+18, "collected_at": "2026-05-22T04:30:49.380835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0107_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0107_IMG.JPG", "file_name": "101-0107_IMG.JPG", "file_stem": "101-0107_IMG", "file_ext": ".jpg", "file_size": 695942.0, "mtime": "2002-11-09T17:21:34+00:00", "mtime_ts": 1036862494.0, "ctime": "2002-11-09T17:21:34+00:00", "sha256_file": "09a7adbf6af6b8f7d03ded9d25c8816cdaf507adf5f71e3b4134a15077c5e288", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:21:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4028", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:21:36", "EXIF DateTimeDigitized": "2002:11:09 18:21:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010107", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ae3473b9f6ff8028f11b960dfeab009df885ed345516d289a7d1156df0d1c40", "phash": "945f6aa97d5282a6", "dhash": "b0bcd4d4d6debcb6", "phash_int": -7.755362757124128e+18, "collected_at": "2026-05-22T04:30:49.404925+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0108_IMG.JPG", "file_name": "101-0108_IMG.JPG", "file_stem": "101-0108_IMG", "file_ext": ".jpg", "file_size": 1004369.0, "mtime": "2002-11-09T17:22:22+00:00", "mtime_ts": 1036862542.0, "ctime": "2002-11-09T17:22:22+00:00", "sha256_file": "64f8f0e9ccf76036b1c38bea195f71d2311ff60254d9ac2e0ceebab697dfcbad", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:22:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5185", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:22:24", "EXIF DateTimeDigitized": "2002:11:09 18:22:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2f49a314c28a316f6717283da861f0a54cbc3a412ad6c462abfc07c347fb1c9", "phash": "93cd6b949c62e368", "dhash": "f4f2d1f43cdcdd38", "phash_int": -7.796457093885402e+18, "collected_at": "2026-05-22T04:30:49.437927+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0109_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0109_IMG.JPG", "file_name": "101-0109_IMG.JPG", "file_stem": "101-0109_IMG", "file_ext": ".jpg", "file_size": 949919.0, "mtime": "2002-11-09T17:23:22+00:00", "mtime_ts": 1036862602.0, "ctime": "2002-11-09T17:23:22+00:00", "sha256_file": "92a397d110f6ac62d8ae0bf022a9e56163f588d4701a2cf92d284626fccdba66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:23:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4981", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:23:24", "EXIF DateTimeDigitized": "2002:11:09 18:23:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010109", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c182a437b4b70e1c30cdbe7348a0ba5423be47da6db9820d445d5530b39efc2", "phash": "8f643f826f11d18d", "dhash": "e6e6f2e1e1e86979", "phash_int": -8.114290799173054e+18, "collected_at": "2026-05-22T04:30:49.455927+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0110_IMG.JPG", "file_name": "101-0110_IMG.JPG", "file_stem": "101-0110_IMG", "file_ext": ".jpg", "file_size": 806067.0, "mtime": "2002-11-09T17:23:58+00:00", "mtime_ts": 1036862638.0, "ctime": "2002-11-09T17:23:58+00:00", "sha256_file": "fa6aa6dba49102efadeefcbdd4b7f3d44e2fd29541827fc7dfb04ddabf025212", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:23:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4130", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:23:59", "EXIF DateTimeDigitized": "2002:11:09 18:23:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e80b81f5930a0e751503ff35188bf4c945644c82ad818850585cfc4c5699e32f", "phash": "958c6b726e9886b6", "dhash": "b0f2f6f4bc9c98d8", "phash_int": -7.670637926092863e+18, "collected_at": "2026-05-22T04:30:49.500928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0111_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0111_IMG.JPG", "file_name": "101-0111_IMG.JPG", "file_stem": "101-0111_IMG", "file_ext": ".jpg", "file_size": 1012912.0, "mtime": "2002-11-09T17:26:12+00:00", "mtime_ts": 1036862772.0, "ctime": "2002-11-09T17:26:12+00:00", "sha256_file": "12a1bfc40b292b1d36ccb94b12d4d5ee29cc3e5f58d0ab56ca471218a59c45a2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:26:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5729", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:26:14", "EXIF DateTimeDigitized": "2002:11:09 18:26:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010111", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "43", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65525", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d5ed7521a27878c61ccefc88682e7594fadeb83698ff8377f9fa518bb0c7ff4c", "phash": "d5850b0a6934fdf8", "dhash": "f8f2962e2020a8d2", "phash_int": -3.061028232385725e+18, "collected_at": "2026-05-22T04:30:49.519929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0112_IMG.JPG", "file_name": "101-0112_IMG.JPG", "file_stem": "101-0112_IMG", "file_ext": ".jpg", "file_size": 839069.0, "mtime": "2002-11-09T17:27:34+00:00", "mtime_ts": 1036862854.0, "ctime": "2002-11-09T17:27:34+00:00", "sha256_file": "7fbacb22765b6850181e85a1ece8c89421cea74ebc58d34b8987233708b3bdc9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:27:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3769", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:27:35", "EXIF DateTimeDigitized": "2002:11:09 18:27:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b51af1ef152c64dc619dec8c358b70d736a75b02e8ebbb559ea23b1a8b3547ba", "phash": "d59d874a1c3e48a7", "dhash": "f0c4c6228281c8e4", "phash_int": -3.054136219916155e+18, "collected_at": "2026-05-22T04:30:49.610934+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0113_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0113_IMG.JPG", "file_name": "101-0113_IMG.JPG", "file_stem": "101-0113_IMG", "file_ext": ".jpg", "file_size": 878576.0, "mtime": "2002-11-09T17:29:14+00:00", "mtime_ts": 1036862954.0, "ctime": "2002-11-09T17:29:14+00:00", "sha256_file": "07a6fdf6ab66b0edc2df01de654d917322b74e2208e8e12f2d1be1e4a974f45a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:29:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4839", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:29:15", "EXIF DateTimeDigitized": "2002:11:09 18:29:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010113", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77d1547c59a561c59c7a5b08b20f34f2909dc72f0311eacb02885ab6f8eaca3e", "phash": "a0865f34cb59743b", "dhash": "f8ecafdddcac9852", "phash_int": -6.879706700407279e+18, "collected_at": "2026-05-22T04:30:49.627932+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0114_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0114_IMG.JPG", "file_name": "101-0114_IMG.JPG", "file_stem": "101-0114_IMG", "file_ext": ".jpg", "file_size": 1265177.0, "mtime": "2002-11-11T06:10:42+00:00", "mtime_ts": 1036995042.0, "ctime": "2002-11-11T06:10:42+00:00", "sha256_file": "7b499747ec16c85374e9e930d296d43ec22e43aea5c8ca299caf0b6df2094b1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:38:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5753", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:11:09 18:38:21", "EXIF DateTimeDigitized": "2002:11:09 18:38:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1010114", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86226813a35ec67463ee57274240bd1c6d7b1bcfeae9d34fa912d3b2e21d16ae", "phash": "c19463ef36c24d35", "dhash": "f0f0b2b87ad3c3cb", "phash_int": -4.4978602487692457e+18, "collected_at": "2026-05-22T04:30:49.695910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0115_IMG.JPG", "file_name": "101-0115_IMG.JPG", "file_stem": "101-0115_IMG", "file_ext": ".jpg", "file_size": 624652.0, "mtime": "2002-11-09T17:39:30+00:00", "mtime_ts": 1036863570.0, "ctime": "2002-11-09T17:39:30+00:00", "sha256_file": "e83b33b96fa270cb6aadb9b2c1bea5fb15ead80cd345d7df3a514614489a1f27", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:39:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3461", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:39:32", "EXIF DateTimeDigitized": "2002:11:09 18:39:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81d90929166563bca8af04b9b4a18eb4c335abfe08a730bab1601384a8fc7640", "phash": "dc1a63619c96c9da", "dhash": "c2d1b838b0d2d0e0", "phash_int": -2.5866457650808233e+18, "collected_at": "2026-05-22T04:30:49.699008+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0116_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0116_IMG.JPG", "file_name": "101-0116_IMG.JPG", "file_stem": "101-0116_IMG", "file_ext": ".jpg", "file_size": 277160.0, "mtime": "2002-11-09T18:04:30+00:00", "mtime_ts": 1036865070.0, "ctime": "2002-11-09T18:04:30+00:00", "sha256_file": "d0dbc73eb30465f4f416ed7b67f20dfc4c1d371257ae8f81422b67a922c291a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 19:04:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1530", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 19:04:32", "EXIF DateTimeDigitized": "2002:11:09 19:04:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010116", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65387", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9318f86f67eb3649d2adb88b93ea03dcd631d9a5deb50f3697fa040c7689833", "phash": "8db13286b1b596b3", "dhash": "7c77b3b26a612202", "phash_int": -8.236746689395452e+18, "collected_at": "2026-05-22T04:30:49.746011+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0117_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0117_IMG.JPG", "file_name": "101-0117_IMG.JPG", "file_stem": "101-0117_IMG", "file_ext": ".jpg", "file_size": 891250.0, "mtime": "2002-11-09T21:59:48+00:00", "mtime_ts": 1036879188.0, "ctime": "2002-11-09T21:59:48+00:00", "sha256_file": "1fe9307062202cffeeb8bbd358a680bbaee5241d61c019801165447519553024", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 22:59:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6351", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 22:59:50", "EXIF DateTimeDigitized": "2002:11:09 22:59:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 350, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010117", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6bc53b1a2afaca9ab03b40b8bbb53858cff52354798c9d389b41d670564f274", "phash": "8d52343353bb345e", "dhash": "c6f3b3f3f1f262e6", "phash_int": -8.263484971218685e+18, "collected_at": "2026-05-22T04:30:49.760010+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0118_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0118_IMG.JPG", "file_name": "101-0118_IMG.JPG", "file_stem": "101-0118_IMG", "file_ext": ".jpg", "file_size": 714225.0, "mtime": "2002-11-09T22:04:50+00:00", "mtime_ts": 1036879490.0, "ctime": "2002-11-09T22:04:50+00:00", "sha256_file": "0c7bce640cea9bc56588678823005f7ade859627667ed866923616836329166c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 23:04:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4255", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 23:04:51", "EXIF DateTimeDigitized": "2002:11:09 23:04:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010118", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0fbc94bdfc54dc75a6fa440c45fb260446b0e0a561857f9991136222d73fcba", "phash": "c96d326667d61a19", "dhash": "ccf3b132f2f0e0c8", "phash_int": -3.9324314842144374e+18, "collected_at": "2026-05-22T04:30:49.855424+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0121_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0121_IMG.JPG", "file_name": "101-0121_IMG.JPG", "file_stem": "101-0121_IMG", "file_ext": ".jpg", "file_size": 1391874.0, "mtime": "2002-11-10T11:35:36+00:00", "mtime_ts": 1036928136.0, "ctime": "2002-11-10T11:35:36+00:00", "sha256_file": "5577679dd0ccb6bd1dd480587e01eb719e00ab4b4e87aa8a8a291664f93ab45d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:35:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5193", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:35:37", "EXIF DateTimeDigitized": "2002:11:10 12:35:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010121", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "189", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a2121d2274b16624b08cb8bfec5a32794c915b0839188b89d5a8575dda40559", "phash": "c8e8eb3f1514c5c3", "dhash": "8383e3a3e9c8c8f8", "phash_int": -3.9696644153579423e+18, "collected_at": "2026-05-22T04:30:49.873556+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0122_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0122_IMG.JPG", "file_name": "101-0122_IMG.JPG", "file_stem": "101-0122_IMG", "file_ext": ".jpg", "file_size": 1346780.0, "mtime": "2002-11-10T11:35:44+00:00", "mtime_ts": 1036928144.0, "ctime": "2002-11-10T11:35:44+00:00", "sha256_file": "9d20e17105e9224c3a98110d105a7b7172f1bcf5b39a780e8e403435712a609c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:35:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5979", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:35:45", "EXIF DateTimeDigitized": "2002:11:10 12:35:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010122", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fb9fcb6d3afc1167e90711482b15a181a6641af22e119d4a96e35b6e976538ac", "phash": "c38c98b397333473", "dhash": "f3e3e3cac8cac8c8", "phash_int": -4.355938842470829e+18, "collected_at": "2026-05-22T04:30:49.904601+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0123_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0123_IMG.JPG", "file_name": "101-0123_IMG.JPG", "file_stem": "101-0123_IMG", "file_ext": ".jpg", "file_size": 1481350.0, "mtime": "2002-11-10T11:38:34+00:00", "mtime_ts": 1036928314.0, "ctime": "2002-11-10T11:38:34+00:00", "sha256_file": "bb91db17c70f3f1a6f98330a4cec603433cd3a70017605dcec047b25a1634c18", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:38:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5722", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:38:36", "EXIF DateTimeDigitized": "2002:11:10 12:38:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2361/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010123", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4722"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "094d8f4f3d9c78c31bac5c21d40c7015465915a59a2bafd687c73697f1498839", "phash": "9535b1f6d49139c2", "dhash": "1ed6d2e46555e0f0", "phash_int": -7.695048714606266e+18, "collected_at": "2026-05-22T04:30:49.932828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0124_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0124_IMG.JPG", "file_name": "101-0124_IMG.JPG", "file_stem": "101-0124_IMG", "file_ext": ".jpg", "file_size": 595641.0, "mtime": "2002-11-10T11:41:18+00:00", "mtime_ts": 1036928478.0, "ctime": "2002-11-10T11:41:18+00:00", "sha256_file": "50ea9e1d25b1fd59e3b75ffa8b22e0b370b467d9e4f8e6fd777d1fd6e743ebb9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:41:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5492", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:41:19", "EXIF DateTimeDigitized": "2002:11:10 12:41:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3887/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "5679999/280", "EXIF FocalPlaneYResolution": "4259999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[39, 138, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010124", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "159", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "220", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3887"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "400c081ca133d8857d2a915696ff194b976d749135a799a4f552139a2ca33ab6", "phash": "f8f88d487219ed70", "dhash": "1085020b8de3b14a", "phash_int": -5.0649961578771725e+17, "collected_at": "2026-05-22T04:30:49.954833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0125_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0125_IMG.JPG", "file_name": "101-0125_IMG.JPG", "file_stem": "101-0125_IMG", "file_ext": ".jpg", "file_size": 456601.0, "mtime": "2002-11-10T11:41:30+00:00", "mtime_ts": 1036928490.0, "ctime": "2002-11-10T11:41:30+00:00", "sha256_file": "e9cacea05f776b9ce1a1c781501bebf181cf61ba1fbb4ecf7e8261589bed931b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:41:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4318", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:41:32", "EXIF DateTimeDigitized": "2002:11:10 12:41:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "949/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "5679999/280", "EXIF FocalPlaneYResolution": "4259999/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 88, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010125", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "1016", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "168", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1898"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "478768bbfc1fc348a38b6798358be35a866afbd5212713bc792f4e487a23fcef", "phash": "e797c93224f18d61", "dhash": "4e4b520e8e4b52d2", "phash_int": -1.7587159122595315e+18, "collected_at": "2026-05-22T04:30:50.019126+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0126_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0126_IMG.JPG", "file_name": "101-0126_IMG.JPG", "file_stem": "101-0126_IMG", "file_ext": ".jpg", "file_size": 1229230.0, "mtime": "2002-11-10T11:57:22+00:00", "mtime_ts": 1036929442.0, "ctime": "2002-11-10T11:57:22+00:00", "sha256_file": "7f955dcc244b4a16ee2b68d59a7b30d4cda652c94e8b99ef8dcb02f9d352fefe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:57:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5726", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:57:23", "EXIF DateTimeDigitized": "2002:11:10 12:57:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/10", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010126", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "133", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3100"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "511589fed83f246e73bcf1032dcaa5287f40c14b0b3c787ec289116344787da2", "phash": "934e38f74d0d15a6", "dhash": "65bdd87348e88db1", "phash_int": -7.832260067149934e+18, "collected_at": "2026-05-22T04:30:50.033198+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0128_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0128_IMG.JPG", "file_name": "101-0128_IMG.JPG", "file_stem": "101-0128_IMG", "file_ext": ".jpg", "file_size": 629917.0, "mtime": "2002-11-10T11:59:34+00:00", "mtime_ts": 1036929574.0, "ctime": "2002-11-10T11:59:34+00:00", "sha256_file": "9dcb5154eb80b234afc163e94513a622db60ef21815ffa4d95f48d92fcc42147", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:59:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3169", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:59:35", "EXIF DateTimeDigitized": "2002:11:10 12:59:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "177/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010128", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "885"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "88083843d7375fdf2d24b02c2866f2e10a8ab5d55ef4acce42460fdd0f37a29c", "phash": "e62433191f8cde1e", "dhash": "ce8e06060686c64e", "phash_int": -1.8633081628280182e+18, "collected_at": "2026-05-22T04:30:50.116493+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0127_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0127_IMG.JPG", "file_name": "101-0127_IMG.JPG", "file_stem": "101-0127_IMG", "file_ext": ".jpg", "file_size": 1498244.0, "mtime": "2002-11-10T11:57:32+00:00", "mtime_ts": 1036929452.0, "ctime": "2002-11-10T11:57:32+00:00", "sha256_file": "80bf590e118b597f7e79bf723c975d22fd7867f0214e7e8e1b4253bd3adcf0de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 12:57:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7991", "EXIF ExposureTime": "1/13", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 12:57:34", "EXIF DateTimeDigitized": "2002:11:10 12:57:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2919/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010127", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2919"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "518e329f6de1c7e2264eaeb9f712ceeda6e624631a32b432bf8b8d0ece7c21ae", "phash": "922e39664d2d3d66", "dhash": "e7bdd8f16ce8cd93", "phash_int": -7.913324383699125e+18, "collected_at": "2026-05-22T04:30:50.130763+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0129_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0129_IMG.JPG", "file_name": "101-0129_IMG.JPG", "file_stem": "101-0129_IMG", "file_ext": ".jpg", "file_size": 1154164.0, "mtime": "2002-11-10T12:10:44+00:00", "mtime_ts": 1036930244.0, "ctime": "2002-11-10T12:10:44+00:00", "sha256_file": "95481de8da1e9bede48a55577d2ca42d78e6fcf16ef738057b5c67f349bdae3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 13:10:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4696", "EXIF ExposureTime": "1/40", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 13:10:46", "EXIF DateTimeDigitized": "2002:11:10 13:10:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1779/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010129", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3558"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a0acfadef4f2f9c3a9965d78e0fb2ee014a662df77d97018d40be7dd4ac42c7", "phash": "8c0c4cccad87c7af", "dhash": "e6316dd617a52023", "phash_int": -8.355218766710716e+18, "collected_at": "2026-05-22T04:30:50.187995+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0130_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0130_IMG.JPG", "file_name": "101-0130_IMG.JPG", "file_stem": "101-0130_IMG", "file_ext": ".jpg", "file_size": 648979.0, "mtime": "2002-11-10T12:12:22+00:00", "mtime_ts": 1036930342.0, "ctime": "2002-11-10T12:12:22+00:00", "sha256_file": "c0edc2f13d6d1db8e62a7a7041c8b7500f330293d2a99d16f466d20772c0449c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 13:12:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4139", "EXIF ExposureTime": "1/125", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 13:12:23", "EXIF DateTimeDigitized": "2002:11:10 13:12:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "383/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010130", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "216", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1532"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0261f37ec10bf689f1c2e699f602f9027fd3b95754d13213f39850b06734d36", "phash": "c99971ae89d15a3c", "dhash": "921631f2732b1084", "phash_int": -3.9199770061988593e+18, "collected_at": "2026-05-22T04:30:50.192142+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0095_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0095_IMG.JPG", "file_name": "Rotation of 100-0095_IMG.JPG", "file_stem": "Rotation of 100-0095_IMG", "file_ext": ".jpg", "file_size": 805587.0, "mtime": "2002-11-30T09:14:48+00:00", "mtime_ts": 1038647688.0, "ctime": "2002-11-30T09:14:48+00:00", "sha256_file": "5970236a08fa9d7f1354c8de75ec71d5a097a1fdf172bfae57e8d39b68d608c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:02:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4208", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:02:21", "EXIF DateTimeDigitized": "2002:11:09 18:02:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000095", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "11", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9660b122afe413f3641b5f9b606cae46f9851e767d038fc3c26f7a07e124ffd", "phash": "c38d3df63212e0f2", "dhash": "c2f2f2d18dc44948", "phash_int": -4.3557571369860547e+18, "collected_at": "2026-05-22T04:30:50.273145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0131_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\101-0131_IMG.JPG", "file_name": "101-0131_IMG.JPG", "file_stem": "101-0131_IMG", "file_ext": ".jpg", "file_size": 706714.0, "mtime": "2002-11-10T12:22:50+00:00", "mtime_ts": 1036930970.0, "ctime": "2002-11-10T12:22:50+00:00", "sha256_file": "7d0a1183f8971bed5a6f33156bce69a26b005136360e63e0c82f53d8030eb073", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:10 13:22:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2978", "EXIF ExposureTime": "1/100", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:10 13:22:52", "EXIF DateTimeDigitized": "2002:11:10 13:22:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5019/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1010131", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5019"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "badcf5113e66861c313326e01d9169ebd54d8642e123a39e991570d2dcad2456", "phash": "c9daa4b6d44b0f23", "dhash": "f088ab20c070c2b2", "phash_int": -3.901625022010421e+18, "collected_at": "2026-05-22T04:30:50.289145+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0096_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0096_IMG.JPG", "file_name": "Rotation of 100-0096_IMG.JPG", "file_stem": "Rotation of 100-0096_IMG", "file_ext": ".jpg", "file_size": 835455.0, "mtime": "2002-11-30T09:24:32+00:00", "mtime_ts": 1038648272.0, "ctime": "2002-11-30T09:24:32+00:00", "sha256_file": "d2f4f57e6d4257e57b96c47e506a7e005266da174c34f441b8a69c4d3186fb98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:03:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4027", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:03:35", "EXIF DateTimeDigitized": "2002:11:09 18:03:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2429/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000096", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "7", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20459bab2fd6cf7b53dbb5cd2dc47048a06f7ada9e9c8a1125da98ef266c4b9c", "phash": "cf003e7381dc837d", "dhash": "ce36e3c1cb4b6241", "phash_int": -3.530753442037595e+18, "collected_at": "2026-05-22T04:30:50.319148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0099_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0099_IMG.JPG", "file_name": "Rotation of 100-0099_IMG.JPG", "file_stem": "Rotation of 100-0099_IMG", "file_ext": ".jpg", "file_size": 885660.0, "mtime": "2002-11-30T09:15:50+00:00", "mtime_ts": 1038647750.0, "ctime": "2002-11-30T09:15:50+00:00", "sha256_file": "d238bd48b6f59a0edc9f57fee939f8ebb5e9917522f286471f0ca939bc9e3afc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:12:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4691", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:12:23", "EXIF DateTimeDigitized": "2002:11:09 18:12:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1101/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000099", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "21", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cdc9e2f29daa1eaf9ef27c8ec23a94de3e23b6d5a770fcbde15084f8bbdceae", "phash": "d8a737980def3070", "dhash": "68493971b0381030", "phash_int": -2.835236314198102e+18, "collected_at": "2026-05-22T04:30:50.370151+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0100_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 100-0100_IMG.JPG", "file_name": "Rotation of 100-0100_IMG.JPG", "file_stem": "Rotation of 100-0100_IMG", "file_ext": ".jpg", "file_size": 1003142.0, "mtime": "2002-11-30T09:16:02+00:00", "mtime_ts": 1038647762.0, "ctime": "2002-11-30T09:16:02+00:00", "sha256_file": "7831faaf0d001a1ca00bb6e531b277b59cf7723ba3f4edadad747f95c4f262bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:15:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4757", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:15:04", "EXIF DateTimeDigitized": "2002:11:09 18:15:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000100", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "7", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8383bc25001f2c856a91ba64050982daa88b80425bec9c3fc8b5112e4101909", "phash": "82543d6b794d470f", "dhash": "16acecc4c9e9e3fb", "phash_int": -9.055545418929322e+18, "collected_at": "2026-05-22T04:30:50.384150+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0104_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0104_IMG.JPG", "file_name": "Rotation of 101-0104_IMG.JPG", "file_stem": "Rotation of 101-0104_IMG", "file_ext": ".jpg", "file_size": 833446.0, "mtime": "2002-11-30T09:17:18+00:00", "mtime_ts": 1038647838.0, "ctime": "2002-11-30T09:17:18+00:00", "sha256_file": "bd6ee8488480d2f7c9a4eed8617f3bfd5495fe3781319cbcd53e45baab86a7d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:18:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "3553", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:18:58", "EXIF DateTimeDigitized": "2002:11:09 18:18:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010104", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "4", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f00a408d1afbaf9fc9a0e5d7192c7e4f852a91a301f7520c99032e1e6b463f43", "phash": "9926664efb53432a", "dhash": "1e36f3b3b3b3b2b2", "phash_int": -7.411123647381552e+18, "collected_at": "2026-05-22T04:30:50.420475+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0108_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0108_IMG.JPG", "file_name": "Rotation of 101-0108_IMG.JPG", "file_stem": "Rotation of 101-0108_IMG", "file_ext": ".jpg", "file_size": 1003013.0, "mtime": "2002-11-30T09:18:14+00:00", "mtime_ts": 1038647894.0, "ctime": "2002-11-30T09:18:14+00:00", "sha256_file": "2541410fd608b66c769d79a8739a1de5e74cb230e8d0c67eb9e84d5f8836e804", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:22:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4334", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:22:24", "EXIF DateTimeDigitized": "2002:11:09 18:22:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010108", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "23", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccfc14f39abcb186128b0eedf39e6f388a248bd09538fdd17d5f53991aaacef0", "phash": "8f3272cd3c0c73a5", "dhash": "30dc58fae2c3e2e2", "phash_int": -8.128308151649013e+18, "collected_at": "2026-05-22T04:30:50.442488+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0110_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0110_IMG.JPG", "file_name": "Rotation of 101-0110_IMG.JPG", "file_stem": "Rotation of 101-0110_IMG", "file_ext": ".jpg", "file_size": 804909.0, "mtime": "2002-11-30T09:18:50+00:00", "mtime_ts": 1038647930.0, "ctime": "2002-11-30T09:18:50+00:00", "sha256_file": "293505b74c86e29130b64081664bfeb5650f57b16e885ae414e2b06e6f6f94be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:23:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4025", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:23:59", "EXIF DateTimeDigitized": "2002:11:09 18:23:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010110", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "40", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d66dd9eafb00eaa0c2ecfebfc355cbb744b55c632ebc1c165361d2a0a135a391", "phash": "926d64c0399e6ed5", "dhash": "b5b06878d8e0f8bc", "phash_int": -7.895543794947428e+18, "collected_at": "2026-05-22T04:30:50.490479+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0112_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0112_IMG.JPG", "file_name": "Rotation of 101-0112_IMG.JPG", "file_stem": "Rotation of 101-0112_IMG", "file_ext": ".jpg", "file_size": 836075.0, "mtime": "2002-11-30T09:19:20+00:00", "mtime_ts": 1038647960.0, "ctime": "2002-11-30T09:19:20+00:00", "sha256_file": "cfd59f74aee3e5cb04f7a831ac52427784d5076589d5ab2e4add4392a13cdee1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:27:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "3343", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:27:35", "EXIF DateTimeDigitized": "2002:11:09 18:27:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010112", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "63", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "784c2245747e56e160e84bead863f951e992349eab2ccc4db6b5e350880d4182", "phash": "b4c7509f0bbc60b6", "dhash": "f0ec84266a363434", "phash_int": -5.420274982490186e+18, "collected_at": "2026-05-22T04:30:50.524499+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0115_IMG.JPG", "file_path_relative": "HD02#FOTKY\\2002\\Dovolená\\Londýn\\Rotation of 101-0115_IMG.JPG", "file_name": "Rotation of 101-0115_IMG.JPG", "file_stem": "Rotation of 101-0115_IMG", "file_ext": ".jpg", "file_size": 623935.0, "mtime": "2002-11-30T09:20:28+00:00", "mtime_ts": 1038648028.0, "ctime": "2002-11-30T09:20:28+00:00", "sha256_file": "bb556743daec4b426378c21a64778569a27b7635a28c3f0a1bf06fe6eef37c3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:09 18:39:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "3280", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:09 18:39:32", "EXIF DateTimeDigitized": "2002:11:09 18:39:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1010115", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "47", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3bc0c4be135ab29d6368f7d6629dbd90dfec9a4f4b565a1ffd6a929417e3e48c", "phash": "da6665989cd93067", "dhash": "c0c00931b0b0d0c0", "phash_int": -2.709366419675861e+18, "collected_at": "2026-05-22T04:30:50.546773+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 16-04-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 16-04-05 CanonPowerShotS40.jpg", "file_name": "2003-09-14 16-04-05 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 16-04-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1635496.0, "mtime": "2003-09-14T14:04:05+00:00", "mtime_ts": 1063548245.0, "ctime": "2024-12-21T07:57:47.484927+00:00", "sha256_file": "7f472fc5a86c5aea655b975334b8bbb03ae55124026d693cbf478a8bb0fe0c4b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 16:04:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4286", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 16:04:05", "EXIF DateTimeDigitized": "2003:09:14 16:04:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f89550b67dd5a91285c2f4a238054b3d175b2ca889c0d88940a5a14b9608d239", "phash": "95dc6f63490e4e49", "dhash": "f0bcf8f8d8dcdc5c", "phash_int": -7.648115594963825e+18, "collected_at": "2026-05-22T04:30:50.657307+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-25-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-25-44 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-25-44 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-25-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1115683.0, "mtime": "2003-04-19T16:25:42+00:00", "mtime_ts": 1050769542.0, "ctime": "2024-12-21T07:57:45.485863+00:00", "sha256_file": "59711f4aed31d8f376d0ad25276c991825ff15533a3b012d8d24faa6928c1b99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:25:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3392", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:25:44", "EXIF DateTimeDigitized": "2003:04:19 17:25:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "193", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "784128c8356dc42739de34effaf74f78baa7bb61358251764293c1c6af846a09", "phash": "d8cc2f73b21cccc4", "dhash": "e8f0b2b08c8c4c9c", "phash_int": -2.8248306923121674e+18, "collected_at": "2026-05-22T04:30:50.665537+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-14 23-13-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-14 23-13-12 CanonPowerShotA40.jpg", "file_name": "2003-02-14 23-13-12 CanonPowerShotA40.jpg", "file_stem": "2003-02-14 23-13-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 504086.0, "mtime": "2003-02-14T21:13:10+00:00", "mtime_ts": 1045257190.0, "ctime": "2024-12-21T07:57:38.438635+00:00", "sha256_file": "1d8e745177862a32bf2badfb7113fdc452b0adb14802ba7da636ffa38d6f7465", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:14 23:13:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4943", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:14 23:13:12", "EXIF DateTimeDigitized": "2003:02:14 23:13:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2151, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181806", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "134", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d50c14b37f8107319d140e3299f1dd854923ac3cd3309d9c91327773e0f4dcb", "phash": "c4d239a59894b6eb", "dhash": "f889c8f4c4e6b6d3", "phash_int": -4.2642825137741686e+18, "collected_at": "2026-05-22T04:30:50.723617+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-00-55 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-00-55 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-00-55 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-00-55 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 396640.0, "mtime": "2003-03-30T10:02:00+00:00", "mtime_ts": 1049018520.0, "ctime": "2024-12-21T07:57:40.341697+00:00", "sha256_file": "b191d8d9d62819bbd7899e16819f66539e8d04b5d43d4bbfff9629a031bf9de5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:00:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4744", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:00:55", "EXIF DateTimeDigitized": "2003:03:06 19:00:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 48, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191955", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "100", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3718"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b089e9f3efe232bbdaa056be2042eedcb1b7b643c5758d7d0d9812f5c1f4f8e", "phash": "a2c485a252731f7f", "dhash": "8c9219999999dbdb", "phash_int": -6.718097811915465e+18, "collected_at": "2026-05-22T04:30:50.775619+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-49-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-49-08 CanonPowerShotS40.jpg", "file_name": "2003-11-29 13-49-08 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 13-49-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1376919.0, "mtime": "2003-11-29T12:49:08+00:00", "mtime_ts": 1070110148.0, "ctime": "2024-12-21T07:57:54.532155+00:00", "sha256_file": "cabbc43287baf0996682abc3d40d0b5e9c1c99fe8bf9f22d54fce3e3d6bdab32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:49:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5589", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 13:49:08", "EXIF DateTimeDigitized": "2003:11:29 13:49:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74212e23dd1a7f803135bb999d3dd95a944da8d5e1886f45ca3a5ab59707fdea", "phash": "c6e0358e4b542e7b", "dhash": "a48484c06965ecca", "phash_int": -4.116231174151197e+18, "collected_at": "2026-05-22T04:30:50.782622+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-15 19-23-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-15 19-23-05 CanonPowerShotS40.jpg", "file_name": "2003-12-15 19-23-05 CanonPowerShotS40.jpg", "file_stem": "2003-12-15 19-23-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1537311.0, "mtime": "2003-12-15T18:23:04+00:00", "mtime_ts": 1071512584.0, "ctime": "2024-12-21T07:57:56.369214+00:00", "sha256_file": "3e1f2eecde4de9a14d243b1cc71e05b6beb311726c5ebe06fa81bab6414f5478", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:15 19:23:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5039", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:15 19:23:05", "EXIF DateTimeDigitized": "2003:12:15 19:23:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "46e7661e6d49da7892448d6f2ddf84d93a56a9edfb25c363c0f6fadcd2cfc1f1", "phash": "d9e73c926ce11c98", "dhash": "b2e8f0e3f1f0b032", "phash_int": -2.745158848269444e+18, "collected_at": "2026-05-22T04:30:50.908208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 15-43-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 15-43-30 CanonPowerShotS40.jpg", "file_name": "2003-04-29 15-43-30 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 15-43-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1704487.0, "mtime": "2003-04-29T14:43:28+00:00", "mtime_ts": 1051627408.0, "ctime": "2024-12-21T07:57:46.243887+00:00", "sha256_file": "b78a0c3e015bb8af0a7b990c400721a56a7b3803dbabfb5dc2c76a400a5ec895", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 15:43:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4770", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 15:43:30", "EXIF DateTimeDigitized": "2003:04:29 15:43:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65480", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "148", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a1a67b53bc1ed27519293cad4ed292b71fbc737f9a92fd0774f073ebeda7170", "phash": "8b83651dbef1990a", "dhash": "c3c1d1d1f1b292a9", "phash_int": -8.393754102056511e+18, "collected_at": "2026-05-22T04:30:50.920270+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 17-10-23 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 17-10-23 CanonPowerShotA40.jpg", "file_name": "2003-02-15 17-10-23 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 17-10-23 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 529124.0, "mtime": "2003-02-15T15:10:22+00:00", "mtime_ts": 1045321822.0, "ctime": "2024-12-21T07:57:38.872649+00:00", "sha256_file": "3b0e55c645fdf712c2b0c70094529f257198150ddec6fef5e30cb90f3aa0f572", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 17:10:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5644", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 17:10:23", "EXIF DateTimeDigitized": "2003:02:15 17:10:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 453, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181853", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "819"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cd52fa0e14b38f690a193c9e8a7c3f0b2c0fa7d7def9b99c513bea46d77c2a07", "phash": "941df6e2098fad49", "dhash": "ed6c3272f1444c9c", "phash_int": -7.773785931088156e+18, "collected_at": "2026-05-22T04:30:50.974986+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-20-53 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-20-53 CanonPowerShotA40.jpg", "file_name": "2003-11-01 11-20-53 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 11-20-53 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 468876.0, "mtime": "2003-11-01T10:20:53+00:00", "mtime_ts": 1067682053.0, "ctime": "2024-12-21T07:57:50.719032+00:00", "sha256_file": "edbb99c981cca97f2bef573c6eb9b27902459450dd626e30e73c0ad058a57084", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:20:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4643", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 11:20:53", "EXIF DateTimeDigitized": "2003:11:01 11:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 575, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292961", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "67", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "61", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1565"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6ac18c3d77dd0f3324622f10de4279e2e5e18e0c98ae78e5f38ad8b5dc3ad57", "phash": "b5645c0be13de18e", "dhash": "968e9e1edddb7898", "phash_int": -5.376070849080205e+18, "collected_at": "2026-05-22T04:30:50.987151+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 17-08-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 17-08-04 CanonPowerShotS40.jpg", "file_name": "2003-02-15 17-08-04 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 17-08-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1875760.0, "mtime": "2003-02-15T16:08:04+00:00", "mtime_ts": 1045325284.0, "ctime": "2024-12-21T07:57:38.802647+00:00", "sha256_file": "72370065fe5220b9d514cef29196cc529587cb42d105cc9f10073284c77b8472", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 17:08:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6225", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 17:08:04", "EXIF DateTimeDigitized": "2003:02:15 17:08:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b7945464e2e77af4507a62c410bd27c642f8ba95d87b99cf2e5065eb6340d99", "phash": "dc4d0f22721fe8d4", "dhash": "727293b99d997030", "phash_int": -2.572383171540687e+18, "collected_at": "2026-05-22T04:30:51.123159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 12-49-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 12-49-53 CanonPowerShotS40.jpg", "file_name": "2003-12-20 12-49-53 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 12-49-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1342600.0, "mtime": "2003-12-20T11:49:52+00:00", "mtime_ts": 1071920992.0, "ctime": "2024-12-21T07:57:56.483218+00:00", "sha256_file": "1d9d5a3295c2dae0d40856047b106e474adfa7c3d88f70b7fb052716a4a1f3a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 12:49:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4838", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 12:49:53", "EXIF DateTimeDigitized": "2003:12:20 12:49:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "148", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea849e4212ecbc9c14b04637f392ccdb21acae3ecce2350bae826d031cbdc7b0", "phash": "9e60789769d2a16b", "dhash": "2764e5e4646c6933", "phash_int": -7.034490026241909e+18, "collected_at": "2026-05-22T04:30:51.139162+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-43-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-43-02 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-43-02 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-43-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 266205.0, "mtime": "2003-04-05T15:43:00+00:00", "mtime_ts": 1049557380.0, "ctime": "2024-12-21T07:57:43.971814+00:00", "sha256_file": "041c5e20de218263a6a17ca581b3e3f92b38118de2215da1ba7960480c196044", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:43:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4240", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:43:02", "EXIF DateTimeDigitized": "2003:04:05 16:43:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[18, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20ba46ebf93fa5e27e7cce6ac906ba54920e7700c9c9b043778cdedd1796adb5", "phash": "983e676920ada795", "dhash": "133028b9b0f0f2f0", "phash_int": -7.476424630170966e+18, "collected_at": "2026-05-22T04:30:51.201851+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 12-50-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 12-50-13 CanonPowerShotS40.jpg", "file_name": "2003-12-20 12-50-13 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 12-50-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1576376.0, "mtime": "2003-12-20T11:50:12+00:00", "mtime_ts": 1071921012.0, "ctime": "2024-12-21T07:57:56.518219+00:00", "sha256_file": "74293c50bb43e02205305f65f8f20102c3e145943aa0bde008b14951f51613be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 12:50:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4129", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 12:50:13", "EXIF DateTimeDigitized": "2003:12:20 12:50:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "697/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[64, 272, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "697"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bdb2ba2ec47a5608c41581243fe7c8cf63ca17ca25dc861afe6d1a08d0b17b64", "phash": "807c87703fe057d9", "dhash": "8e93a38b93c9dbc6", "phash_int": -9.1883202235649e+18, "collected_at": "2026-05-22T04:30:51.249209+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 20-56-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 20-56-55 CanonPowerShotS40.jpg", "file_name": "2003-03-07 20-56-55 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 20-56-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1562934.0, "mtime": "2003-03-07T19:56:54+00:00", "mtime_ts": 1047067014.0, "ctime": "2024-12-21T07:57:40.582705+00:00", "sha256_file": "01a99e7b9ce28c66f2638f335a09b9b0e2aa632e2938e373d3632a3c268db7c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 20:56:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6280", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 20:56:55", "EXIF DateTimeDigitized": "2003:03:07 20:56:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1bd3e0e6da123655770594002dc07aa3a7e9b5b2b0b1dca69e0ab634b54ef168", "phash": "bb6036da41d54a3e", "dhash": "4f0f13d199791c5e", "phash_int": -4.944892079817537e+18, "collected_at": "2026-05-22T04:30:51.297641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-24 18-39-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-24 18-39-12 CanonPowerShotS40.jpg", "file_name": "2003-12-24 18-39-12 CanonPowerShotS40.jpg", "file_stem": "2003-12-24 18-39-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 720292.0, "mtime": "2003-12-24T17:39:10+00:00", "mtime_ts": 1072287550.0, "ctime": "2024-12-21T07:57:57.583253+00:00", "sha256_file": "9c1c1aba81f89defc17084aea7c6f490bd07314536db05bb211dfabf0f58129a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:24 18:39:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5139", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:24 18:39:12", "EXIF DateTimeDigitized": "2003:12:24 18:39:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "703563a5c36d8edd93ff8aca58cce8d798b22e6af1d1b91b9cd94d0c4800dbc3", "phash": "892560cb7935b71e", "dhash": "c2c3f27269f9e2b1", "phash_int": -8.564332689346939e+18, "collected_at": "2026-05-22T04:30:51.371044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-23 15-03-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-23 15-03-35 CanonPowerShotS40.jpg", "file_name": "2003-03-23 15-03-35 CanonPowerShotS40.jpg", "file_stem": "2003-03-23 15-03-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1798092.0, "mtime": "2003-03-23T14:03:34+00:00", "mtime_ts": 1048428214.0, "ctime": "2024-12-21T07:57:42.078753+00:00", "sha256_file": "8de8d4e29b30b06b237989c82785d540a8267b1776c9422b5acda974149efd7f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:23 15:03:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3179", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:23 15:03:35", "EXIF DateTimeDigitized": "2003:03:23 15:03:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "338", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ca19f7efde135895627c9553e1f902e926a78830284cec1388b51dc869444fe1", "phash": "d4e71d1376c9d430", "dhash": "000000000cf8b83c", "phash_int": -3.105481448614145e+18, "collected_at": "2026-05-22T04:30:51.385045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-41-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-41-51 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-41-51 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-41-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 315510.0, "mtime": "2003-04-05T15:41:50+00:00", "mtime_ts": 1049557310.0, "ctime": "2024-12-21T07:57:43.949813+00:00", "sha256_file": "e5d9bdb204f3a67b3e4081c124d518af540700631408175ef5556345eaffda35", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:41:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4723", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:41:51", "EXIF DateTimeDigitized": "2003:04:05 16:41:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "603/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "134", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "603"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7528816f01a954d292601d1e3787734dc3d29c2a304ab19d8fa26e6340e2c13d", "phash": "d9d1233f5ca1358a", "dhash": "92c090b0306e4bc9", "phash_int": -2.7513791423026816e+18, "collected_at": "2026-05-22T04:30:51.443343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-21-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-21-51 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-21-51 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-21-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1553414.0, "mtime": "2002-09-28T13:21:52+00:00", "mtime_ts": 1033219312.0, "ctime": "2024-12-21T07:57:36.252565+00:00", "sha256_file": "214d6d74850e6c9019f723955e2284f923685e014b1b9681a341d2c6de55be37", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:21:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3214", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:21:51", "EXIF DateTimeDigitized": "2002:09:28 13:21:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 1)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e44533bb46525cd83fcc52206beadca9f592fdd7e33ca12e75a643df061247b", "phash": "abce5429d461927d", "dhash": "f1f3d3d313d39bf8", "phash_int": -6.066819109387922e+18, "collected_at": "2026-05-22T04:30:51.494343+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-09-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-09-53 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-09-53 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-09-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1359777.0, "mtime": "2003-02-22T16:09:52+00:00", "mtime_ts": 1045930192.0, "ctime": "2024-12-21T07:57:39.426667+00:00", "sha256_file": "a42f42e144ea6ca9d2d3dd596393d579103cc06c3d6b39f5f7bb978a7ad16425", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:09:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4850", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:09:53", "EXIF DateTimeDigitized": "2003:02:22 17:09:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30fe5c4dc2d687a9e3b8c5189b1e121157704da914df94c25585f412159a0838", "phash": "8f843db13839383f", "dhash": "f2e6666aea626272", "phash_int": -8.10528559799827e+18, "collected_at": "2026-05-22T04:30:51.555501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-20-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-20-08 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-20-08 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-20-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1488711.0, "mtime": "2002-09-28T13:20:06+00:00", "mtime_ts": 1033219206.0, "ctime": "2024-12-21T07:57:36.180562+00:00", "sha256_file": "ee9d1ed9a8955209798f91a80be54e8ee0e7c5ab3ac72cd75d70c9c7bbf2fd27", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:20:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3113", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:20:08", "EXIF DateTimeDigitized": "2002:09:28 13:20:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[94, 171, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "148", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4340273a76708859782e0a04abc17cae8b29564d121e185ac75c2317a742d408", "phash": "bdf85f871ef00112", "dhash": "383a393c7e5e1e7e", "phash_int": -4.75794797237266e+18, "collected_at": "2026-05-22T04:30:51.584593+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 09-19-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 09-19-51 CanonPowerShotS40.jpg", "file_name": "2003-04-06 09-19-51 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 09-19-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1930837.0, "mtime": "2003-04-06T08:19:50+00:00", "mtime_ts": 1049617190.0, "ctime": "2024-12-21T07:57:44.290824+00:00", "sha256_file": "a59a6deba828621ebfa07a11793f027b3d34e3f928e3b8c9c91ccda56c1f5da9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 09:19:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6244", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 09:19:51", "EXIF DateTimeDigitized": "2003:04:06 09:19:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55c61433ecd43fbc480e4949abe2694e415b0ec5c5d899ba12acf77695b19a12", "phash": "d9c5273a4a4a279d", "dhash": "c262a2a1383a91d7", "phash_int": -2.75475246575923e+18, "collected_at": "2026-05-22T04:30:51.661741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 22-19-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 22-19-28 CanonPowerShotS40.jpg", "file_name": "2003-03-07 22-19-28 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 22-19-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1776136.0, "mtime": "2003-03-07T21:19:26+00:00", "mtime_ts": 1047071966.0, "ctime": "2024-12-21T07:57:40.621706+00:00", "sha256_file": "4bc60d38c92fc0b989a08da3aeb90b8d71b108792f5c8e3eddfd363318788ffc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 22:19:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7026", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 22:19:28", "EXIF DateTimeDigitized": "2003:03:07 22:19:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b7dcd426656889b79bd1c0ca3ca50fd4cade9d0d7e8de5c37dbdcece4cfd035", "phash": "ac5a762518cea17e", "dhash": "c100f17136c66727", "phash_int": -6.027375249579926e+18, "collected_at": "2026-05-22T04:30:51.685946+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 19-10-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 19-10-14 CanonPowerShotS40.jpg", "file_name": "2003-03-08 19-10-14 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 19-10-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2179674.0, "mtime": "2003-03-08T18:10:12+00:00", "mtime_ts": 1047147012.0, "ctime": "2024-12-21T07:57:41.029719+00:00", "sha256_file": "185202f15ee50713b09ab31306658fd2ab57a1ecc895a9ea08bb067c9fa91729", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 19:10:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6472", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 19:10:14", "EXIF DateTimeDigitized": "2003:03:08 19:10:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65483", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cd9910a23a70420144160e1b489be8eae22efabd4825249753636772152f705", "phash": "cce626de5d053323", "dhash": "2426c29230b0a0a0", "phash_int": -3.6822129088435845e+18, "collected_at": "2026-05-22T04:30:51.847081+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 14-01-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 14-01-19 CanonPowerShotS40.jpg", "file_name": "2003-03-30 14-01-19 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 14-01-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2927147.0, "mtime": "2003-03-30T13:01:18+00:00", "mtime_ts": 1049029278.0, "ctime": "2024-12-21T07:57:43.257791+00:00", "sha256_file": "aa63fdcb306095597f0a58ab0efe478e96dd03ef320606f943207679af0d6548", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 14:01:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6844", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 14:01:19", "EXIF DateTimeDigitized": "2003:03:30 14:01:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "23ea8cff7c9114571d686a93981e54ed64ec22534b30ad807e46c59fd6b7a310", "phash": "8b55228ed5259af6", "dhash": "f3d1d0507171f1b1", "phash_int": -8.406775132560451e+18, "collected_at": "2026-05-22T04:30:51.862155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-10 23-53-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-10 23-53-20 CanonPowerShotS40.jpg", "file_name": "2003-11-10 23-53-20 CanonPowerShotS40.jpg", "file_stem": "2003-11-10 23-53-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1279473.0, "mtime": "2003-11-10T22:53:20+00:00", "mtime_ts": 1068504800.0, "ctime": "2024-12-21T07:57:52.613093+00:00", "sha256_file": "e2dcccc87382e1eec84ddd196af1cc6dd6b02363b82fb88f935c073d4b52a850", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:10 23:53:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5268", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:10 23:53:20", "EXIF DateTimeDigitized": "2003:11:10 23:53:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 70, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "488eae9dc5f0a1cff86076c495d9c38c149bff39bb88a01437f07659a3f58422", "phash": "b9c6659e3132a74a", "dhash": "cc6c0c1c38383396", "phash_int": -5.060245401199532e+18, "collected_at": "2026-05-22T04:30:51.937153+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-20-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-20-57 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-20-57 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-20-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1323872.0, "mtime": "2002-09-28T13:20:56+00:00", "mtime_ts": 1033219256.0, "ctime": "2024-12-21T07:57:36.203563+00:00", "sha256_file": "41c96fee803abd5b2efea842289857d1d2521df86d297e54259f85b5ced9ccd2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:20:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2772", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:20:57", "EXIF DateTimeDigitized": "2002:09:28 13:20:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "073236f5be267a2d5244d1172fea6b145bc4308c53112c8324b651a776d919fc", "phash": "9bd9796466266626", "dhash": "b8b8d9f9717171f9", "phash_int": -7.216603455767026e+18, "collected_at": "2026-05-22T04:30:52.021155+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-35-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-35-05 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-35-05 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-35-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1990615.0, "mtime": "2003-11-16T18:35:05+00:00", "mtime_ts": 1069007705.0, "ctime": "2024-12-21T07:57:53.130110+00:00", "sha256_file": "94dc8d883a471872f64ad08ebbd7e99e6c1cdc6cc12d5de76384fb745369a7dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:35:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5607", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:35:05", "EXIF DateTimeDigitized": "2003:11:16 19:35:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "273/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2184"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9f70f85e95298596a574030b92c15fc4d3ef98e158025f37c63df2df7017539", "phash": "9a296e95dc938536", "dhash": "13139999347c5c24", "phash_int": -7.338212527893675e+18, "collected_at": "2026-05-22T04:30:52.057268+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 16-55-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 16-55-14 CanonPowerShotS40.jpg", "file_name": "2003-02-22 16-55-14 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 16-55-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1594991.0, "mtime": "2003-02-22T15:55:12+00:00", "mtime_ts": 1045929312.0, "ctime": "2024-12-21T07:57:39.224661+00:00", "sha256_file": "c6d13427eeb226f3be2cf00d4ff4f91416be0faa5f9ccc0d102838534c588e71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 16:55:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5381", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 16:55:14", "EXIF DateTimeDigitized": "2003:02:22 16:55:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c9c45c61a1408843e58251ca778e8343a6c50c04c516c8028043f7641c91d71", "phash": "c0e897931e9d9897", "dhash": "c8c0a5a1a5accccc", "phash_int": -4.5462171657008845e+18, "collected_at": "2026-05-22T04:30:52.173481+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 17-15-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 17-15-46 CanonPowerShotS40.jpg", "file_name": "2003-11-01 17-15-46 CanonPowerShotS40.jpg", "file_stem": "2003-11-01 17-15-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1670887.0, "mtime": "2003-11-01T16:15:46+00:00", "mtime_ts": 1067703346.0, "ctime": "2024-12-21T07:57:51.001041+00:00", "sha256_file": "d4439e2e9f96ccaec6fb737b3c998f26eb29f9ed0b85d9e68a3b74df279a55f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 17:15:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4811", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:01 17:15:46", "EXIF DateTimeDigitized": "2003:11:01 17:15:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "47", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a666b9544290cbc67f8dcdc1941fa9b98ef0f2e129613ec72ffa56701581950", "phash": "9d4a783565b2b20f", "dhash": "3671f1f6765c2eb6", "phash_int": -7.112740490743467e+18, "collected_at": "2026-05-22T04:30:52.184542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-01-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-01-08 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-01-08 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-01-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 595036.0, "mtime": "2003-11-29T12:01:08+00:00", "mtime_ts": 1070107268.0, "ctime": "2024-12-21T07:57:54.281147+00:00", "sha256_file": "87ca12b960bde95ccf63ac3bc0adb3f5107d1f3dea75ac39c7b171fddbec3f94", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:01:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5962", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:01:08", "EXIF DateTimeDigitized": "2003:11:29 13:01:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 629, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303019", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc0f1212bc882b74e0bc6ca2e4ea2ed45e16a2634cb45667b0ecc4f505631c65", "phash": "96d268e865432f2f", "dhash": "cdbc6cec7475e9e7", "phash_int": -7.57887987557052e+18, "collected_at": "2026-05-22T04:30:52.285069+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 15-22-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 15-22-57 CanonPowerShotS40.jpg", "file_name": "2003-02-23 15-22-57 CanonPowerShotS40.jpg", "file_stem": "2003-02-23 15-22-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1965599.0, "mtime": "2003-02-23T14:22:56+00:00", "mtime_ts": 1046010176.0, "ctime": "2024-12-21T07:57:40.007686+00:00", "sha256_file": "f6e8d822a02e1a134c5563d59990162c8e4c2d9603ccb047e855324302e29936", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 15:22:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5603", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:23 15:22:57", "EXIF DateTimeDigitized": "2003:02:23 15:22:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e3daeb00ce23dd4031571a1a9032da8e649e365a6d41bc982da228bbc244821", "phash": "b4d0d0cf86666b74", "dhash": "e09a1e2f2f3fae9c", "phash_int": -5.41760076199504e+18, "collected_at": "2026-05-22T04:30:52.330132+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 11-40-20 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 11-40-20 CanonPowerShotA40.jpg", "file_name": "2003-11-30 11-40-20 CanonPowerShotA40.jpg", "file_stem": "2003-11-30 11-40-20 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 392504.0, "mtime": "2003-11-30T10:40:20+00:00", "mtime_ts": 1070188820.0, "ctime": "2024-12-21T07:57:55.266179+00:00", "sha256_file": "6f76a7157f72ebea0a2df66d88fdfb42f4de025d6631264b7792e2649d163334", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 11:40:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4640", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:30 11:40:20", "EXIF DateTimeDigitized": "2003:11:30 11:40:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 616, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1313109", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "84", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "153", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1046"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bdfbc3d50edbd31fdc377dbd2d3ae19314196525ab72f31326425d55acf96602", "phash": "dc6126937a9d52a9", "dhash": "4ed2923238383623", "phash_int": -2.5667278977652936e+18, "collected_at": "2026-05-22T04:30:52.399770+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 17-25-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 17-25-58 CanonPowerShotS40.jpg", "file_name": "2003-02-15 17-25-58 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 17-25-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2065367.0, "mtime": "2003-02-15T16:25:58+00:00", "mtime_ts": 1045326358.0, "ctime": "2024-12-21T07:57:38.946652+00:00", "sha256_file": "5f3d8bd02badc422a024f25bbcf2537c8ee8b3bff0ea45cdb7bcd733a8bc3405", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 17:25:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5736", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 17:25:58", "EXIF DateTimeDigitized": "2003:02:15 17:25:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 320, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bbe4db0a649748acf4207c0880f495716969bad2130c13e34909ea2bee9cd4d", "phash": "946a29334e9b3bac", "dhash": "cba77364f49c98b2", "phash_int": -7.75233850822602e+18, "collected_at": "2026-05-22T04:30:52.453775+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 17-07-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 17-07-26 CanonPowerShotS40.jpg", "file_name": "2003-10-26 17-07-26 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 17-07-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1617850.0, "mtime": "2003-10-26T16:07:26+00:00", "mtime_ts": 1067184446.0, "ctime": "2024-12-21T07:57:49.406990+00:00", "sha256_file": "899328b9f89c48ae3c92be9c043aed71a13c7aa7c44ec6be5493e62c9866c35b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 17:07:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6852", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 17:07:26", "EXIF DateTimeDigitized": "2003:10:26 17:07:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 406, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f11708c1beafeb84a74ab97aab0d4d4f39c6c3d08643796054c721288ef2ffe5", "phash": "977e65eaf6512101", "dhash": "6874f0f8f8f8d0c4", "phash_int": -7.530469467087626e+18, "collected_at": "2026-05-22T04:30:52.513333+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-37-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-37-12 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-37-12 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-37-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1813507.0, "mtime": "2003-11-29T11:37:12+00:00", "mtime_ts": 1070105832.0, "ctime": "2024-12-21T07:57:53.881134+00:00", "sha256_file": "fedb0d3e93f28baed944736dbe680c819f76f4a8496bc5e7099b4eb151e69a70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:37:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6306", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:37:12", "EXIF DateTimeDigitized": "2003:11:29 12:37:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "621/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2484"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "91b3acf6f5e2270c07b4b4136315bf1a4c055396a7893b6e45c81d9c05d83998", "phash": "9b246136b1cf6e49", "dhash": "8d993138312979d9", "phash_int": -7.267577011129848e+18, "collected_at": "2026-05-22T04:30:52.555863+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-57-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-57-08 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-57-08 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-57-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2157521.0, "mtime": "2003-04-06T15:57:06+00:00", "mtime_ts": 1049644626.0, "ctime": "2024-12-21T07:57:44.861843+00:00", "sha256_file": "e87a89d9c29f55038c0f7cdf6a640012e3bf6636b72eef11d09a56323f334857", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:57:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5658", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:57:08", "EXIF DateTimeDigitized": "2003:04:06 16:57:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2058ec0456a5088b748afa212e58dbc02794759ee45d2fff9f095e912deb3480", "phash": "a4f07aa78c3ce354", "dhash": "9b9baefee44e3de9", "phash_int": -6.561609797047885e+18, "collected_at": "2026-05-22T04:30:52.694484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-09-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-09-36 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-09-36 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-09-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2719678.0, "mtime": "2003-03-30T12:09:34+00:00", "mtime_ts": 1049026174.0, "ctime": "2024-12-21T07:57:43.041784+00:00", "sha256_file": "4041cb57cddaff37cd80ec5a63cdcd509224204c0489d0f9bad3546b88b2325e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:09:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7027", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:09:36", "EXIF DateTimeDigitized": "2003:03:30 13:09:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e536c230f235fe56a5a913a9db1905eaf7f9e42dd521b7f5a8a396d8ca1f05a", "phash": "dd941972f626cd30", "dhash": "d452f2e00c41d0f2", "phash_int": -2.4803295132275963e+18, "collected_at": "2026-05-22T04:30:52.710624+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-47-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-47-11 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-47-11 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-47-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2421955.0, "mtime": "2003-04-05T12:47:10+00:00", "mtime_ts": 1049546830.0, "ctime": "2024-12-21T07:57:43.710805+00:00", "sha256_file": "5d7c89d89eca3ebaca2989e286ab81d2bde4cf315ebe6fdda7bae7c57037cd60", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:47:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8280", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:47:11", "EXIF DateTimeDigitized": "2003:04:05 13:47:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "307", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5fb3aa3d36787636df42d84a9bc708cb24b3198ea8929b7246636393529eb9a", "phash": "e9cc2f747899092d", "dhash": "1247d3928b395e5b", "phash_int": -1.5998515903373617e+18, "collected_at": "2026-05-22T04:30:52.881147+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-30-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-30-19 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-30-19 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-30-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2841468.0, "mtime": "2003-09-16T11:30:19+00:00", "mtime_ts": 1063711819.0, "ctime": "2024-12-21T07:57:47.876940+00:00", "sha256_file": "47c536347309a1a96d5e8794070cca2000331229c0f0ca81171ac660be978d1c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:30:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6799", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:30:19", "EXIF DateTimeDigitized": "2003:09:16 13:30:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65508", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fdf6368773139aefe0684da4fa5d6dc18619069fe657996deebe9231cf6e3c7", "phash": "d8122aff13f94e28", "dhash": "d1f0f0d8b030b2aa", "phash_int": -2.877189936896193e+18, "collected_at": "2026-05-22T04:30:52.906248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-22-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-22-07 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-22-07 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-22-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1387288.0, "mtime": "2003-04-19T16:22:06+00:00", "mtime_ts": 1050769326.0, "ctime": "2024-12-21T07:57:45.430861+00:00", "sha256_file": "18a07a39b4577a5a431de96d61f294b6b799b1444e26dda3aa21e7493bcbf89a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:22:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3465", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:22:07", "EXIF DateTimeDigitized": "2003:04:19 17:22:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1927/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1927"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5dbe07f9ba88e5219da11decb41343f35a003b01f45d82d8621bfd03f2903591", "phash": "e7e5189a235e6361", "dhash": "6044c6464646204a", "phash_int": -1.7369550309840397e+18, "collected_at": "2026-05-22T04:30:53.012252+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-07 15-55-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-07 15-55-04 CanonPowerShotS40.jpg", "file_name": "2003-09-07 15-55-04 CanonPowerShotS40.jpg", "file_stem": "2003-09-07 15-55-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1385001.0, "mtime": "2003-09-07T13:55:04+00:00", "mtime_ts": 1062942904.0, "ctime": "2024-12-21T07:57:47.092915+00:00", "sha256_file": "b61479131e0ddec6f83be872fa4beee53c523d145933444301257446ac539645", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:07 15:55:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5449", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:07 15:55:04", "EXIF DateTimeDigitized": "2003:09:07 15:55:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e32ab97e072ff2b38aa7d7de17d1d152874c272a48b3046fd5ae5a8c7a1943a2", "phash": "fd8763789917228c", "dhash": "6a62637233351299", "phash_int": -1.780642906421897e+17, "collected_at": "2026-05-22T04:30:53.033251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-58-50 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-58-50 CanonPowerShotA40.jpg", "file_name": "2003-11-01 11-58-50 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 11-58-50 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 303311.0, "mtime": "2003-11-01T10:58:50+00:00", "mtime_ts": 1067684330.0, "ctime": "2024-12-21T07:57:50.868037+00:00", "sha256_file": "6b19c913fd7315889080957f97442a787caa1bb12291249a98160d8d3a1a3586", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:58:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2899", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 11:58:50", "EXIF DateTimeDigitized": "2003:11:01 11:58:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[12, 491, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292966", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "83", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "41", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "390b330686adcc2ea411f160a8827c67716a061a3faec1de9a97d6f982ce9cc0", "phash": "d5c2425ade795271", "dhash": "e064143030303a30", "phash_int": -3.0437974401020513e+18, "collected_at": "2026-05-22T04:30:53.143913+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-05 13-41-24 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-05 13-41-24 CanonPowerShotS40.jpg", "file_name": "2003-11-05 13-41-24 CanonPowerShotS40.jpg", "file_stem": "2003-11-05 13-41-24 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 955879.0, "mtime": "2003-11-05T12:41:24+00:00", "mtime_ts": 1068036084.0, "ctime": "2024-12-21T07:57:51.637062+00:00", "sha256_file": "e8d19c2e87e18745760e83c2c6267c340dc93713a50ed4b7d2216be7c6b2f814", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:05 13:41:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3260", "EXIF ExposureTime": "1/8", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:05 13:41:24", "EXIF DateTimeDigitized": "2003:11:05 13:41:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "177/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "112", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "885"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9183e42ecbbab15c1249bfd493346f10c4b9ace203357f668823cf7479c53cf5", "phash": "b159662ee89cf119", "dhash": "a49afabbbbff2ecc", "phash_int": -5.667386304411931e+18, "collected_at": "2026-05-22T04:30:53.207656+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-23 14-11-37 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-23 14-11-37 CanonPowerShotA40.jpg", "file_name": "2003-03-23 14-11-37 CanonPowerShotA40.jpg", "file_stem": "2003-03-23 14-11-37 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 631714.0, "mtime": "2003-03-30T10:03:27+00:00", "mtime_ts": 1049018607.0, "ctime": "2024-12-21T07:57:41.901747+00:00", "sha256_file": "0de8be4797ad61f13d704d58a442da583c689ba2d2a8ec6a7b43b7a37dd93d89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:23 14:11:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6275", "EXIF ExposureTime": "1/500", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:23 14:11:37", "EXIF DateTimeDigitized": "2003:03:23 14:11:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202013", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2072"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "076081df9c22e43a12d7c0d6a6f4f3313e6b8e7d77c0e0a3d5e8fffd0fb304fd", "phash": "a7d46f543892833e", "dhash": "0e26cedcdeca4f4b", "phash_int": -6.353330766795865e+18, "collected_at": "2026-05-22T04:30:53.251774+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-18-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-18-40 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-18-40 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-18-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 737215.0, "mtime": "2002-09-28T13:18:38+00:00", "mtime_ts": 1033219118.0, "ctime": "2024-12-21T07:57:36.120560+00:00", "sha256_file": "76115ec3e19af744daacce620e28697ba5f7413cf32fd28c37c3da598376f683", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:18:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2138", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:18:40", "EXIF DateTimeDigitized": "2002:09:28 13:18:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32142e3162dbe883c44272eda6d9157db72399d2ea5a6ce5db8abd129ad0a5a4", "phash": "93486cb49b9b9399", "dhash": "989c9998d8dcdc50", "phash_int": -7.8338920288504e+18, "collected_at": "2026-05-22T04:30:53.306777+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 21-22-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 21-22-07 CanonPowerShotS40.jpg", "file_name": "2003-12-27 21-22-07 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 21-22-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1576384.0, "mtime": "2003-12-27T20:22:06+00:00", "mtime_ts": 1072556526.0, "ctime": "2024-12-21T07:57:58.470282+00:00", "sha256_file": "4f68bc8dc525ade72367a8df1804015e35a2cb70d539de39916429b5c86dc6f1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 21:22:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6326", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 21:22:07", "EXIF DateTimeDigitized": "2003:12:27 21:22:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26df5b29a728c95b00a572febc443ae47d38f400a45ad54e7ef5f011fa95ac93", "phash": "c1f4639da8678c3a", "dhash": "c48480c332724dcd", "phash_int": -4.4708390012856863e+18, "collected_at": "2026-05-22T04:30:53.397075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-40-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-40-04 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-40-04 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-40-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1916977.0, "mtime": "2003-09-14T13:40:04+00:00", "mtime_ts": 1063546804.0, "ctime": "2024-12-21T07:57:47.453926+00:00", "sha256_file": "75a64e3949ebf03c7eb9a526065b6805dff6a7838e30fdddbd813a53d49936c0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:40:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6311", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:40:04", "EXIF DateTimeDigitized": "2003:09:14 15:40:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5792fa81f97cd37f52995e99f1c15bc47b107739e1ed8f186369ee64232b882f", "phash": "cda185cf385b265a", "dhash": "e2e6c63430617036", "phash_int": -3.629472699633687e+18, "collected_at": "2026-05-22T04:30:53.399072+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-35-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-35-37 CanonPowerShotS40.jpg", "file_name": "2003-02-15 14-35-37 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 14-35-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1387727.0, "mtime": "2003-02-15T13:35:37+00:00", "mtime_ts": 1045316137.0, "ctime": "2024-12-21T07:57:38.545639+00:00", "sha256_file": "791205caa46e863a49daf57f384347a1b5b17d549e4cb0d84eb791d391fa272c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:35:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4867", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "63/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 14:35:37", "EXIF DateTimeDigitized": "2003:02:15 14:35:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "85/16", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "366", "MakerNote TargetAperture": "170", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c9cbff9b33a7514cc190c4445ed7df68aad5ae87ac59dd52259fb29c7b2dfae", "phash": "be615fd0823e6962", "dhash": "cc321fecac363c78", "phash_int": -4.728392784619346e+18, "collected_at": "2026-05-22T04:30:53.565599+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-33-10 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-33-10 E5000.jpg", "file_name": "2003-05-25 11-33-10 E5000.jpg", "file_stem": "2003-05-25 11-33-10 E5000", "file_ext": ".jpg", "file_size": 605676.0, "mtime": "2003-05-25T10:33:10+00:00", "mtime_ts": 1053858790.0, "ctime": "2024-12-21T07:57:46.526896+00:00", "sha256_file": "7f1fb9f84cd06039ad4336b5bde6bff2ddd589f5dec5f827f7e352ed499917d8", "exif": {"Image ImageDescription": " ", "Image Make": "NIKON", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "E5000v1.6", "Image DateTime": "2003:05:25 11:33:10", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "284", "Thumbnail JPEGInterchangeFormat": "4084", "Thumbnail JPEGInterchangeFormatLength": "3700", "EXIF ExposureTime": "1/224", "EXIF FNumber": "27/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:05:25 11:33:10", "EXIF DateTimeDigitized": "2003:05:25 11:33:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "1", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Daylight", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "107/5", "EXIF MakerNote": "[21, 0, 1, 0, 7, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2560", "EXIF ExifImageLength": "1920", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "886", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote MakernoteVersion": "0100", "MakerNote ISOSetting": "[0, 100]", "MakerNote ColorMode": "COLOR", "MakerNote Quality": "BASIC ", "MakerNote Whitebalance": "SUNNY ", "MakerNote ImageSharpening": "NONE ", "MakerNote FocusMode": "AF-C ", "MakerNote FlashSetting": " ", "MakerNote LensMount": "1104/125", "MakerNote ISOSelection": "MANUAL", "MakerNote ImageAdjustment": "CONTRAST(-) ", "MakerNote AuxiliaryLens": "OFF ", "MakerNote ManualFocusDistance": "0/0", "MakerNote DigitalZoomFactor": "1", "MakerNote AFFocusPosition": "CenterCenterCenterCenter", "MakerNote SceneMode": " ", "MakerNote Saturation": "0", "MakerNote NoiseReduction": "OFF ", "MakerNote DataDump": "[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 8, 215, 26, 0, ... ]", "MakerNote NikonPreview": "1764", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 13, 0, 1, 0, 22, 0, ... ]"}, "format": "JPEG", "mode": "RGB", "width": 2560.0, "height": 1920.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5a05004eff57e1fad5848a079def8d9056b7df10310fe78d27e005884253f1f", "phash": "e35a1c65e39ec8c1", "dhash": "bdc8c009cec666da", "phash_int": -2.0643062552598423e+18, "collected_at": "2026-05-22T04:30:53.575655+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 17-44-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 17-44-19 CanonPowerShotS40.jpg", "file_name": "2003-12-21 17-44-19 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 17-44-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1685340.0, "mtime": "2003-12-21T16:44:18+00:00", "mtime_ts": 1072025058.0, "ctime": "2024-12-21T07:57:57.072237+00:00", "sha256_file": "91eab8f38f7a24d3655f5173a893d88ffb592792e037ccccc3c90db124faf92b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 17:44:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5536", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 17:44:19", "EXIF DateTimeDigitized": "2003:12:21 17:44:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8029ac1a27c91363008f44c0323085e3ca331c09c5987c1713199a7abcd1c0b5", "phash": "c870621c9aad579f", "dhash": "238b88b23822e3c9", "phash_int": -4.003592193738713e+18, "collected_at": "2026-05-22T04:30:54.089565+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-02 22-18-31 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-02 22-18-31 CanonPowerShotS40.jpg", "file_name": "2003-04-02 22-18-31 CanonPowerShotS40.jpg", "file_stem": "2003-04-02 22-18-31 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1555449.0, "mtime": "2003-04-02T21:18:30+00:00", "mtime_ts": 1049318310.0, "ctime": "2024-12-21T07:57:43.414796+00:00", "sha256_file": "5c35c9cee8abcf9653b391b127005c5a9846543648b6ba17423ef745aac3cbd7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:02 22:18:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3717", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:02 22:18:31", "EXIF DateTimeDigitized": "2003:04:02 22:18:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "271/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "28", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2168"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9cd9c29caed8014233d491c049be5b5820396967553c3da1a59d96bf098260e8", "phash": "daea54d01b8d35b4", "dhash": "d8916d7115b8e8f8", "phash_int": -2.672230176098798e+18, "collected_at": "2026-05-22T04:30:54.320573+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 23-05-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 23-05-13 CanonPowerShotS40.jpg", "file_name": "2003-03-07 23-05-13 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 23-05-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1523882.0, "mtime": "2003-03-07T22:05:12+00:00", "mtime_ts": 1047074712.0, "ctime": "2024-12-21T07:57:40.660707+00:00", "sha256_file": "a359444479334597c0892597df5c0b2ad1130a84993d46f8b58736753ed685e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 23:05:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6933", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 23:05:13", "EXIF DateTimeDigitized": "2003:03:07 23:05:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 213, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "59392185cbe19f9f22a6e676bbe35cd2f28f4a36dd12c3cd42b298297929a21b", "phash": "867d3c607adad924", "dhash": "28767469c4d4e4cd", "phash_int": -8.755775715462687e+18, "collected_at": "2026-05-22T04:30:54.404575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-41-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-41-16 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-41-16 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-41-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1560242.0, "mtime": "2003-04-06T15:41:14+00:00", "mtime_ts": 1049643674.0, "ctime": "2024-12-21T07:57:44.776840+00:00", "sha256_file": "9a1334887da5cb855e1a4462ed75281eeb3b62c0547ff56a79c1789477f1ec3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:41:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5260", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:41:16", "EXIF DateTimeDigitized": "2003:04:06 16:41:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "143", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52d937688002ef196762639bd39b9166f526cbe55973d8ed3356fcd6859eaf3e", "phash": "8585d5355e5786d2", "dhash": "f6daecf37bf7d0e0", "phash_int": -8.825413469569841e+18, "collected_at": "2026-05-22T04:30:54.447580+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-29-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-29-21 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-29-21 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-29-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1088792.0, "mtime": "2003-12-31T23:29:20+00:00", "mtime_ts": 1072913360.0, "ctime": "2024-12-21T07:57:59.962330+00:00", "sha256_file": "6c1976bd5066a718f761b6c051fd1f36c29a8658474181d57b689cf7b543b710", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:29:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4602", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:29:21", "EXIF DateTimeDigitized": "2004:01:01 00:29:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9abdd3729ee6eb6a31dd0bee5768cd8402192191de227611f8c49ca3f1bff3a", "phash": "f5964bb554718658", "dhash": "b8300c0e160e1250", "phash_int": -7.50329045732719e+17, "collected_at": "2026-05-22T04:30:54.461575+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 22-39-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 22-39-22 CanonPowerShotA40.jpg", "file_name": "2003-02-01 22-39-22 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 22-39-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 332604.0, "mtime": "2003-02-01T20:39:20+00:00", "mtime_ts": 1044131960.0, "ctime": "2024-12-21T07:57:37.955620+00:00", "sha256_file": "d0869b86d6a728149791a3fb4b4a96d09071388ae28f7e1559b1180afacbd68f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 22:39:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4004", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 22:39:22", "EXIF DateTimeDigitized": "2003:02:01 22:39:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 3193, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161669", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "123", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "26778"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2c7d69eb9c56d636ed97de8aeecea988c1077813ad101d35e8aacd6507d7c143", "phash": "cf72349927c4c933", "dhash": "0000686769f27666", "phash_int": -3.498676128111605e+18, "collected_at": "2026-05-22T04:30:54.529189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-24 19-20-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-24 19-20-51 CanonPowerShotS40.jpg", "file_name": "2003-12-24 19-20-51 CanonPowerShotS40.jpg", "file_stem": "2003-12-24 19-20-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 467493.0, "mtime": "2003-12-24T18:20:50+00:00", "mtime_ts": 1072290050.0, "ctime": "2024-12-21T07:57:57.646255+00:00", "sha256_file": "ee79d7a0547bc5cd71776c96c41be9f020f9f048817413a030f9c9c461301d4d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:24 19:20:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4939", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:24 19:20:51", "EXIF DateTimeDigitized": "2003:12:24 19:20:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "541/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1082"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce1281eb01d022ffcaf32009f860de70286468566cebe02636ea581df6ffe804", "phash": "b9b69879cc347909", "dhash": "981a9cce521b9393", "phash_int": -5.064693082047089e+18, "collected_at": "2026-05-22T04:30:54.577189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-21-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-21-52 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-21-52 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-21-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1325641.0, "mtime": "2003-04-19T17:21:52+00:00", "mtime_ts": 1050772912.0, "ctime": "2024-12-21T07:57:45.411860+00:00", "sha256_file": "3c08b82f2f5104800a583d3d620ddba3118c637fc1fb3e1a6a6f545430821fdc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:21:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3641", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:21:52", "EXIF DateTimeDigitized": "2003:04:19 17:21:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a707c19fd63d6c4e38b9931c9cda8daf1fc894c7d2ad802c86232ccc076aaf6", "phash": "d49c2fcb69c094b6", "dhash": "f0ecd4d4d4d4d48c", "phash_int": -3.126571490602872e+18, "collected_at": "2026-05-22T04:30:54.623029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 17-55-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 17-55-43 CanonPowerShotS40.jpg", "file_name": "2003-03-08 17-55-43 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 17-55-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2334782.0, "mtime": "2003-03-08T16:55:42+00:00", "mtime_ts": 1047142542.0, "ctime": "2024-12-21T07:57:40.746710+00:00", "sha256_file": "b11172040e669166d1c25e3bc202254995839b1f77200baa3aa0066af857a461", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 17:55:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8367", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 17:55:43", "EXIF DateTimeDigitized": "2003:03:08 17:55:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8f76cc57c4701fb50b3726d30c83c479035e4b2a4221627be97855fb23f7cc5e", "phash": "d5b537c824464a77", "dhash": "daba7cb2b2905058", "phash_int": -3.0474682401046994e+18, "collected_at": "2026-05-22T04:30:54.704158+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 16-00-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 16-00-25 CanonPowerShotS40.jpg", "file_name": "2003-03-29 16-00-25 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 16-00-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2005603.0, "mtime": "2003-03-30T09:46:01+00:00", "mtime_ts": 1049017561.0, "ctime": "2024-12-21T07:57:42.728774+00:00", "sha256_file": "aff68d7b555ca5c8a17777682705557c963f159f208a962514a5b5e504fcc619", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 16:00:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5452", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 16:00:25", "EXIF DateTimeDigitized": "2003:03:29 16:00:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "258", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ba50e5cc8bc7d5c4cb35c1e123d5ddfc89141f1b900022a46058fb2657c65e4a", "phash": "c7c72a3215151dbd", "dhash": "eac162e0a0919191", "phash_int": -4.051222945206035e+18, "collected_at": "2026-05-22T04:30:54.710158+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 15-03-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 15-03-54 CanonPowerShotS40.jpg", "file_name": "2003-11-29 15-03-54 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 15-03-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1494611.0, "mtime": "2003-11-29T14:03:54+00:00", "mtime_ts": 1070114634.0, "ctime": "2024-12-21T07:57:54.721161+00:00", "sha256_file": "d21ee8ba300d3d1bbf21c7a4d35c985e6e69d3751a43d7ebda1d286928016a15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 15:03:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5064", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 15:03:54", "EXIF DateTimeDigitized": "2003:11:29 15:03:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[94, 173, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb7124389b4f08be3a7d4fbf6247c7f4435aaec165ceb7e0ffa578f82e869fe3", "phash": "c1ec3d5b40af780b", "dhash": "40c0c0c0c8c040d0", "phash_int": -4.4731328677491855e+18, "collected_at": "2026-05-22T04:30:54.855119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 19-00-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 19-00-35 CanonPowerShotS40.jpg", "file_name": "2003-10-08 19-00-35 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 19-00-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1760441.0, "mtime": "2003-10-09T06:48:30+00:00", "mtime_ts": 1065682110.0, "ctime": "2024-12-21T07:57:48.462959+00:00", "sha256_file": "716d0ab2209a00a30285edc20d1f32fd02f6810ff9a7d37517096ae40b36af1d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 19:00:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4877", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 19:00:35", "EXIF DateTimeDigitized": "2003:10:08 19:00:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65516", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20a05c5a5f87e3a940c3decbc5c4eca4cf7e565bdd156e58fe0b7a9c306db2a8", "phash": "81c2ad771b1d7866", "dhash": "f8f8f9f9e9fe7697", "phash_int": -9.096517570267351e+18, "collected_at": "2026-05-22T04:30:54.874194+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 14-18-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 14-18-54 CanonPowerShotS40.jpg", "file_name": "2003-03-29 14-18-54 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 14-18-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1861374.0, "mtime": "2003-03-30T09:44:08+00:00", "mtime_ts": 1049017448.0, "ctime": "2024-12-21T07:57:42.446765+00:00", "sha256_file": "70990ffd740d5e590ee5c1689bf1a56d0b48c52d3e12912ec8b100cbc9fd75cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 14:18:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5020", "EXIF ExposureTime": "1/200", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 14:18:54", "EXIF DateTimeDigitized": "2003:03:29 14:18:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "5209/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "5209"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae12b0becc08c0773493ca19c158f8376f97174cdf17714558c9ac6da51a19c0", "phash": "c7f88c3837d2689c", "dhash": "4850c94c4685e442", "phash_int": -4.0373228928550564e+18, "collected_at": "2026-05-22T04:30:55.012957+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 18-40-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 18-40-35 CanonPowerShotS40.jpg", "file_name": "2003-02-15 18-40-35 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 18-40-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2013197.0, "mtime": "2003-02-15T17:40:35+00:00", "mtime_ts": 1045330835.0, "ctime": "2024-12-21T07:57:38.981653+00:00", "sha256_file": "88b64a27059bd29dd74aee820a2897176b64b7520fbca44098506098b3f1ccc2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 18:40:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5632", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 18:40:35", "EXIF DateTimeDigitized": "2003:02:15 18:40:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "741/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65512", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fc0a1474095eaaf397b44e00f79c2a3ae83393ff8a5dcaffbdecc62f4484396", "phash": "d9f67260297c1b1c", "dhash": "a88c7832d2923233", "phash_int": -2.740877565869942e+18, "collected_at": "2026-05-22T04:30:55.016959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 19-31-57 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 19-31-57 CanonPowerShotA40.jpg", "file_name": "2003-11-29 19-31-57 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 19-31-57 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 348462.0, "mtime": "2003-11-29T18:31:57+00:00", "mtime_ts": 1070130717.0, "ctime": "2024-12-21T07:57:55.216177+00:00", "sha256_file": "6ed1b7470dd660050c01927789754c33813dcba1afff41c7a85d30df87650359", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 19:31:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3738", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 19:31:57", "EXIF DateTimeDigitized": "2003:11:29 19:31:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 1477, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1313103", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "51", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "530"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7742fb6c030b61c1fdc15916dc90476cb46b7acc786bdb59159ff368fa424a17", "phash": "86384bc1cc4f33eb", "dhash": "efedcdeeaeece4ef", "phash_int": -8.775180578202897e+18, "collected_at": "2026-05-22T04:30:55.095962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-14 18-13-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-14 18-13-17 CanonPowerShotS40.jpg", "file_name": "2003-11-14 18-13-17 CanonPowerShotS40.jpg", "file_stem": "2003-11-14 18-13-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1673415.0, "mtime": "2003-11-15T21:40:52+00:00", "mtime_ts": 1068932452.0, "ctime": "2024-12-21T07:57:52.873101+00:00", "sha256_file": "5a8c8a1341be41100370b20a10ad2d4e0f20f8c3efb02367c1cb34d7a1e05f89", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:14 18:13:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4135", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:14 18:13:17", "EXIF DateTimeDigitized": "2003:11:14 18:13:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "54", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3eb1b96ce9d1cfcad8fa56e7598bc858cdbdbe8fd1e432d1bc74dfd63e96e20", "phash": "94a50a72c98a77f3", "dhash": "f0e8ccf2d4d4e9f1", "phash_int": -7.735765296815114e+18, "collected_at": "2026-05-22T04:30:55.152964+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-30 12-41-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-30 12-41-19 CanonPowerShotS40.jpg", "file_name": "2003-10-30 12-41-19 CanonPowerShotS40.jpg", "file_stem": "2003-10-30 12-41-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1282313.0, "mtime": "2003-10-30T11:41:19+00:00", "mtime_ts": 1067514079.0, "ctime": "2024-12-21T07:57:50.084011+00:00", "sha256_file": "f55f9a58ffd572a647e7ea68729e1ad7c0edc56fb16043f48a31c5f95936a673", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:30 12:41:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4512", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:30 12:41:19", "EXIF DateTimeDigitized": "2003:10:30 12:41:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5910b894977a55ff0f2b5ede43b664c305897f0f4c77ea39466d5f2dd239ed09", "phash": "84b27956a1ab9e95", "dhash": "d8b8ecf5f4e8f1f2", "phash_int": -8.88490570186204e+18, "collected_at": "2026-05-22T04:31:49.481430+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 16-08-52 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 16-08-52 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 16-08-52 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 16-08-52 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 498209.0, "mtime": "2003-10-23T20:19:47+00:00", "mtime_ts": 1066940387.0, "ctime": "2024-12-21T07:57:46.873908+00:00", "sha256_file": "d561dbc99801fa657d1388f5ec63c09fa7e316fe03337e6fb48ee53e9219a504", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "4466", "EXIF ExposureTime": "1/700", "EXIF FNumber": "28/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 16:08:52", "EXIF DateTimeDigitized": "2003:08:12 16:08:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "19/2", "EXIF ApertureValue": "5", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "0", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "461ec19d7ed6c2416450619d3a8e669e273ffb7ddbbd8347873cb7200a8c89bb", "phash": "a5a544bd8d45b1d9", "dhash": "66c6ce665a1e0490", "phash_int": -6.510722105384522e+18, "collected_at": "2026-05-22T04:31:49.494430+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 13-28-21 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 13-28-21 CanonPowerShotA40.jpg", "file_name": "2003-02-23 13-28-21 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 13-28-21 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 618406.0, "mtime": "2003-02-23T11:28:20+00:00", "mtime_ts": 1045999700.0, "ctime": "2024-12-21T07:57:39.858681+00:00", "sha256_file": "3787432dd83c648e179c9c880cb824680d7e67e946de7203b38db795704a38b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 13:28:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6347", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 13:28:21", "EXIF DateTimeDigitized": "2003:02:23 13:28:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191913", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2190"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3fd936769318d9df64df9472595af0b98d6f69001f6f283dbc44c84011db1e36", "phash": "f5ec96d29549c207", "dhash": "80064252aaa91cba", "phash_int": -7.26039608721555e+17, "collected_at": "2026-05-22T04:31:49.597738+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-32-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-32-02 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-32-02 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-32-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2814798.0, "mtime": "2003-04-06T15:32:00+00:00", "mtime_ts": 1049643120.0, "ctime": "2024-12-21T07:57:44.558833+00:00", "sha256_file": "b433a43cf6a2bfa8d9d9b55021e8d3f213e92fbb33e75f0a6f5bae6a33de131f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:32:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6242", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:32:02", "EXIF DateTimeDigitized": "2003:04:06 16:32:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6b0aa6989799cc5ccd795f19cb7ad899421a266af21e5cdf3ef920b0ab54386", "phash": "c0f1b7c4c4de126e", "dhash": "949a9991c3c007dc", "phash_int": -4.543648493295759e+18, "collected_at": "2026-05-22T04:31:49.677808+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 20-42-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 20-42-13 CanonPowerShotS40.jpg", "file_name": "2003-02-15 20-42-13 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 20-42-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2087019.0, "mtime": "2003-02-15T19:42:13+00:00", "mtime_ts": 1045338133.0, "ctime": "2024-12-21T07:57:39.074656+00:00", "sha256_file": "0fcc4a1c2b37fa8acea28f2c965bfb557ac10af8450fe41d6ee9b6d99476e8f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 20:42:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6183", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 20:42:13", "EXIF DateTimeDigitized": "2003:02:15 20:42:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65250", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "47ab6f89834f82e283ab81d675cae3080093ea2acc36f6a6a9f7ac9e03819fef", "phash": "cbd97042896d9e95", "dhash": "c1d973737323a7a6", "phash_int": -3.7578489829881533e+18, "collected_at": "2026-05-22T04:31:49.734315+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 20-59-30 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 20-59-30 CanonPowerShotA40.jpg", "file_name": "2003-02-22 20-59-30 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 20-59-30 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 427175.0, "mtime": "2003-02-22T18:59:28+00:00", "mtime_ts": 1045940368.0, "ctime": "2024-12-21T07:57:39.649674+00:00", "sha256_file": "86e556aa8faaf4d633f7b91ed6d226ce4c23688c77d22d71752127919d315456", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 20:59:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3908", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 20:59:30", "EXIF DateTimeDigitized": "2003:02:22 20:59:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 4336, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181878", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "34", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "500"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "55cc3378706b21653f48308e44523e87f25b56f05fc8992a402c51d8a0474d71", "phash": "a4c45a2bb4379dd8", "dhash": "e2c0a286b6e71b35", "phash_int": -6.574030412300445e+18, "collected_at": "2026-05-22T04:31:49.748381+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-14-45 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-14-45 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-14-45 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-14-45 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 511307.0, "mtime": "2003-11-29T16:14:45+00:00", "mtime_ts": 1070122485.0, "ctime": "2024-12-21T07:57:55.075172+00:00", "sha256_file": "4c978ce375dc264485d3c429b9be160fd722d742f5b99fdd892d2b889b0d600e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:14:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:14:45", "EXIF DateTimeDigitized": "2003:11:29 17:14:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1443, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303086", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "104", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "845"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d11dffb815b7b15009ba137bb76b92678add04e48fc56d38f4cdb18d63def2a6", "phash": "dc36112e53499af5", "dhash": "24049480456592e8", "phash_int": -2.57885484595953e+18, "collected_at": "2026-05-22T04:31:49.833384+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-42-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-42-36 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-42-36 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-42-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2388768.0, "mtime": "2003-04-05T12:42:34+00:00", "mtime_ts": 1049546554.0, "ctime": "2024-12-21T07:57:43.584801+00:00", "sha256_file": "959e5c93d4e46d9b3f13ffce38a3623f179972cdd77598462f544e75c3f92ab9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:42:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6854", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:42:36", "EXIF DateTimeDigitized": "2003:04:05 13:42:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "206", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2ba2382dd190f26d574fc113ddb1235fb6c7f65d243c0f6a4accc857f0c0aa57", "phash": "d919d9b981fa1c32", "dhash": "10101978bc1408c0", "phash_int": -2.802969902288594e+18, "collected_at": "2026-05-22T04:31:49.961975+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 17-59-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 17-59-18 CanonPowerShotS40.jpg", "file_name": "2003-11-02 17-59-18 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 17-59-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1736540.0, "mtime": "2003-11-02T16:59:18+00:00", "mtime_ts": 1067792358.0, "ctime": "2024-12-21T07:57:51.290050+00:00", "sha256_file": "055a981934fa51457d746a945cd8678b0b56a9cfb0ffd9107923a7acbb8620bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 17:59:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5385", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 17:59:18", "EXIF DateTimeDigitized": "2003:11:02 17:59:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65458", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a31f138eb8bf7e1edab2e50543eec2a194a0db6c8c5a1494a2905bce231e77fb", "phash": "db61673ee20ccc34", "dhash": "ccdaf2f9e8f1e0e8", "phash_int": -2.638714386884277e+18, "collected_at": "2026-05-22T04:31:49.986971+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-49-31 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-49-31 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-49-31 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-49-31 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 302308.0, "mtime": "2003-02-09T10:49:30+00:00", "mtime_ts": 1044787770.0, "ctime": "2024-12-21T07:57:38.304631+00:00", "sha256_file": "1840339583fb674792a4ade05e5779782c13e9e9f4fb098b3ea9eb4714a801ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:49:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3937", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:49:31", "EXIF DateTimeDigitized": "2003:02:09 12:49:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1448, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171771", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "79", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "89", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb980c30e89ad260bef68d3cee897cd0ed751c3f82cef6ecc3322052c02a4c79", "phash": "c8c02d2eda1ef13e", "dhash": "c59294f1e1d2332b", "phash_int": -3.981132391344312e+18, "collected_at": "2026-05-22T04:31:50.048234+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 19-21-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 19-21-29 CanonPowerShotS40.jpg", "file_name": "2003-03-08 19-21-29 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 19-21-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1771509.0, "mtime": "2003-03-09T17:43:18+00:00", "mtime_ts": 1047231798.0, "ctime": "2024-12-21T07:57:41.295727+00:00", "sha256_file": "4c68d7f5de1f494db2b36cc894b95ce8b6f89a416117f0666e4c2d474dd97465", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 19:21:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "5583", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 19:21:29", "EXIF DateTimeDigitized": "2003:03:08 19:21:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "23", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06a5cc5d1c1fa15d04d0cc615942c78a563aaea39381fc532a106f5eee5c5710", "phash": "a35f352a966d189a", "dhash": "58dc90c4ed9dcfd6", "phash_int": -6.674557665711155e+18, "collected_at": "2026-05-22T04:31:50.129639+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-10-48 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-10-48 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-10-48 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-10-48 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 755915.0, "mtime": "2003-02-01T12:10:46+00:00", "mtime_ts": 1044101446.0, "ctime": "2024-12-21T07:57:37.593608+00:00", "sha256_file": "a51091f02797a58a485aee3c8d2af545c12482089955017dfcbf5db0bfaaa6f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:10:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5756", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:10:48", "EXIF DateTimeDigitized": "2003:02:01 14:10:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161617", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8885"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "62d484affedb9d7ad1c861acf640762d04436ceaea225ae77cbd39e337c7f0a8", "phash": "e20d51aabcc6e17c", "dhash": "c2c8ceed2dcf4dcc", "phash_int": -2.157978852687159e+18, "collected_at": "2026-05-22T04:31:50.134743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-46-29 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-46-29 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-46-29 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-46-29 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 281149.0, "mtime": "2003-10-23T20:19:39+00:00", "mtime_ts": 1066940379.0, "ctime": "2024-12-21T07:57:46.679901+00:00", "sha256_file": "0833ca325b7b75be2434276e417312db0234aa160668317f85f057fb40e72596", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/45", "EXIF FNumber": "9/2", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:46:29", "EXIF DateTimeDigitized": "2003:08:12 15:46:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "11/2", "EXIF ApertureValue": "43/10", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "43/10", "EXIF SubjectDistance": "199/100", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "56/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability Tag 0x0060": "[]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "120", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "add88a421b466c09b3417046a7a76b9215168822861f8bac6ca34a0bd4f4544c", "phash": "e482df71a2c6a8b9", "dhash": "ecf2eccc960e6e23", "phash_int": -1.98077520693437e+18, "collected_at": "2026-05-22T04:31:50.259391+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-57-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-57-51 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-57-51 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-57-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1784423.0, "mtime": "2003-04-06T15:57:50+00:00", "mtime_ts": 1049644670.0, "ctime": "2024-12-21T07:57:44.904844+00:00", "sha256_file": "4eef6ebe2848a7c4220a2ca8ac2b0356d64f8add6a3b91d810dba0b58361f09a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:57:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4629", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:57:51", "EXIF DateTimeDigitized": "2003:04:06 16:57:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4801d69e9b72cc6f8d5c7c741e879e07271adf7109b18fd79d8a2fa5175aaf26", "phash": "fdb2097442c1be4b", "dhash": "7e3e3c802536d27b", "phash_int": -1.660598413184373e+17, "collected_at": "2026-05-22T04:31:50.308393+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-57-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-57-02 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-57-02 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-57-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1673542.0, "mtime": "2002-11-13T08:57:00+00:00", "mtime_ts": 1037177820.0, "ctime": "2024-12-21T07:57:37.233596+00:00", "sha256_file": "6ba83ed5d2238ccdb430fa25f573e8db71cb9126811bdff11def2dcfa8480daa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:57:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1813", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:57:02", "EXIF DateTimeDigitized": "2002:11:13 09:57:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2000"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "287cbaeb485cfa8484840fc82b8114ef8c90688af06b02e7a001f301fab181a5", "phash": "80815d2e97c5e9b7", "dhash": "fcfefefcfff7f4f8", "phash_int": -9.186959310162893e+18, "collected_at": "2026-05-22T04:31:50.381920+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 18-58-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 18-58-55 CanonPowerShotS40.jpg", "file_name": "2003-10-08 18-58-55 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 18-58-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1465504.0, "mtime": "2003-10-09T06:48:09+00:00", "mtime_ts": 1065682089.0, "ctime": "2024-12-21T07:57:48.410957+00:00", "sha256_file": "f8e99f8799679bd338e4a954c699ca9c6f3360a6f052e6306e4360b36924be4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 18:58:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4727", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 18:58:55", "EXIF DateTimeDigitized": "2003:10:08 18:58:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7f45fc0eeac4e7c0680de2e4b9f17659920a6d3c06e2caf792cc482d509e0b9e", "phash": "8c6319ce7618735d", "dhash": "f8fbfbf7e7f3b372", "phash_int": -8.330786511170014e+18, "collected_at": "2026-05-22T04:31:50.439923+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 21-06-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 21-06-22 CanonPowerShotA40.jpg", "file_name": "2003-03-29 21-06-22 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 21-06-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 502498.0, "mtime": "2003-03-30T10:03:33+00:00", "mtime_ts": 1049018613.0, "ctime": "2024-12-21T07:57:42.771775+00:00", "sha256_file": "3dccafe2c422d9ecf156181252bf45f2bfe6611976ce1ec15ba8728c1c1809bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 21:06:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4882", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 21:06:22", "EXIF DateTimeDigitized": "2003:03:29 21:06:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 321, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202017", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02315c3d9c71e9e4274999ae22b76d6e128cbc2a04979a9d8fb93198284cbe25", "phash": "c72831ce9b20f16f", "dhash": "e6678fd5546469ca", "phash_int": -4.0959690976578145e+18, "collected_at": "2026-05-22T04:31:50.483924+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-16-10 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-16-10 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-16-10 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-16-10 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 391840.0, "mtime": "2003-11-29T16:16:10+00:00", "mtime_ts": 1070122570.0, "ctime": "2024-12-21T07:57:55.100173+00:00", "sha256_file": "388bc5f192f8854dad614702e9f4337e53d11b9c50441a376dbc0c849de70768", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:16:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4777", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:16:10", "EXIF DateTimeDigitized": "2003:11:29 17:16:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4989, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303089", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2067cba3bccba91fc2516ca9d9629cd4b71ac70c9d4927570eef6383d7f3787c", "phash": "96d563c832aeb22e", "dhash": "8c586c74f4b0e5cd", "phash_int": -7.578041086486072e+18, "collected_at": "2026-05-22T04:31:50.558928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 17-58-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 17-58-41 CanonPowerShotS40.jpg", "file_name": "2003-11-02 17-58-41 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 17-58-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1731058.0, "mtime": "2003-11-02T16:58:41+00:00", "mtime_ts": 1067792321.0, "ctime": "2024-12-21T07:57:51.239048+00:00", "sha256_file": "b66a21f1dcc73f8fda1cebf028cdbb9070beaf844c209fd3b23fa78308c9c56a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 17:58:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 17:58:41", "EXIF DateTimeDigitized": "2003:11:02 17:58:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65465", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "adb8b8d751bd08cbeea7bc3a84462d8fa7b39fba8838e45021602803640272b7", "phash": "8a97874c703e9d96", "dhash": "fc747e9b91b3a38b", "phash_int": -8.460144612621772e+18, "collected_at": "2026-05-22T04:31:50.564928+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 15-16-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 15-16-08 CanonPowerShotA40.jpg", "file_name": "2003-02-15 15-16-08 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 15-16-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 437339.0, "mtime": "2003-02-15T13:16:06+00:00", "mtime_ts": 1045314966.0, "ctime": "2024-12-21T07:57:38.691643+00:00", "sha256_file": "6e4ac18c7e520b913206e30dd1a61ce92d509f0e5fe6522d6813261e3517351a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 15:16:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3649", "EXIF ExposureTime": "1/320", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 15:16:08", "EXIF DateTimeDigitized": "2003:02:15 15:16:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181841", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "11536"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c9882ea30fd8cb8bf2125e9c05e943a2b07335334c1ccdcb9d94b60ff003470", "phash": "f0498e30db6c34db", "dhash": "8d868612988c0ee0", "phash_int": -1.1322174908160929e+18, "collected_at": "2026-05-22T04:31:50.675521+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-09-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-09-30 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-09-30 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-09-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2914438.0, "mtime": "2003-03-30T12:09:28+00:00", "mtime_ts": 1049026168.0, "ctime": "2024-12-21T07:57:43.028784+00:00", "sha256_file": "241a00eea3e6295e4fde456783c96cd8e1e65e8b7fea069d191f38336024dc1b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:09:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7150", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:09:30", "EXIF DateTimeDigitized": "2003:03:30 13:09:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61c0045a14dc7bd4fa82f21cc426f06245df8f1f511c31e3d02d71b96944689f", "phash": "dd942972f426cd34", "dhash": "d452f2e03029d0f2", "phash_int": -2.4803119210751063e+18, "collected_at": "2026-05-22T04:31:50.733518+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-30-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-30-57 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-30-57 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-30-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1794033.0, "mtime": "2003-04-06T15:30:56+00:00", "mtime_ts": 1049643056.0, "ctime": "2024-12-21T07:57:44.487831+00:00", "sha256_file": "f6f91ce39ba3945bb0c466fda161d9aa7151aeed9a15bc4b2fa210511f961db0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:30:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "9482", "EXIF ExposureTime": "1/320", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:30:57", "EXIF DateTimeDigitized": "2003:04:06 16:30:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1111/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1111"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "397637df6c1e971bb959398a48717c97687f0584c52089a08d2c5dc2df2365d3", "phash": "e1f997d883c28d25", "dhash": "909383839630e046", "phash_int": -2.1635311897955172e+18, "collected_at": "2026-05-22T04:31:50.816274+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 18-27-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 18-27-12 CanonPowerShotS40.jpg", "file_name": "2003-12-26 18-27-12 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 18-27-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1882472.0, "mtime": "2003-12-26T17:27:10+00:00", "mtime_ts": 1072459630.0, "ctime": "2024-12-21T07:57:57.764259+00:00", "sha256_file": "ba71ec56e26200f2115eff1b7797a518970f93cd7bfb793b1163528e564bd9ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 18:27:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6838", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 18:27:12", "EXIF DateTimeDigitized": "2003:12:26 18:27:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[72, 191, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "47", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ccc377e4d8bb9c5a8348296c966cde08b0ff9424be05165535c3e810535dc52b", "phash": "9594467baf2561ca", "dhash": "e6f4d41e199ae664", "phash_int": -7.668426768471728e+18, "collected_at": "2026-05-22T04:31:50.878108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-24-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-24-18 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-24-18 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-24-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1435470.0, "mtime": "2002-09-28T13:24:16+00:00", "mtime_ts": 1033219456.0, "ctime": "2024-12-21T07:57:36.361568+00:00", "sha256_file": "5097b52788574f868562bb9a6abef73b6e465067a599a73daf39843cb015db91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:24:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3586", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:24:18", "EXIF DateTimeDigitized": "2002:09:28 13:24:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 217, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f359a91da8e956807beb0bad53047653eef8a306658213034ef3866ee36f2ea", "phash": "ffff2c202bae3800", "dhash": "23082848c80822b8", "phash_int": -232958293297152.0, "collected_at": "2026-05-22T04:31:50.931503+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 22-40-16 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 22-40-16 CanonPowerShotA40.jpg", "file_name": "2003-02-01 22-40-16 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 22-40-16 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 396549.0, "mtime": "2003-02-01T20:40:14+00:00", "mtime_ts": 1044132014.0, "ctime": "2024-12-21T07:57:37.985621+00:00", "sha256_file": "ba3a6493bd2d736bbe21abe3f9fb2c1a008ad4fbd6aa1b65026090f1d63d0e66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 22:40:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3757", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 22:40:16", "EXIF DateTimeDigitized": "2003:02:01 22:40:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2453, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161674", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "89", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "952"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b43b122044f40a7757693e1448b80f774fd2ccc5ca14a88ff799881ca1557b62", "phash": "994e67356acd9262", "dhash": "f1b1f1f13170d2d1", "phash_int": -7.399863658600361e+18, "collected_at": "2026-05-22T04:31:51.014924+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-56-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-56-57 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-56-57 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-56-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2123311.0, "mtime": "2003-04-06T15:56:56+00:00", "mtime_ts": 1049644616.0, "ctime": "2024-12-21T07:57:44.832842+00:00", "sha256_file": "c7b3ca8c12b34049b2c4f19ae682afa17fcc80f4445a4642cfdb6d9d6aa09150", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:56:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6007", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:56:57", "EXIF DateTimeDigitized": "2003:04:06 16:56:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2eb2cfff944b91de00483740a8177cdeca9d6c77983bd1a7a936f2b95b0b1e4e", "phash": "91f2e4af4d0436cb", "dhash": "86089cf8d37df6b4", "phash_int": -7.93002455228349e+18, "collected_at": "2026-05-22T04:31:51.016929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-44-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-44-18 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-44-18 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-44-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 307879.0, "mtime": "2003-04-05T15:44:16+00:00", "mtime_ts": 1049557456.0, "ctime": "2024-12-21T07:57:44.006815+00:00", "sha256_file": "1a351fc254bbd92d940cde868300b4438fd6304769a5f51414b4c22821df4825", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:44:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4720", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:44:18", "EXIF DateTimeDigitized": "2003:04:05 16:44:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "5", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df9021b658baee569fd9baeab919c8a0112285fd37b7d679548d2e4e84f6913d", "phash": "8fab323e4dcc94c4", "dhash": "6f4b77626374a69c", "phash_int": -8.094320662093721e+18, "collected_at": "2026-05-22T04:31:51.131103+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-59-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-59-05 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-59-05 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-59-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1140498.0, "mtime": "2002-11-13T08:59:04+00:00", "mtime_ts": 1037177944.0, "ctime": "2024-12-21T07:57:37.324599+00:00", "sha256_file": "65b62cf033585d73b4b0ebc477a35523aec5b6714a5a1970fe55f75ede03dee8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:59:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3283", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:59:05", "EXIF DateTimeDigitized": "2002:11:13 09:59:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "202", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08b6f6b26833120cdad7c806901135b67fc6f2ca7f844a52cad754fa3c12d568", "phash": "ccce2d3131d3330f", "dhash": "e0e0e0e8c040c880", "phash_int": -3.688961355457285e+18, "collected_at": "2026-05-22T04:31:51.190108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 21-07-24 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 21-07-24 CanonPowerShotA40.jpg", "file_name": "2003-03-29 21-07-24 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 21-07-24 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 467195.0, "mtime": "2003-03-30T10:03:39+00:00", "mtime_ts": 1049018619.0, "ctime": "2024-12-21T07:57:42.798776+00:00", "sha256_file": "30b34128aecbf258f765237f9da3575dc0c4c34012a4409eede83149c7d33f2a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 21:07:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4373", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 21:07:24", "EXIF DateTimeDigitized": "2003:03:29 21:07:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 602, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202021", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ff0c0ae43d6f67bb45a4a3779ee3ce5bcad174500138c54f99dfb59c1e0bde8", "phash": "fe39060340b8feec", "dhash": "e8503212010929a1", "phash_int": -1.2806450336281422e+17, "collected_at": "2026-05-22T04:31:51.232108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 12-03-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 12-03-43 CanonPowerShotS40.jpg", "file_name": "2003-11-02 12-03-43 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 12-03-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1270830.0, "mtime": "2003-11-02T11:03:43+00:00", "mtime_ts": 1067771023.0, "ctime": "2024-12-21T07:57:51.192047+00:00", "sha256_file": "8433a2014772e3957b0382923ab090a673f5c71fb3eaa917ba5f19916229aafc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 12:03:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5087", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 12:03:43", "EXIF DateTimeDigitized": "2003:11:02 12:03:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fffc5d9562e8c7ab8d819962a0d22aea77c0763c6ebf452a6116f650f312fba4", "phash": "c6043f6b7c3019f3", "dhash": "2566cca4e1c18909", "phash_int": -4.1781448234154e+18, "collected_at": "2026-05-22T04:31:51.352110+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 20-03-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 20-03-02 CanonPowerShotS40.jpg", "file_name": "2003-03-08 20-03-02 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 20-03-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2327590.0, "mtime": "2003-03-08T19:03:00+00:00", "mtime_ts": 1047150180.0, "ctime": "2024-12-21T07:57:41.317728+00:00", "sha256_file": "51293fbed333cf0a701b95bfe9ea00fc8746d7a041999e15eb862f9bfd8f91a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 20:03:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 20:03:02", "EXIF DateTimeDigitized": "2003:03:08 20:03:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "04102315dd7c9d0185eaccdd7105f81ed743c58461398548d81726be7bd294a7", "phash": "dc6a63956686645d", "dhash": "283b35253234348c", "phash_int": -2.564127544512716e+18, "collected_at": "2026-05-22T04:31:51.367116+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-34-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-34-32 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-34-32 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-34-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2155678.0, "mtime": "2003-11-16T18:34:32+00:00", "mtime_ts": 1069007672.0, "ctime": "2024-12-21T07:57:53.092108+00:00", "sha256_file": "ac10e073003f8044eaa11abda17bbabbee291e27a5175a5094089e67a8b15425", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:34:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6100", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:34:32", "EXIF DateTimeDigitized": "2003:11:16 19:34:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "39", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b97157d4f030b70592a40433099bde3028572aedc12d56eebcd1bbf12815e91", "phash": "b7e6913148b326dc", "dhash": "ce6e6e4795cc1891", "phash_int": -5.195305479266163e+18, "collected_at": "2026-05-22T04:31:51.550991+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-59-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-59-17 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-59-17 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-59-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 3159843.0, "mtime": "2003-03-30T12:59:16+00:00", "mtime_ts": 1049029156.0, "ctime": "2024-12-21T07:57:43.069785+00:00", "sha256_file": "3cc7c1e9e0724fc080115ea609cb9e1fc13e510f0792ed80b690f39ded1f4504", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:59:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7546", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:59:17", "EXIF DateTimeDigitized": "2003:03:30 13:59:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9a27d95bd3e4c139858f056dde5b6f0202b1473f72de0be0c77d3f4ed5870ded", "phash": "d5d5d89143685c6d", "dhash": "908c22c8ceac8481", "phash_int": -3.038284255178761e+18, "collected_at": "2026-05-22T04:31:51.554993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 22-02-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 22-02-00 CanonPowerShotA40.jpg", "file_name": "2003-03-29 22-02-00 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 22-02-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 351837.0, "mtime": "2003-03-30T10:03:59+00:00", "mtime_ts": 1049018639.0, "ctime": "2024-12-21T07:57:42.907780+00:00", "sha256_file": "4a33af20bf7700a533c834ba00fa33e7b8cd417685409e0d7c2d4e9eb49eb073", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 22:02:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2936", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 22:02:00", "EXIF DateTimeDigitized": "2003:03:29 22:02:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1129, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202035", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9903e2b86687d8d52c7740aff5c183b8352fca645d09534dc6698cfb05d014a1", "phash": "981e67696633999c", "dhash": "42b1303131f0b2e4", "phash_int": -7.485431828259301e+18, "collected_at": "2026-05-22T04:31:51.699269+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-32-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-32-10 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-32-10 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-32-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1893381.0, "mtime": "2003-09-14T13:32:10+00:00", "mtime_ts": 1063546330.0, "ctime": "2024-12-21T07:57:47.414925+00:00", "sha256_file": "e73a39fc619499128671a03c950825914c4611f1fdb7ced891bcee39e8f2ef1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:32:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5595", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:32:10", "EXIF DateTimeDigitized": "2003:09:14 15:32:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "71/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1420"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5928ca04e42487f2a295a3ed4f258540c8fbbf09c9e9722dce7d99c3022ccb17", "phash": "ce923f3f7001a539", "dhash": "3c65c4c021636327", "phash_int": -3.5617148136019953e+18, "collected_at": "2026-05-22T04:31:51.721500+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-40-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-40-39 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-40-39 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-40-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 355421.0, "mtime": "2003-04-05T15:40:38+00:00", "mtime_ts": 1049557238.0, "ctime": "2024-12-21T07:57:43.909812+00:00", "sha256_file": "5179003cf478b451181beff280124bdaf0527398de146ad78742f91ae05394d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:40:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5311", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:40:39", "EXIF DateTimeDigitized": "2003:04:05 16:40:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35996ce7b1ed6ff794152d2719e411f8d8b666f5f209975ad6b041e1f58e2205", "phash": "ea2b2f83266cb38c", "dhash": "4b0b9b83f0d8e1ad", "phash_int": -1.573111404503977e+18, "collected_at": "2026-05-22T04:31:51.825045+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-36-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-36-51 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-36-51 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-36-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1666454.0, "mtime": "2003-12-21T13:36:50+00:00", "mtime_ts": 1072013810.0, "ctime": "2024-12-21T07:57:56.715225+00:00", "sha256_file": "0d7e749e03fb32ef0a8ab55e33ac938bbcc5efa6be1d298057ae6a03b05ab0dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:36:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5683", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:36:51", "EXIF DateTimeDigitized": "2003:12:21 14:36:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "341/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "77", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1705"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3753c561b943b776283835a8f93ca77f01371a6864087ae7450326fccf3f2ec5", "phash": "b4c597cdac207e07", "dhash": "b4ec8cb632351c0c", "phash_int": -5.420759666858623e+18, "collected_at": "2026-05-22T04:31:51.830046+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 18-51-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 18-51-12 CanonPowerShotS40.jpg", "file_name": "2003-10-26 18-51-12 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 18-51-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1523836.0, "mtime": "2003-10-26T17:51:12+00:00", "mtime_ts": 1067190672.0, "ctime": "2024-12-21T07:57:49.516993+00:00", "sha256_file": "4daf7402cf2a46bbb0383c5f5d7d51157b84282af871ebaef21b9798d46c6877", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 18:51:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3479", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 18:51:12", "EXIF DateTimeDigitized": "2003:10:26 18:51:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "719/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 374, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "719"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ddd7c692ddb8449a4eb9ce3e8085e9254ba17e8a8d8d68aba643f0816e54c645", "phash": "d44648c1b5574f6d", "dhash": "c0e3642c1c9890b0", "phash_int": -3.150750892490797e+18, "collected_at": "2026-05-22T04:31:51.985397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-23-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-23-25 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-23-25 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-23-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1806525.0, "mtime": "2003-09-14T13:23:25+00:00", "mtime_ts": 1063545805.0, "ctime": "2024-12-21T07:57:47.384924+00:00", "sha256_file": "6d9732131b69d77f036c596405337e72f1a2a8f4bfed0bfdb7765ae12ec53705", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:23:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6283", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:23:25", "EXIF DateTimeDigitized": "2003:09:14 15:23:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "196", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10098995faa7691416364a7762f3af393b2f5781fc479d590ae34d1e9b0dff7e", "phash": "90d48d263e3b7ad2", "dhash": "b4c4989ccccdd8d1", "phash_int": -8.01062264179291e+18, "collected_at": "2026-05-22T04:31:52.000491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 15-12-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 15-12-21 CanonPowerShotS40.jpg", "file_name": "2003-04-20 15-12-21 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 15-12-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1929765.0, "mtime": "2003-04-20T14:12:20+00:00", "mtime_ts": 1050847940.0, "ctime": "2024-12-21T07:57:45.733871+00:00", "sha256_file": "bb8bd16bd6b540f0d08d841647a33543e08953e2fcf1ceae6b17467dc403b594", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 15:12:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8549", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 15:12:21", "EXIF DateTimeDigitized": "2003:04:20 15:12:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "81/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "223", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "405"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b6d9cd8160a1c1a05d069eddfd3ec0a054b72908aa56ab0d5dca24793479309", "phash": "d4997ae6a14b9689", "dhash": "9ab074d4ce2c20a8", "phash_int": -3.1273333352649467e+18, "collected_at": "2026-05-22T04:31:56.153264+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-24-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-24-44 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-24-44 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-24-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 934945.0, "mtime": "2003-04-19T17:24:44+00:00", "mtime_ts": 1050773084.0, "ctime": "2024-12-21T07:57:45.476863+00:00", "sha256_file": "8cadf1d5b06fd50184207d3615cec0e51ad96f618dacdb658d3e5dd56633c420", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:24:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1995", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:24:44", "EXIF DateTimeDigitized": "2003:04:19 17:24:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "198", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "78a73742faae155e3f66b3f7fa058e380f034c702893c7388744ebc56c1625f3", "phash": "8c9a3367cc9c3333", "dhash": "b29ef0f0e0e28eb2", "phash_int": -8.315277241078762e+18, "collected_at": "2026-05-22T04:31:56.173263+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-28 16-55-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-28 16-55-28 CanonPowerShotS40.jpg", "file_name": "2003-12-28 16-55-28 CanonPowerShotS40.jpg", "file_stem": "2003-12-28 16-55-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1470207.0, "mtime": "2003-12-28T15:55:26+00:00", "mtime_ts": 1072626926.0, "ctime": "2024-12-21T07:57:58.677289+00:00", "sha256_file": "dc016a61798f4ccf1cfc1a5e0dee54a652a7d81176424976ff5e998a1a84cb04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:28 16:55:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4598", "EXIF ExposureTime": "1", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:28 16:55:28", "EXIF DateTimeDigitized": "2003:12:28 16:55:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65424", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16562077d088df73ca32b222a94d7e80c338a83dad503293a3c8d913ec7164e7", "phash": "b662de33815d463c", "dhash": "ce8f67da9f3c3c38", "phash_int": -5.30443309829395e+18, "collected_at": "2026-05-22T04:31:56.588553+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 15-53-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 15-53-09 CanonPowerShotS40.jpg", "file_name": "2003-09-16 15-53-09 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 15-53-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1640792.0, "mtime": "2003-09-16T13:53:09+00:00", "mtime_ts": 1063720389.0, "ctime": "2024-12-21T07:57:47.947942+00:00", "sha256_file": "c76fa696219303fa264d7991a4cba9170134ae43e0d99f0c24046d64f30dc9ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 15:53:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5170", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 15:53:09", "EXIF DateTimeDigitized": "2003:09:16 15:53:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6a5e5dac05856c81df885b05e8b4b9e45bc3237ba4d634a015271e459b25da87", "phash": "e4e13933e30933e3", "dhash": "9b80c2c204062300", "phash_int": -1.954217868286938e+18, "collected_at": "2026-05-22T04:31:56.657555+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-52-55 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-52-55 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-52-55 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-52-55 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 321299.0, "mtime": "2003-10-23T20:19:42+00:00", "mtime_ts": 1066940382.0, "ctime": "2024-12-21T07:57:46.770904+00:00", "sha256_file": "25af93fe7cb12dadbe2e0932fc314f304d47978cb655ab503c203df01973b744", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/30", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:52:55", "EXIF DateTimeDigitized": "2003:08:12 15:52:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "5", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "73/50", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "080c57180c9369e38d93dcfead73dda3d9f83260a267d2466105647627c118f1", "phash": "a988d5f2f3582d25", "dhash": "9df777138b470606", "phash_int": -6.230494845025637e+18, "collected_at": "2026-05-22T04:31:56.850881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-32-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-32-18 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-32-18 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-32-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1754093.0, "mtime": "2003-12-21T13:32:16+00:00", "mtime_ts": 1072013536.0, "ctime": "2024-12-21T07:57:56.676224+00:00", "sha256_file": "47f10d7857b9e183eff329652078595dda571dfab9188a20db41071c638ae71a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:32:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5624", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:32:18", "EXIF DateTimeDigitized": "2003:12:21 14:32:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[112, 155, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dbf9200d6cfcc9b77448d470164be20ba1b9649ac1178a6322da0585893c7642", "phash": "99de6cce8a616332", "dhash": "713098f8b8e29696", "phash_int": -7.359325106736111e+18, "collected_at": "2026-05-22T04:31:56.914764+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-28 16-31-48 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-28 16-31-48 CanonPowerShotS40.jpg", "file_name": "2003-10-28 16-31-48 CanonPowerShotS40.jpg", "file_stem": "2003-10-28 16-31-48 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1430762.0, "mtime": "2003-10-28T15:31:48+00:00", "mtime_ts": 1067355108.0, "ctime": "2024-12-21T07:57:49.706999+00:00", "sha256_file": "6bd09b34e248b8a882245f9d566b3789d0be3a2fa3b899e309663f9c580fe6a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:28 16:31:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4502", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:28 16:31:48", "EXIF DateTimeDigitized": "2003:10:28 16:31:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 287, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "73", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9c708cffd27f8b08614f6b2a28ee9911b0139ce10ec2da17ab2d24988c98317", "phash": "9e7f212cc2878d95", "dhash": "37f278686c31f0d0", "phash_int": -7.025860417548744e+18, "collected_at": "2026-05-22T04:31:57.126378+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-23 14-29-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-23 14-29-51 CanonPowerShotS40.jpg", "file_name": "2003-12-23 14-29-51 CanonPowerShotS40.jpg", "file_stem": "2003-12-23 14-29-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 541734.0, "mtime": "2003-12-23T13:29:50+00:00", "mtime_ts": 1072186190.0, "ctime": "2024-12-21T07:57:57.555253+00:00", "sha256_file": "3450c510d86d7ca3a213e9068ae10314b28ebaf1dfcfd0bd8e73388234dcd568", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:23 14:29:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5315", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:23 14:29:51", "EXIF DateTimeDigitized": "2003:12:23 14:29:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65c78707e3aafdcf42053c3f424ec66f22c70f2e1008b5eff50d6034aa306629", "phash": "8d2de35a4aca2a3d", "dhash": "c94e367173f0f0e1", "phash_int": -8.273706963468408e+18, "collected_at": "2026-05-22T04:31:57.174560+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-35-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-35-58 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-35-58 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-35-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1518766.0, "mtime": "2003-12-21T14:35:56+00:00", "mtime_ts": 1072017356.0, "ctime": "2024-12-21T07:57:56.931232+00:00", "sha256_file": "5776b95a4c6a9b91a6f5ed8aa678a1ecc494566bb0e1d7f255bb1726212a3934", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:35:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5648", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:35:58", "EXIF DateTimeDigitized": "2003:12:21 15:35:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[61, 204, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac476e29d0760fd43a8c8f106d078563e1266e8a2b035969ed568b0c9f348e33", "phash": "d9ed069970134db3", "dhash": "8282929092b0389c", "phash_int": -2.7435293419186877e+18, "collected_at": "2026-05-22T04:31:57.442939+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-43-52 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-43-52 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-43-52 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-43-52 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 894878.0, "mtime": "2003-02-01T12:43:50+00:00", "mtime_ts": 1044103430.0, "ctime": "2024-12-21T07:57:37.738613+00:00", "sha256_file": "dc16daa25b5a5b174fb7ff1c0892e694ac3ae03dc26eae98719bbf6a646a7794", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:43:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "8312", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:43:52", "EXIF DateTimeDigitized": "2003:02:01 14:43:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161638", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "283", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "819"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6ca788abf8bc3cf0fc200f4e95d03b343bbe658bf7da5b27b895943be1d6402", "phash": "85996666bbcc45aa", "dhash": "64f8f2d24fc4e4ae", "phash_int": -8.819905803804982e+18, "collected_at": "2026-05-22T04:31:57.462112+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-16-13 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-16-13 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-16-13 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-16-13 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 414301.0, "mtime": "2003-12-03T16:11:35+00:00", "mtime_ts": 1070467895.0, "ctime": "2024-12-21T07:57:54.890167+00:00", "sha256_file": "7d469433aa057d07a8061babe5e1c8d66db99b7affd4f4707009483ad548aefc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:16:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1430", "Thumbnail JPEGInterchangeFormatLength": "3565", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:16:13", "EXIF DateTimeDigitized": "2003:11:29 16:16:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1303065", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "0", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fb9a04bfa8abdc5137a0dbee21e647a84bf5d4b3bc0b64b31dba4c98fff9858", "phash": "ccb331cf6c4c6698", "dhash": "a6caa16373e3f096", "phash_int": -3.696556102196108e+18, "collected_at": "2026-05-22T04:31:57.597792+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-31-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-31-22 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-31-22 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-31-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1582338.0, "mtime": "2003-11-04T09:31:22+00:00", "mtime_ts": 1067938282.0, "ctime": "2024-12-21T07:57:51.453055+00:00", "sha256_file": "b78414682055f6e5315e80b45a177612fd33a61d3a18041e3921eb79e73ccfa2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:31:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5905", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:31:22", "EXIF DateTimeDigitized": "2003:11:04 10:31:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[66, 202, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8a8d6e2dcf24d4483ec258c3c0691d2bd618373759d32332ccae85f0b5e9d9a", "phash": "d8cf7f040c131e7a", "dhash": "614159d1b89c981e", "phash_int": -2.8238987859788355e+18, "collected_at": "2026-05-22T04:31:57.613870+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 17-44-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 17-44-25 CanonPowerShotA40.jpg", "file_name": "2003-02-01 17-44-25 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 17-44-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 446323.0, "mtime": "2003-02-01T15:44:24+00:00", "mtime_ts": 1044114264.0, "ctime": "2024-12-21T07:57:37.894618+00:00", "sha256_file": "1f57669a73ec571d7d30606f1e8b7f78bd4f295c7d61a6afd0220f1e640a67b4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 17:44:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4149", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 17:44:25", "EXIF DateTimeDigitized": "2003:02:01 17:44:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2607, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161659", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "110", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7d63ac7b282eb8d71ee3a83311a078350e28ddc9d10e81b3633b225e650de20d", "phash": "c33c0c6ca2337fe8", "dhash": "f1b2c8ccc8e0f8f8", "phash_int": -4.3786110769936794e+18, "collected_at": "2026-05-22T04:31:57.842108+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 15-20-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 15-20-02 CanonPowerShotS40.jpg", "file_name": "2003-02-23 15-20-02 CanonPowerShotS40.jpg", "file_stem": "2003-02-23 15-20-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2370686.0, "mtime": "2003-02-23T14:20:00+00:00", "mtime_ts": 1046010000.0, "ctime": "2024-12-21T07:57:39.945684+00:00", "sha256_file": "52d7b54e82ed555ac5113723fdc76de1f97b74109b3f9c4028c12dbab957bec2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 15:20:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5598", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:23 15:20:02", "EXIF DateTimeDigitized": "2003:02:23 15:20:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "321", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0222673dec437be18e4317cff80db3c665c06fe92f5b79ac886452e9a5e57827", "phash": "8beb67b449e3920a", "dhash": "0b0b69d3b1b8ccd5", "phash_int": -8.364477858879139e+18, "collected_at": "2026-05-22T04:31:57.890165+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-18 15-44-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-18 15-44-02 CanonPowerShotS40.jpg", "file_name": "2003-12-18 15-44-02 CanonPowerShotS40.jpg", "file_stem": "2003-12-18 15-44-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1280338.0, "mtime": "2003-12-18T14:44:00+00:00", "mtime_ts": 1071758640.0, "ctime": "2024-12-21T07:57:56.421216+00:00", "sha256_file": "d9c054a6719ea169022c24af9a43fe3ca61e894d38fa57fe46f820b63f92703a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:18 15:44:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5096", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:18 15:44:02", "EXIF DateTimeDigitized": "2003:12:18 15:44:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[37, 227, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "92", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0176191092863c2c67d2eb7b959b1cceee5a9a74f0a4753d09cb42b893349fbf", "phash": "b73142f1cccc31e6", "dhash": "d85c5c367c5c6c64", "phash_int": -5.246338484619432e+18, "collected_at": "2026-05-22T04:31:58.130609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 13-44-36 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 13-44-36 CanonPowerShotA40.jpg", "file_name": "2003-02-23 13-44-36 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 13-44-36 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 1041114.0, "mtime": "2003-02-23T11:44:34+00:00", "mtime_ts": 1046000674.0, "ctime": "2024-12-21T07:57:39.902683+00:00", "sha256_file": "ff4a42cc5ddd75901490a35e7e617a6bc04f6491701215233dc0c69732daa911", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 13:44:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7920", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 13:44:36", "EXIF DateTimeDigitized": "2003:02:23 13:44:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191918", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "578"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "22cd9427f1b4ea4231005b704735902f91a2d14d0f1214c0b06073f2a5d6116d", "phash": "f021c0674b9e716f", "dhash": "899c1cf84f0c3898", "phash_int": -1.1434212804925559e+18, "collected_at": "2026-05-22T04:31:58.139608+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-07-26 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-07-26 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-07-26 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-07-26 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 385687.0, "mtime": "2003-11-29T15:07:26+00:00", "mtime_ts": 1070118446.0, "ctime": "2024-12-21T07:57:54.865166+00:00", "sha256_file": "ae2866d4bdddf9232ed9715dce22685930a1030d85d85aab663678083e460cb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:07:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4275", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:07:26", "EXIF DateTimeDigitized": "2003:11:29 16:07:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 27366, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303062", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "51", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "510"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7022d2412c7125b10186cf952609d5c41c893508b271b06d24230a542e5badcd", "phash": "91a95a1f6d626c6c", "dhash": "f8dcbe8eaabadce0", "phash_int": -7.950724576120247e+18, "collected_at": "2026-05-22T04:31:58.429967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-04-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-04-13 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-04-13 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-04-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1750731.0, "mtime": "2003-11-02T08:04:13+00:00", "mtime_ts": 1067760253.0, "ctime": "2024-12-21T07:57:51.028042+00:00", "sha256_file": "cc9d3225628b85abbf6de8244597b3314d793dd11c20ca67889fc7f7ad20f6a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:04:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4644", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:04:13", "EXIF DateTimeDigitized": "2003:11:02 09:04:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a08fd53f9b0566dcf782ad304a93bc9b627053923180ec0727f847cc20f4a20e", "phash": "c526c01e99663fd9", "dhash": "ecececc67221a0d0", "phash_int": -4.2404907614675763e+18, "collected_at": "2026-05-22T04:31:58.518543+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-52-13 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-52-13 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-52-13 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-52-13 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 412036.0, "mtime": "2003-03-30T10:01:48+00:00", "mtime_ts": 1049018508.0, "ctime": "2024-12-21T07:57:40.279695+00:00", "sha256_file": "57cafa3f09aed75a35a56646832753f8d40eee5decdc8ce7ebddd17e9d756413", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:52:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3794", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:52:13", "EXIF DateTimeDigitized": "2003:03:06 18:52:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 32, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191946", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "102", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2318"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "30cf469dc2f1b00573ae0f5a3a7f6e11ffe5a7a8a89310ca7038c62585fc4bd5", "phash": "b0d3cb0cf08dd3ca", "dhash": "684d499f96b6b296", "phash_int": -5.704993046512414e+18, "collected_at": "2026-05-22T04:31:58.579286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-09-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-09-12 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-09-12 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-09-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 350437.0, "mtime": "2003-02-09T10:09:10+00:00", "mtime_ts": 1044785350.0, "ctime": "2024-12-21T07:57:38.240629+00:00", "sha256_file": "bae74aee43b2806f8643193e22a0c471e8849cec79d96737e0d0406503446bca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:09:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3950", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:09:12", "EXIF DateTimeDigitized": "2003:02:09 12:09:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 368, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171740", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "95", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "724"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f361a08f90ad43348f7976762f6b7572c86a622af02aadc2a6578913d2f2b85d", "phash": "bf49709043bec9a5", "dhash": "1226666f56772e2e", "phash_int": -4.66307217425126e+18, "collected_at": "2026-05-22T04:31:58.701289+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-27-41 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-27-41 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-27-41 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-27-41 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 318194.0, "mtime": "2003-03-30T10:02:31+00:00", "mtime_ts": 1049018551.0, "ctime": "2024-12-21T07:57:40.509702+00:00", "sha256_file": "7d46de1e3e18342a46337c8d2ba1e21ef4d4c475d4a0c380d7b7f8b962d4b49c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:27:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3892", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:27:41", "EXIF DateTimeDigitized": "2003:03:06 19:27:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[6, 47, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191978", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "118", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "101", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1721"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "536ce8056a8342b8faa6cb307e897c7925085b7a24c1b51ae4934f2b3d513bd2", "phash": "e18292679d6d2573", "dhash": "cccdcfc7c6cecad8", "phash_int": -2.1970326944829181e+18, "collected_at": "2026-05-22T04:31:59.240869+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 16-08-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 16-08-08 CanonPowerShotS40.jpg", "file_name": "2003-09-14 16-08-08 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 16-08-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1444976.0, "mtime": "2003-09-14T14:08:08+00:00", "mtime_ts": 1063548488.0, "ctime": "2024-12-21T07:57:47.514928+00:00", "sha256_file": "2e3fab2be467b08c539c67687f1c108947b6b428b08b6b8a599ddfc15be32dc0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 16:08:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3758", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 16:08:08", "EXIF DateTimeDigitized": "2003:09:14 16:08:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "323/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "323"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb48f36c8415d53cc350339734634a4dca246e58be59b1f127a3977b51297aae", "phash": "8fa961cf279c9823", "dhash": "e3d3b86c6878b3cf", "phash_int": -8.094831312871057e+18, "collected_at": "2026-05-22T04:31:59.678704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 05-52-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 05-52-09 CanonPowerShotS40.jpg", "file_name": "2003-12-26 05-52-09 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 05-52-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1547713.0, "mtime": "2003-12-26T04:52:08+00:00", "mtime_ts": 1072414328.0, "ctime": "2024-12-21T07:57:57.727258+00:00", "sha256_file": "5f3b54c6f79d6434e76df222e730173614709d86ac78edca59e6f789978381a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 05:52:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6200", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 05:52:09", "EXIF DateTimeDigitized": "2003:12:26 05:52:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ee123dc0da7130cb5be718f481b86ebbf93576fece4221d01f1123b03940e680", "phash": "c50761d27c1a877e", "dhash": "cacec67070d09987", "phash_int": -4.2493201667476337e+18, "collected_at": "2026-05-22T04:31:59.973771+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 12-04-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 12-04-00 CanonPowerShotS40.jpg", "file_name": "2003-11-02 12-04-00 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 12-04-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1641102.0, "mtime": "2003-11-02T11:04:00+00:00", "mtime_ts": 1067771040.0, "ctime": "2024-12-21T07:57:51.227048+00:00", "sha256_file": "69eb0f0b5058c4d1e5cc4852bc5fa860eaba53b221d531d077896b8d291d283b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 12:04:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4359", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 12:04:00", "EXIF DateTimeDigitized": "2003:11:02 12:04:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "783/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "158", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "783"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2391989e6858b53c68e04b086e433f2afbbf4573c0fcc0e7d9c62d5173750379", "phash": "dae6059f611ce790", "dhash": "480c0c9098703098", "phash_int": -2.6734431467105874e+18, "collected_at": "2026-05-22T04:32:00.504738+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-47-58 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-47-58 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-47-58 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-47-58 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 458447.0, "mtime": "2003-03-30T10:01:40+00:00", "mtime_ts": 1049018500.0, "ctime": "2024-12-21T07:57:40.234693+00:00", "sha256_file": "2fbc92570d25cf2350dd857e27fc9eb6673aec081e3c207ec6a38f1b8100c729", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:47:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4881", "EXIF ExposureTime": "1/160", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:47:58", "EXIF DateTimeDigitized": "2003:03:06 18:47:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 23, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191940", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "7198"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c0ba441783394a21e85f98be0b9bfc1ab5b093ef8906f631f4445f33f6718097", "phash": "adf4127696e4c235", "dhash": "863fc7872fc737f7", "phash_int": -5.912080110283603e+18, "collected_at": "2026-05-22T04:32:00.509737+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-10 13-12-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-10 13-12-49 CanonPowerShotS40.jpg", "file_name": "2003-10-10 13-12-49 CanonPowerShotS40.jpg", "file_stem": "2003-10-10 13-12-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1959336.0, "mtime": "2003-10-10T12:12:48+00:00", "mtime_ts": 1065787968.0, "ctime": "2024-12-21T07:57:48.568962+00:00", "sha256_file": "6ea74553d9cac826d3c2f828027e8f4a97de4279d2dbe04c3204f1b61cd2f987", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:10 13:12:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4873", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:10 13:12:49", "EXIF DateTimeDigitized": "2003:10:10 13:12:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9fceacc3d347427a5bfa2422e8db2029463b5eaa4a6bb640830a3c2a8bca6c89", "phash": "e3f09e992d452647", "dhash": "d09cce8e4e5c4040", "phash_int": -2.0219418519626614e+18, "collected_at": "2026-05-22T04:32:00.830344+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 14-00-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 14-00-46 CanonPowerShotS40.jpg", "file_name": "2003-03-30 14-00-46 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 14-00-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 3538975.0, "mtime": "2003-03-30T13:00:44+00:00", "mtime_ts": 1049029244.0, "ctime": "2024-12-21T07:57:43.225790+00:00", "sha256_file": "a1f1f524a80bdb5ecd2828125a8502b96f568044642c3fdba1b1380dabc4b935", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 14:00:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7687", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 14:00:46", "EXIF DateTimeDigitized": "2003:03:30 14:00:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58441758a48152e653c5533e6cfdda231903c35b7405fc115ca9a159b7c61891", "phash": "f07af19043d50f47", "dhash": "181d1390d8fc9080", "phash_int": -1.1183159555325257e+18, "collected_at": "2026-05-22T04:32:00.852346+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-06-26 17-51-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-06-26 17-51-34 CanonPowerShotS40.jpg", "file_name": "2003-06-26 17-51-34 CanonPowerShotS40.jpg", "file_stem": "2003-06-26 17-51-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1809984.0, "mtime": "2003-06-26T16:51:32+00:00", "mtime_ts": 1056646292.0, "ctime": "2024-12-21T07:57:46.533897+00:00", "sha256_file": "8f204396735728cd4ea2de882bae6048eddf6bcbeecb227ecd752a1b1867040e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 17:51:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5305", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 17:51:34", "EXIF DateTimeDigitized": "2003:06:26 17:51:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "301", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8a3ae41383a818b254b75a15b797337b6d400e7ff611f8a39dd69941e11ae531", "phash": "cabab5c505242bfa", "dhash": "fe9929a67141aa8b", "phash_int": -3.838555874580485e+18, "collected_at": "2026-05-22T04:32:01.208961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-22-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-22-38 CanonPowerShotS40.jpg", "file_name": "2003-11-01 11-22-38 CanonPowerShotS40.jpg", "file_stem": "2003-11-01 11-22-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1829305.0, "mtime": "2003-11-01T10:22:38+00:00", "mtime_ts": 1067682158.0, "ctime": "2024-12-21T07:57:50.779034+00:00", "sha256_file": "f7ae98c9c31ab758a7c2efaa0ee814d60b62efb3a4d5a43bbac4bc61ccd021b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:22:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4995", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:01 11:22:38", "EXIF DateTimeDigitized": "2003:11:01 11:22:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1327/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1327"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "be04d80f653b121f47ea4009dd997686e2f8f5bc32ab793b68147ceed810a1c1", "phash": "d924d2c31fe01ef1", "dhash": "9c8c963632709338", "phash_int": -2.799881332822369e+18, "collected_at": "2026-05-22T04:32:01.211961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 16-10-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 16-10-34 CanonPowerShotS40.jpg", "file_name": "2003-11-07 16-10-34 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 16-10-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1045651.0, "mtime": "2003-11-07T15:10:34+00:00", "mtime_ts": 1068217834.0, "ctime": "2024-12-21T07:57:51.883070+00:00", "sha256_file": "2d945fbc3b37e0866d201fddbf36c0bbfa1b70fbd848afe572a596f90eb3afb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 16:10:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3665", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 16:10:34", "EXIF DateTimeDigitized": "2003:11:07 16:10:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 484, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "1", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3181fcec5355a69481d4dd261565dd8a315b0f3f2d233800354b10f11696008a", "phash": "85f86e192e48e76a", "dhash": "70f0c0d4c4c0e0e6", "phash_int": -8.793157218011126e+18, "collected_at": "2026-05-22T04:32:02.100609+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 21-49-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 21-49-33 CanonPowerShotS40.jpg", "file_name": "2003-03-08 21-49-33 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 21-49-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1283091.0, "mtime": "2003-03-08T20:49:32+00:00", "mtime_ts": 1047156572.0, "ctime": "2024-12-21T07:57:41.481734+00:00", "sha256_file": "21332d1dc1597fd1a2ef6aa248deaa420594ee7631420d0c7732a9142ad288ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 21:49:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4867", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 21:49:33", "EXIF DateTimeDigitized": "2003:03:08 21:49:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65492", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "152", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61cfeb3d75efd4b9f57847b52c6d69e0217a3f6f4097c07cdf2ab08208fde25e", "phash": "99b3662933cc991e", "dhash": "d999b0d97990b4e8", "phash_int": -7.371435837926631e+18, "collected_at": "2026-05-22T04:32:02.145619+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-28 19-09-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-28 19-09-50 CanonPowerShotS40.jpg", "file_name": "2003-10-28 19-09-50 CanonPowerShotS40.jpg", "file_stem": "2003-10-28 19-09-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1688994.0, "mtime": "2003-10-28T18:09:50+00:00", "mtime_ts": 1067364590.0, "ctime": "2024-12-21T07:57:49.806002+00:00", "sha256_file": "c0d62ab19749879725ba56431d39c09fd1b11876727096e3520f16f8fb1621ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:28 19:09:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:28 19:09:50", "EXIF DateTimeDigitized": "2003:10:28 19:09:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 346, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65500", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5ad5ae556a8af0414c2c9d884c27d9b4df89590694a1ca2bae8758806242c337", "phash": "819b050e1c3bb4ff", "dhash": "f8da9c992cacca8a", "phash_int": -9.10768026326534e+18, "collected_at": "2026-05-22T04:32:03.607806+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-01 12-49-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-01 12-49-58 CanonPowerShotS40.jpg", "file_name": "2003-09-01 12-49-58 CanonPowerShotS40.jpg", "file_stem": "2003-09-01 12-49-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1821108.0, "mtime": "2003-09-01T10:49:58+00:00", "mtime_ts": 1062413398.0, "ctime": "2024-12-21T07:57:46.901909+00:00", "sha256_file": "aef12c409764f30fc2e947f64371e661488ddba076ae81049bd8b7acb9aef232", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:01 12:49:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5306", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:01 12:49:58", "EXIF DateTimeDigitized": "2003:09:01 12:49:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[55, 221, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6fdec2f93e365044054b1431283bbe4759e3dd030b169e4debf17bb5378e6ea1", "phash": "b1f6878576187827", "dhash": "f4ca9f9b0ed6f0d8", "phash_int": -5.62315807744377e+18, "collected_at": "2026-05-22T04:32:03.612914+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-15-23 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-15-23 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-15-23 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-15-23 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 935302.0, "mtime": "2002-09-28T13:15:22+00:00", "mtime_ts": 1033218922.0, "ctime": "2024-12-21T07:57:35.968555+00:00", "sha256_file": "201de689890314759d9243e6e3bf8d101a442b5394cb2b607e30fd046535a75f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:15:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2890", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:15:23", "EXIF DateTimeDigitized": "2002:09:28 13:15:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8886ebbc9345d8d1be09da1d8e1538e46db815496acfe735f7b928b3724ff8fb", "phash": "c2c23d3dc53e96c2", "dhash": "b8d4d4d4d4d430b0", "phash_int": -4.412897349358152e+18, "collected_at": "2026-05-22T04:32:05.178461+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 18-41-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 18-41-39 CanonPowerShotS40.jpg", "file_name": "2003-09-16 18-41-39 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 18-41-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1697642.0, "mtime": "2003-09-16T16:41:39+00:00", "mtime_ts": 1063730499.0, "ctime": "2024-12-21T07:57:47.991944+00:00", "sha256_file": "fd89f0e28a68008b185295598a4a0a8a01fa0c8dc7af1f61f98ab9f043f8ad42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 18:41:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4562", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 18:41:39", "EXIF DateTimeDigitized": "2003:09:16 18:41:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c556d720fb0f081aecf9e5ea1cd4bf589bcc7229fd4a0adcaa7c784ed55cf7c", "phash": "f3f2381cce0773c0", "dhash": "381c88c88c06d333", "phash_int": -8.685700817622497e+17, "collected_at": "2026-05-22T04:32:05.198474+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 19-25-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 19-25-37 CanonPowerShotS40.jpg", "file_name": "2003-12-27 19-25-37 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 19-25-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 686473.0, "mtime": "2003-12-27T18:25:36+00:00", "mtime_ts": 1072549536.0, "ctime": "2024-12-21T07:57:58.279276+00:00", "sha256_file": "1b17f1cb0cbae685e45e3fe8b741d7fd11669509a82ed161caf72515b7455363", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 19:25:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1848", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 19:25:37", "EXIF DateTimeDigitized": "2003:12:27 19:25:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 500, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65454", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "748898e1151e6606c4e2424d0448df1caf3b293d2cb0606ba723335a8b6480c5", "phash": "d5aa55aa4653566c", "dhash": "68a9101000900080", "phash_int": -3.050531607777422e+18, "collected_at": "2026-05-22T04:32:05.572491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-29-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-29-22 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-29-22 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-29-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1595563.0, "mtime": "2002-09-28T13:29:20+00:00", "mtime_ts": 1033219760.0, "ctime": "2024-12-21T07:57:36.486572+00:00", "sha256_file": "20744e8de5856ed9b17c3df262cb5f291b8d35b2cf9c3014d68bc035f4f05408", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:29:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5078", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:29:22", "EXIF DateTimeDigitized": "2002:09:28 13:29:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bddf6ccd883d2d3be10ca3a0465c3fa4bdb7c4f55efd794568c705c063e2d124", "phash": "b29599d84d96a4ae", "dhash": "b0bcec6d21edcd2d", "phash_int": -5.578383409134788e+18, "collected_at": "2026-05-22T04:32:05.609200+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-04 17-52-15 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-04 17-52-15 CanonPowerShotA40.jpg", "file_name": "2003-03-04 17-52-15 CanonPowerShotA40.jpg", "file_stem": "2003-03-04 17-52-15 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 383226.0, "mtime": "2003-03-30T10:01:22+00:00", "mtime_ts": 1049018482.0, "ctime": "2024-12-21T07:57:40.140690+00:00", "sha256_file": "c6736bf1f5ff89a9b18f0b4bde732b30d13aee3557d1f30ea3e0c1c60d5d07fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:04 17:52:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3423", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:04 17:52:15", "EXIF DateTimeDigitized": "2003:03:04 17:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 383, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191927", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1a578e1817a5869e5a76b9d5892d4669b642f632491cc32933335b86d649790c", "phash": "9f8e24e3930e6791", "dhash": "e8747373d8cb333e", "phash_int": -6.949576615142726e+18, "collected_at": "2026-05-22T04:32:05.898136+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-28 20-03-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-28 20-03-53 CanonPowerShotS40.jpg", "file_name": "2003-10-28 20-03-53 CanonPowerShotS40.jpg", "file_stem": "2003-10-28 20-03-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1529973.0, "mtime": "2003-10-28T19:03:53+00:00", "mtime_ts": 1067367833.0, "ctime": "2024-12-21T07:57:49.945007+00:00", "sha256_file": "67373cb13675b0ac8231dc146ad04a864fbdc3283cd0049ff3257a792f88fe83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:28 20:03:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4109", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:28 20:03:53", "EXIF DateTimeDigitized": "2003:10:28 20:03:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "29", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "163b1a6fd6916ee927a18890ce80551a664e526d936f204788561e1b4a699261", "phash": "95196a6295bd9c95", "dhash": "a1d9f8f8f8b0c8f0", "phash_int": -7.703008715988952e+18, "collected_at": "2026-05-22T04:32:05.967139+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 18-50-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 18-50-18 CanonPowerShotS40.jpg", "file_name": "2003-10-26 18-50-18 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 18-50-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1594647.0, "mtime": "2003-10-26T17:50:18+00:00", "mtime_ts": 1067190618.0, "ctime": "2024-12-21T07:57:49.483992+00:00", "sha256_file": "651780745d18fe871bcf2142368767ba0bf7dbbe06cb5f457a7195b698c614ba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 18:50:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7518", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 18:50:18", "EXIF DateTimeDigitized": "2003:10:26 18:50:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 353, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "4", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9fb70dfaf04bd19796226af1d09ecaa920ea40ed918e7b34caf8f5a7bbe40a7c", "phash": "8235059f7c663f83", "dhash": "e2e0c8a57169e1f1", "phash_int": -9.06433249246824e+18, "collected_at": "2026-05-22T04:32:06.155862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-48-14 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-48-14 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-48-14 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-48-14 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 240304.0, "mtime": "2003-10-23T20:19:39+00:00", "mtime_ts": 1066940379.0, "ctime": "2024-12-21T07:57:46.698902+00:00", "sha256_file": "af80fddc240a34a7ba3aca021d1adef9cc65b197b3a2db5ef7aa69ba26135675", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "3713", "EXIF ExposureTime": "1/45", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:48:14", "EXIF DateTimeDigitized": "2003:08:12 15:48:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "11/2", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "109/50", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cea0ad6e7623d0edc2b86b9acc4d88f66d7a63da30891acf51d8236154ce8635", "phash": "9ea5345aa41bdc5a", "dhash": "1f8ede6b6979392c", "phash_int": -7.015143280654689e+18, "collected_at": "2026-05-22T04:32:06.171975+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-23-01 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-23-01 E5000.jpg", "file_name": "2003-05-25 11-23-01 E5000.jpg", "file_stem": "2003-05-25 11-23-01 E5000", "file_ext": ".jpg", "file_size": 727246.0, "mtime": "2003-05-25T18:57:08+00:00", "mtime_ts": 1053889028.0, "ctime": "2024-12-21T07:57:46.480895+00:00", "sha256_file": "a0e48c03b3f5448f696be7627ec7f79924d6b7e1583c6b9a2a4e739619c229f2", "exif": {"Image Make": "Canon", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:05:25 11:23:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1008", "Thumbnail JPEGInterchangeFormatLength": "8478", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:05:25 11:23:01", "EXIF DateTimeDigitized": "2003:05:25 11:23:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "510815/65536", "EXIF ApertureValue": "318893/65536", "EXIF ExposureBiasValue": "0", "EXIF MakerNote": "[5, 0, 4, 0, 3, 0, 27, 0, 0, 0, 244, 1, 0, 0, 6, 0, 2, 0, 32, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1920", "EXIF ExifImageLength": "2560", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "0", "MakerNote OwnerName": "", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "156", "MakerNote TargetExposureTime": "249", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Unknown", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote Unknown": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1920.0, "height": 2560.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8bae81423bfa33409fe6e630c6a9db9769700705e5821bad74ef52410d122a81", "phash": "ec48a6917c8e51ee", "dhash": "67c7a32330d86707", "phash_int": -1.4207025386452209e+18, "collected_at": "2026-05-22T04:32:06.546705+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 22-49-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 22-49-35 CanonPowerShotS40.jpg", "file_name": "2003-10-25 22-49-35 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 22-49-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1714411.0, "mtime": "2003-10-25T21:49:35+00:00", "mtime_ts": 1067118575.0, "ctime": "2024-12-21T07:57:49.196983+00:00", "sha256_file": "da448dc3ab9f02c651aeebd8cb234ec33fa8b61b02b3c77b724d05751cda8953", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 22:49:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4595", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 22:49:35", "EXIF DateTimeDigitized": "2003:10:25 22:49:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "819/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1638"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c2613938c37b14d4caeec1b1dfbe461abce0e4d7beef18c4d8d36eb0ff52f44", "phash": "94efe1965c18b2b2", "dhash": "e6ceda3168dcd8d8", "phash_int": -7.714699600755903e+18, "collected_at": "2026-05-22T04:32:06.553696+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-28-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-28-52 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-28-52 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-28-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1787032.0, "mtime": "2003-12-21T17:28:50+00:00", "mtime_ts": 1072027730.0, "ctime": "2024-12-21T07:57:57.302244+00:00", "sha256_file": "96dc5bb4d409b89da53fcd0afcf4974615163edaa9ba7b0b28be91d3bd5096f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:28:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5294", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:28:52", "EXIF DateTimeDigitized": "2003:12:21 18:28:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65507", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d78024d8ccce4cdd6b43303942452ef78986236ec9ed1f7d8dbc5eeed64882ca", "phash": "9972678d7522394d", "dhash": "e0f099b8f2f1f173", "phash_int": -7.389730181308336e+18, "collected_at": "2026-05-22T04:32:06.894346+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-25 13-23-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-25 13-23-19 CanonPowerShotS40.jpg", "file_name": "2003-12-25 13-23-19 CanonPowerShotS40.jpg", "file_stem": "2003-12-25 13-23-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1682539.0, "mtime": "2003-12-25T12:23:18+00:00", "mtime_ts": 1072354998.0, "ctime": "2024-12-21T07:57:57.716258+00:00", "sha256_file": "b74fc42093739b19b38e5391af7c4b911e10784304b82dc6b689eb411bda5b21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:25 13:23:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7500", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:25 13:23:19", "EXIF DateTimeDigitized": "2003:12:25 13:23:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d7c0bb337b8fadba420bea64cb7e78d4634347d5f2d22b2af1daf11d3dc1d0f", "phash": "d5df4862481337d9", "dhash": "c82056620c0c9c16", "phash_int": -3.035628036871211e+18, "collected_at": "2026-05-22T04:32:06.954346+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-19 23-18-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-19 23-18-52 CanonPowerShotS40.jpg", "file_name": "2003-02-19 23-18-52 CanonPowerShotS40.jpg", "file_stem": "2003-02-19 23-18-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1583715.0, "mtime": "2003-02-19T22:18:50+00:00", "mtime_ts": 1045693130.0, "ctime": "2024-12-21T07:57:39.166659+00:00", "sha256_file": "0df7d9662900b90e2f1803e1a75cf6393ab84184e4424d8c7e0cf72155f0a1dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:19 23:18:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3444", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:19 23:18:52", "EXIF DateTimeDigitized": "2003:02:19 23:18:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "7", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93c618174e3f19793519dee871c71bd0a3d61f849f14d47ab3374770efde7eee", "phash": "857f1ca10f5f7424", "dhash": "f0f8cc68c6dcf0f0", "phash_int": -8.827305266549657e+18, "collected_at": "2026-05-22T04:32:07.676942+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-45-21 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-45-21 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-45-21 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-45-21 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 354201.0, "mtime": "2003-11-01T00:45:21+00:00", "mtime_ts": 1067647521.0, "ctime": "2024-12-21T07:57:50.399021+00:00", "sha256_file": "48c393a30665beb83bc7e376c8a17247adc6f9dbb30304ed9e14fea1760693c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:45:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3822", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:45:21", "EXIF DateTimeDigitized": "2003:11:01 01:45:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 443, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292931", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1989"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8f0a18aa1cdf420b1cb22b7581f9aeff91172cdebb77f453766e8425f581888", "phash": "f5ca9f42c89149b3", "dhash": "103432961404de56", "phash_int": -7.356004799400321e+17, "collected_at": "2026-05-22T04:32:07.712139+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-07-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-07-36 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-07-36 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-07-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1349548.0, "mtime": "2003-02-22T16:07:34+00:00", "mtime_ts": 1045930054.0, "ctime": "2024-12-21T07:57:39.368665+00:00", "sha256_file": "6ab0872bf0a6e328e04de591107b13670bfd779c1e7837b89a720f2e21ff1df8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:07:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5887", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:07:36", "EXIF DateTimeDigitized": "2003:02:22 17:07:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "140", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c36228b59f1f552702c2c5d33556b942974fc960fb984fdea507cca034e0e63", "phash": "d6e2d9d00fc90c6e", "dhash": "c84ced6c2cec5860", "phash_int": -2.962566117215106e+18, "collected_at": "2026-05-22T04:32:08.394887+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-30-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-30-06 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-30-06 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-30-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1731457.0, "mtime": "2002-12-01T11:31:24+00:00", "mtime_ts": 1038742284.0, "ctime": "2024-12-21T07:57:37.566607+00:00", "sha256_file": "7a7a6a4279b30900d2c1edc5ed9f827bd0f35abc47cd51421e5516c7aaf5c5c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:30:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4043", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:30:06", "EXIF DateTimeDigitized": "2002:11:28 17:30:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b117a665dc19328bea30011d1280b28dc3d558d6321468b073be7c503fb42146", "phash": "ff0659a3cc4d2391", "dhash": "782c2c2c0c1c1830", "phash_int": -7.027018413551525e+16, "collected_at": "2026-05-22T04:32:08.442889+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-41-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-41-53 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-41-53 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-41-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 265702.0, "mtime": "2003-12-21T17:41:52+00:00", "mtime_ts": 1072028512.0, "ctime": "2024-12-21T07:57:57.391247+00:00", "sha256_file": "5faa4ba31b9140618d507fe273bc47383c0edf59930e13aa29865872614d4750", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:41:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1931", "EXIF ExposureTime": "5", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:41:53", "EXIF DateTimeDigitized": "2003:12:21 18:41:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "-37/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65495", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "65462", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f19ebf3a69610f509ee2bd258463641f52db22134b7d6dbfb89f8db9851f8bb7", "phash": "b3cc39c41c738c73", "dhash": "04000c0c8c9c0c1c", "phash_int": -5.490950331217769e+18, "collected_at": "2026-05-22T04:32:08.512892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-31 20-57-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-31 20-57-30 CanonPowerShotS40.jpg", "file_name": "2003-10-31 20-57-30 CanonPowerShotS40.jpg", "file_stem": "2003-10-31 20-57-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1505031.0, "mtime": "2003-10-31T19:57:30+00:00", "mtime_ts": 1067630250.0, "ctime": "2024-12-21T07:57:50.334019+00:00", "sha256_file": "8dfe0f850e2e8cdbcdbefb2bfbacc06074888d405b4c8ff312d81ba4361dbe61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:31 20:57:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3968", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:31 20:57:30", "EXIF DateTimeDigitized": "2003:10:31 20:57:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d184a5b3318edf10fd43e72fa7aad958b361103b80364e6ac4ce3fc950c2359d", "phash": "9dbf24da99e46130", "dhash": "7c7c76333959e4f6", "phash_int": -7.079899567899779e+18, "collected_at": "2026-05-22T04:32:08.746572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 15-34-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 15-34-07 CanonPowerShotS40.jpg", "file_name": "2003-03-29 15-34-07 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 15-34-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2242235.0, "mtime": "2003-03-30T09:45:47+00:00", "mtime_ts": 1049017547.0, "ctime": "2024-12-21T07:57:42.690773+00:00", "sha256_file": "91185858cc2aba896210ae4f67310e105f98fbd4a95b6b13ef3a8a2dd90acf83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 15:34:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5930", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 15:34:07", "EXIF DateTimeDigitized": "2003:03:29 15:34:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1269/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[79, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "160", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2538"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9b9c2412f0087a7e75cee314380268caedb7bed649829cbc6aaf13db6526ceb", "phash": "f03b79c6453611cb", "dhash": "9b19191d04040402", "phash_int": -1.1361805885092613e+18, "collected_at": "2026-05-22T04:32:09.282607+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 23-30-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 23-30-33 CanonPowerShotS40.jpg", "file_name": "2003-10-25 23-30-33 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 23-30-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1416408.0, "mtime": "2003-10-25T22:30:33+00:00", "mtime_ts": 1067121033.0, "ctime": "2024-12-21T07:57:49.303986+00:00", "sha256_file": "056526b796501030ea71d79ad72a6a3987d420efaaeb30a8f72e632b677ae70a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 23:30:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4016", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 23:30:33", "EXIF DateTimeDigitized": "2003:10:25 23:30:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65529", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2309ef03ae90c5bdee840f60673936b3932e1f4c0563ee8cb83d06ced31cd84", "phash": "9cf459c66285d693", "dhash": "b0311c96cce4f3b3", "phash_int": -7.136980800884058e+18, "collected_at": "2026-05-22T04:32:09.347608+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-30-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-30-40 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-30-40 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-30-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1584872.0, "mtime": "2003-11-04T09:30:40+00:00", "mtime_ts": 1067938240.0, "ctime": "2024-12-21T07:57:51.354052+00:00", "sha256_file": "0905b2032763b8b120ef411db2fd89af405995a363aa7b8a544c76693cba61a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:30:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6115", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:30:40", "EXIF DateTimeDigitized": "2003:11:04 10:30:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[73, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "40834afcb9b58a3611538c8885f039dba9d407db026629b8ce17108d594ced86", "phash": "9ab3eb3dad80c4e0", "dhash": "7b198cf4f03999c9", "phash_int": -7.299231920901012e+18, "collected_at": "2026-05-22T04:32:09.449613+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-43-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-43-00 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-43-00 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-43-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1296377.0, "mtime": "2003-12-21T17:42:58+00:00", "mtime_ts": 1072028578.0, "ctime": "2024-12-21T07:57:57.477250+00:00", "sha256_file": "ad136663ecccd67ea3d52fe320e47cdb1acf475d8e69a6ffb69db5b4325cf7d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:43:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4970", "EXIF ExposureTime": "1/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:43:00", "EXIF DateTimeDigitized": "2003:12:21 18:43:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "53/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "106", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ae9fe80df503e6e473fc4e63e584f2544f667867f7a6f1e26c8c8fba0bb0f6de", "phash": "c47396cd0fe448b9", "dhash": "e0589243f3e0e6f6", "phash_int": -4.29092021247487e+18, "collected_at": "2026-05-22T04:32:09.473616+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-21-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-21-09 CanonPowerShotS40.jpg", "file_name": "2003-11-01 11-21-09 CanonPowerShotS40.jpg", "file_stem": "2003-11-01 11-21-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1799806.0, "mtime": "2003-11-01T10:21:09+00:00", "mtime_ts": 1067682069.0, "ctime": "2024-12-21T07:57:50.742033+00:00", "sha256_file": "a6f66fdf1a9cf526b2e4ce1b6a29eac10975db1ca5ea769cef5851800178b294", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:21:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5089", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:01 11:21:09", "EXIF DateTimeDigitized": "2003:11:01 11:21:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "943/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "943"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41274d09618ce9f3d9aeb169be8e177aa204e2a6d384ab7fbd90b94362af71aa", "phash": "a2026e7dcbe12c1f", "dhash": "c54dcdcf4d1d874f", "phash_int": -6.772729403041306e+18, "collected_at": "2026-05-22T04:32:09.685710+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 23-05-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 23-05-33 CanonPowerShotS40.jpg", "file_name": "2003-03-06 23-05-33 CanonPowerShotS40.jpg", "file_stem": "2003-03-06 23-05-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1868414.0, "mtime": "2003-03-06T22:05:32+00:00", "mtime_ts": 1046988332.0, "ctime": "2024-12-21T07:57:40.522703+00:00", "sha256_file": "205bbcbbb98ce1f4449df10004e4c4a03a1a49d4a03c7a9fcd2aea93b905bc64", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 23:05:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4981", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:06 23:05:33", "EXIF DateTimeDigitized": "2003:03:06 23:05:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bf4405308abd32094af12d0feb5d6234d954381dbccbb7c07c491e69f21eeb3", "phash": "a33cb4945b4e6ca5", "dhash": "bc8e87ebc9cbc8c8", "phash_int": -6.684269197644633e+18, "collected_at": "2026-05-22T04:32:09.704709+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-09 15-59-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-09 15-59-49 CanonPowerShotS40.jpg", "file_name": "2003-09-09 15-59-49 CanonPowerShotS40.jpg", "file_stem": "2003-09-09 15-59-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1518396.0, "mtime": "2003-09-09T13:59:49+00:00", "mtime_ts": 1063115989.0, "ctime": "2024-12-21T07:57:47.130916+00:00", "sha256_file": "d336a0edbbb3bc5ea7ba9794c8f4f39d87f953b0be100c95c5017cf5e0a131f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:09 15:59:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3574", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:09 15:59:49", "EXIF DateTimeDigitized": "2003:09:09 15:59:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[36, 230, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e37a48bffb4a6743fd7705a011acbfe87cf8c2de856a332b1e11e752d5a8442", "phash": "d1b3ce064ad111bf", "dhash": "e8d0989828dce0f0", "phash_int": -3.3360963725310643e+18, "collected_at": "2026-05-22T04:32:09.892881+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-17 16-20-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-17 16-20-44 CanonPowerShotS40.jpg", "file_name": "2003-02-17 16-20-44 CanonPowerShotS40.jpg", "file_stem": "2003-02-17 16-20-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1716045.0, "mtime": "2003-02-17T15:20:42+00:00", "mtime_ts": 1045495242.0, "ctime": "2024-12-21T07:57:39.137658+00:00", "sha256_file": "12e69f16462baccbc823fdd6a4ec7e74b365fd9bd4e18b744ed831101df4b8d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:17 16:20:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4612", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:17 16:20:44", "EXIF DateTimeDigitized": "2003:02:17 16:20:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "309", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9e4f94b565d72a59683c15a0718d392445d18fc770a816bb3ee4b8550855953", "phash": "d4d94d12bda96266", "dhash": "c4e0c57664cce0f2", "phash_int": -3.1093693248358723e+18, "collected_at": "2026-05-22T04:32:09.939833+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-29-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-29-46 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-29-46 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-29-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 948506.0, "mtime": "2003-12-31T22:29:44+00:00", "mtime_ts": 1072909784.0, "ctime": "2024-12-21T07:57:59.825326+00:00", "sha256_file": "37bb7ab47f868f96b4e1e3c14c87a516a21275adbbc583a9839189770be09341", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:29:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5096", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:29:46", "EXIF DateTimeDigitized": "2003:12:31 23:29:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b997a002bf401308270ac1066d98956941950cfeee6753fe5340fd8a2e3e2c5d", "phash": "b69b6524b4a62e36", "dhash": "273a2b2a2e278686", "phash_int": -5.288522129092497e+18, "collected_at": "2026-05-22T04:32:10.038966+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-05 20-22-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-05 20-22-28 CanonPowerShotS40.jpg", "file_name": "2003-10-05 20-22-28 CanonPowerShotS40.jpg", "file_stem": "2003-10-05 20-22-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1868352.0, "mtime": "2003-10-09T06:46:40+00:00", "mtime_ts": 1065682000.0, "ctime": "2024-12-21T07:57:48.176950+00:00", "sha256_file": "390b077eb2867a795a5c7340f2566a987e2e878925b722a82ad1a0503627a979", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:05 20:22:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4494", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:05 20:22:28", "EXIF DateTimeDigitized": "2003:10:05 20:22:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0b663a80cbc4188a5998bc5d1c052443d48906f184fa63947fc94d2fcec1db3a", "phash": "956d3b964c8d8696", "dhash": "e2dad6f6dcfcf8d8", "phash_int": -7.679416272881351e+18, "collected_at": "2026-05-22T04:32:10.144295+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 18-27-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 18-27-41 CanonPowerShotS40.jpg", "file_name": "2003-12-26 18-27-41 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 18-27-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1824349.0, "mtime": "2004-01-22T20:31:56+00:00", "mtime_ts": 1074803516.0, "ctime": "2024-12-21T07:57:57.789260+00:00", "sha256_file": "412d5f4a9857cdba3dd0762b35c179d41bf40b640ae1b52cb41374a5d7384285", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 18:27:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4923", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 18:27:41", "EXIF DateTimeDigitized": "2003:12:26 18:27:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "31", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36cf601ccdd5de03ecde0c5ec53f6acb5f82a1465d67dd6e43e6cd64dc00cc7f", "phash": "98d067cfdb213598", "dhash": "ccb4b4b8b9e26b38", "phash_int": -7.435328842356411e+18, "collected_at": "2026-05-22T04:32:10.223360+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 02-04-30 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 02-04-30 CanonPowerShotA40.jpg", "file_name": "2003-11-01 02-04-30 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 02-04-30 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 436813.0, "mtime": "2003-11-01T01:04:30+00:00", "mtime_ts": 1067648670.0, "ctime": "2024-12-21T07:57:50.477024+00:00", "sha256_file": "556fdcf839de9e85fb328955669352dade642ce395d5c5bfb70e4ff181c5bd0f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 02:04:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5218", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 02:04:30", "EXIF DateTimeDigitized": "2003:11:01 02:04:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 32767, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292941", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "91", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "520"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8c15a4bf3ca1502f5341a25de64d88c98d982f35ff14c5a4b5801995cccb283", "phash": "999664a3c6d934dc", "dhash": "c0f138f9797b73b3", "phash_int": -7.379600284821409e+18, "collected_at": "2026-05-22T04:32:10.242361+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 15-53-18 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 15-53-18 CanonPowerShotA40.jpg", "file_name": "2003-11-29 15-53-18 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 15-53-18 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 454794.0, "mtime": "2003-11-29T14:53:18+00:00", "mtime_ts": 1070117598.0, "ctime": "2024-12-21T07:57:54.841165+00:00", "sha256_file": "d3c1c4f81c6c3cb39eb5c89c04b5e67bf571d27c0b431d2504148de0c33f1dd1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 15:53:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4343", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 15:53:18", "EXIF DateTimeDigitized": "2003:11:29 15:53:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 14442, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303059", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "79", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "508"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4149d0e4b0ed4a8fa3f740e65401a71f300ccceb59803e3102ad6325d386f24", "phash": "93b1160c3c3d6fe1", "dhash": "8c8c4f1ecae0e0e8", "phash_int": -7.804432437450281e+18, "collected_at": "2026-05-22T04:32:10.295363+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-03 18-52-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-03 18-52-17 CanonPowerShotS40.jpg", "file_name": "2003-09-03 18-52-17 CanonPowerShotS40.jpg", "file_stem": "2003-09-03 18-52-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1609997.0, "mtime": "2003-09-03T16:52:17+00:00", "mtime_ts": 1062607937.0, "ctime": "2024-12-21T07:57:46.991911+00:00", "sha256_file": "ba533f048f915fc121045422cdc8fc8b6eef5ba35302b01b835c316b04ec6d98", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:03 18:52:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6228", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:03 18:52:17", "EXIF DateTimeDigitized": "2003:09:03 18:52:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 336, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "96", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8da84c7b6db46a714a19844172f69a42a46b815ae187ab3072d9c8d58fca4838", "phash": "93407d0ea52b547f", "dhash": "e0d1d8d9f0fc7938", "phash_int": -7.836125849770569e+18, "collected_at": "2026-05-22T04:32:10.432719+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-06 07-23-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-06 07-23-09 CanonPowerShotS40.jpg", "file_name": "2003-10-06 07-23-09 CanonPowerShotS40.jpg", "file_stem": "2003-10-06 07-23-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1623185.0, "mtime": "2003-10-09T06:47:09+00:00", "mtime_ts": 1065682029.0, "ctime": "2024-12-21T07:57:48.253952+00:00", "sha256_file": "5f554b0fd4a89cbe9cce891ef62c35fd74900a8fce4db22784ecd19c64fe713a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:06 07:23:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3329", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:06 07:23:09", "EXIF DateTimeDigitized": "2003:10:06 07:23:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f2808da3ca0c2f7e717475d584fc469d2e3aff70a9abdd07e4db3a9f4a64e00", "phash": "d097659a32e5d2d2", "dhash": "e0e0e0d0b9b18183", "phash_int": -3.4161500793839406e+18, "collected_at": "2026-05-22T04:32:10.521786+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-22-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-22-39 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-22-39 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-22-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2684999.0, "mtime": "2002-09-28T13:22:38+00:00", "mtime_ts": 1033219358.0, "ctime": "2024-12-21T07:57:36.298566+00:00", "sha256_file": "21b5d1ac8c43b701eb0069c8238f0294ecb182ff4cb99f4f5a68938eb13c8b9f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:22:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3879", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:22:39", "EXIF DateTimeDigitized": "2002:09:28 13:22:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Manual", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "None (MF)", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "00fa18377b9c6e6708b83bfdf5561f0af9da6081be85e90f6a5de032438f9002", "phash": "aaea542ed671e113", "dhash": "e3f3d3937393d2f8", "phash_int": -6.130995382568493e+18, "collected_at": "2026-05-22T04:32:10.745891+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 12-18-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 12-18-34 CanonPowerShotS40.jpg", "file_name": "2003-10-25 12-18-34 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 12-18-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2836635.0, "mtime": "2003-10-25T11:18:34+00:00", "mtime_ts": 1067080714.0, "ctime": "2024-12-21T07:57:49.086979+00:00", "sha256_file": "0546af9e4cc6f4d3e47d2bd36d7ef18c8cc051cee1a96f5940d8f2e4f15e0aaf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 12:18:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4647", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 12:18:34", "EXIF DateTimeDigitized": "2003:10:25 12:18:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "214", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09f43fcd568a512b4559d2e00bf359e321692cc59da176309d3ad7c7b7378d43", "phash": "d4e3dd8b90d18794", "dhash": "c060e490ecebb0b4", "phash_int": -3.1063957264556667e+18, "collected_at": "2026-05-22T04:32:10.820912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-11-44 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-11-44 CanonPowerShotA40.jpg", "file_name": "2003-02-15 14-11-44 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 14-11-44 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 439861.0, "mtime": "2003-02-15T12:11:42+00:00", "mtime_ts": 1045311102.0, "ctime": "2024-12-21T07:57:38.477637+00:00", "sha256_file": "771a470f3bd85a8f27caac249f0504b02137c51938cc22d5d3fe3e26d689ea6f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:11:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5353", "EXIF ExposureTime": "1/320", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 14:11:44", "EXIF DateTimeDigitized": "2003:02:15 14:11:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181815", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1014"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "93cd8cf27cbcb3e70d809c8a887aa08f6fbfd3bc03f2647c9def113235884b0e", "phash": "9368939d61db4e25", "dhash": "b9b5afbfe66c5cdc", "phash_int": -7.824842048395325e+18, "collected_at": "2026-05-22T04:32:10.947501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 22-50-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 22-50-40 CanonPowerShotS40.jpg", "file_name": "2003-12-31 22-50-40 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 22-50-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1483871.0, "mtime": "2003-12-31T21:50:38+00:00", "mtime_ts": 1072907438.0, "ctime": "2024-12-21T07:57:59.329310+00:00", "sha256_file": "6687e05aa72e35fe9176616fa251802cf33d2e78bb8bc5cbdef772c2fcd573ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 22:50:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5398", "EXIF ExposureTime": "1/500", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 22:50:40", "EXIF DateTimeDigitized": "2003:12:31 22:50:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1891/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7564"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ceb5880ba6bdba7eebaec247b26ef96486f5c0fc1080e12e63b6c582b86523c", "phash": "f2b5d68ec7506c28", "dhash": "011e178e5b65b9e0", "phash_int": -9.576234370287258e+17, "collected_at": "2026-05-22T04:32:10.958704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-07 11-04-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-07 11-04-41 CanonPowerShotS40.jpg", "file_name": "2003-09-07 11-04-41 CanonPowerShotS40.jpg", "file_stem": "2003-09-07 11-04-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1297732.0, "mtime": "2003-09-07T09:04:41+00:00", "mtime_ts": 1062925481.0, "ctime": "2024-12-21T07:57:47.056914+00:00", "sha256_file": "7130678fb0eca4cc185f55549202dee3d5a215fe6c74756fb37eae5fc1e0c8be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:07 11:04:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3855", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:07 11:04:41", "EXIF DateTimeDigitized": "2003:09:07 11:04:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "195", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "81853d747c49463ee2b833e5c7ffa7c89c53a27da8bce32274324f1f39cdcf9b", "phash": "dd2834ffc184163b", "dhash": "be3ef8e0436470e0", "phash_int": -2.5106985191910876e+18, "collected_at": "2026-05-22T04:32:11.219558+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-38-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-38-29 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-38-29 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-38-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1391566.0, "mtime": "2003-11-02T08:38:29+00:00", "mtime_ts": 1067762309.0, "ctime": "2024-12-21T07:57:51.136045+00:00", "sha256_file": "2c932f1703ac601e255a2e6c70f257d8343e8effc78b5f6c45d0725ae3ee52cd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:38:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4698", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:38:29", "EXIF DateTimeDigitized": "2003:11:02 09:38:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "77e538369dfb86d03b324a317e614a007b3e72f12d1c5a4b51e6a016e5ec1f76", "phash": "d639c24c5dcc265e", "dhash": "fcc8ccdcb4a5adcc", "phash_int": -3.0101612426735027e+18, "collected_at": "2026-05-22T04:32:11.281552+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-17 13-16-17 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-17 13-16-17 CanonPowerShotA40.jpg", "file_name": "2003-10-17 13-16-17 CanonPowerShotA40.jpg", "file_stem": "2003-10-17 13-16-17 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 351096.0, "mtime": "2003-10-17T12:16:17+00:00", "mtime_ts": 1066392977.0, "ctime": "2024-12-21T07:57:48.704967+00:00", "sha256_file": "9fbb7676102481a235b23ebf8594a3093eb7dbf8d27ca88d157cb00cacd1e371", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:17 13:16:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3560", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:17 13:16:17", "EXIF DateTimeDigitized": "2003:10:17 13:16:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 214, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292905", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2088"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "efd740e7c5e7eb19b6b5469095bd73e463ffc70128b66c40c9723a1ddedd1929", "phash": "ebcec89c8d319c62", "dhash": "23c34b4b431383c3", "phash_int": -1.4550050548847995e+18, "collected_at": "2026-05-22T04:32:11.362669+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-30 12-47-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-30 12-47-09 CanonPowerShotS40.jpg", "file_name": "2003-10-30 12-47-09 CanonPowerShotS40.jpg", "file_stem": "2003-10-30 12-47-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1285119.0, "mtime": "2003-10-30T11:47:09+00:00", "mtime_ts": 1067514429.0, "ctime": "2024-12-21T07:57:50.192015+00:00", "sha256_file": "9342f4871267afa8600255ddd611d90b7da1433c46b9b4d971ae05b11b201e73", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:30 12:47:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4930", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:30 12:47:09", "EXIF DateTimeDigitized": "2003:10:30 12:47:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "983/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "3226239/280", "EXIF FocalPlaneYResolution": "2419679/210", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "Other", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "406", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "45", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "983"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68580dc1bc6ff61cdaf783b2fcec3148ff83d9341fa1e7c51984995705da7f0f", "phash": "fb4a81e445d4077d", "dhash": "c349598913061c5a", "phash_int": -3.393160044890011e+17, "collected_at": "2026-05-22T04:32:11.476872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-43-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-43-52 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-43-52 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-43-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1965879.0, "mtime": "2003-04-05T12:43:50+00:00", "mtime_ts": 1049546630.0, "ctime": "2024-12-21T07:57:43.660804+00:00", "sha256_file": "c25277735945584994d4dd1f2282ec4d1352777b66e5372ca03d2be8cead53c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:43:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6439", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:43:52", "EXIF DateTimeDigitized": "2003:04:05 13:43:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8a921bb36674587c428c9771399f0a47a94d842b887495fff5b9807df51c1fc", "phash": "e7f0f0a79e92282c", "dhash": "0a1201494b4f4c6c", "phash_int": -1.7336212538270577e+18, "collected_at": "2026-05-22T04:32:11.588872+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-06-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-06-07 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-06-07 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-06-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1088544.0, "mtime": "2003-02-22T16:06:06+00:00", "mtime_ts": 1045929966.0, "ctime": "2024-12-21T07:57:39.315664+00:00", "sha256_file": "b4b8d5a04ad56f1626856bdcafe71bdebd682f9d4bb46d57cc357623e8453c4e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:06:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3806", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:06:07", "EXIF DateTimeDigitized": "2003:02:22 17:06:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "141", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "53ee113273372d7dec6e03f5aa261df957418cbffce5990ee78a835f532ba7b0", "phash": "88e0273f36cd6966", "dhash": "aeb8b0b0b0b0b0be", "phash_int": -8.583817737312311e+18, "collected_at": "2026-05-22T04:32:11.671529+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-54-36 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-54-36 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-54-36 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-54-36 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 527326.0, "mtime": "2003-11-29T11:54:36+00:00", "mtime_ts": 1070106876.0, "ctime": "2024-12-21T07:57:54.103141+00:00", "sha256_file": "e92c3990eef7be938a43b749bf8f0f3c98748f8bec1ac64e5d4fc8e607f53601", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:54:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:54:36", "EXIF DateTimeDigitized": "2003:11:29 12:54:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 963, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303001", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "14601"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac6ad9e178d32ad73210e06a4827e3d6b011017874f179e8952d9a587eadd1b6", "phash": "97147f4560e30dcd", "dhash": "843cf8cdfc70496d", "phash_int": -7.560277938493257e+18, "collected_at": "2026-05-22T04:32:11.764947+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 16-20-48 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 16-20-48 CanonPowerShotA40.jpg", "file_name": "2003-02-15 16-20-48 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 16-20-48 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 430718.0, "mtime": "2003-02-15T14:20:46+00:00", "mtime_ts": 1045318846.0, "ctime": "2024-12-21T07:57:38.740645+00:00", "sha256_file": "7d76257cd17d72d0d0d78e9322abacaa8352916fcd91ca2ce696895fe6893e2b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 16:20:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3634", "EXIF ExposureTime": "1/320", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 16:20:48", "EXIF DateTimeDigitized": "2003:02:15 16:20:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181848", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "8402"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f2189965cc9d28f1aaeed4b006bc78297d059eb8d39d692170650261d11de00", "phash": "ab141c6bd29ce39a", "dhash": "32ef6fd8cb8b03f8", "phash_int": -6.119234744269086e+18, "collected_at": "2026-05-22T04:32:11.849086+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-26-14 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-26-14 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-26-14 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-26-14 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 537519.0, "mtime": "2003-03-30T10:02:30+00:00", "mtime_ts": 1049018550.0, "ctime": "2024-12-21T07:57:40.502702+00:00", "sha256_file": "c78e9128b30fbdd91c7913f53e63707e0018f2c6f0b058ae0fdea43dc544c894", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:26:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4436", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:26:14", "EXIF DateTimeDigitized": "2003:03:06 19:26:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191977", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "774"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "609f1eaed3dad3772bd9ba8a3e73c50c295d7986fefc22539f1c27eadddc59d5", "phash": "966a63b56bcaa492", "dhash": "e9b9b9b1a4e6fce8", "phash_int": -7.608158989640359e+18, "collected_at": "2026-05-22T04:32:11.934141+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-00-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-00-51 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-00-51 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-00-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1566517.0, "mtime": "2003-11-29T11:00:51+00:00", "mtime_ts": 1070103651.0, "ctime": "2024-12-21T07:57:53.745130+00:00", "sha256_file": "fcbfb6afb112607faedd374660b672d7c0f03ffb331f6b61b2ef83e4a78113fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:00:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6585", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:00:51", "EXIF DateTimeDigitized": "2003:11:29 12:00:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 245, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8140bd474fcad1f0ac1ab2ba7949676d6073ccfb1d8a9277b2d9dbcbc818c4b1", "phash": "c32af49f48b6fc40", "dhash": "09c949ebca48cce0", "phash_int": -4.3834223223348275e+18, "collected_at": "2026-05-22T04:32:12.084447+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-16 18-37-54 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-16 18-37-54 CanonPowerShotA40.jpg", "file_name": "2003-10-16 18-37-54 CanonPowerShotA40.jpg", "file_stem": "2003-10-16 18-37-54 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 390946.0, "mtime": "2003-10-16T17:37:54+00:00", "mtime_ts": 1066325874.0, "ctime": "2024-12-21T07:57:48.691966+00:00", "sha256_file": "44a6fdcf6aa8044b846795a37210a8b9f42089ee7edeaff6e0e9cadd9d372e62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:16 18:37:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4464", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:16 18:37:54", "EXIF DateTimeDigitized": "2003:10:16 18:37:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 965, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292903", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "82", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e71b330d5f9ca6d7cd19ec206eff98b21b47f2ae036288534d942a34d7a391da", "phash": "8da931ddcd3526c2", "dhash": "db13e5e2e2e492c8", "phash_int": -8.238999214597265e+18, "collected_at": "2026-05-22T04:32:12.104451+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 15-30-21 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 15-30-21 CanonPowerShotA40.jpg", "file_name": "2003-02-01 15-30-21 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 15-30-21 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 429353.0, "mtime": "2003-02-01T13:30:20+00:00", "mtime_ts": 1044106220.0, "ctime": "2024-12-21T07:57:37.805615+00:00", "sha256_file": "c9109969d606003552bfae4cd8a06100b3ad5d5966018db76922900d29e43cba", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 15:30:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3606", "EXIF ExposureTime": "1/200", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 15:30:21", "EXIF DateTimeDigitized": "2003:02:01 15:30:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 75, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161649", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "50", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2908"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "87c12b61dcde2c014debced34ef74826bde0a12e49ebf674fd93f72af86515b3", "phash": "b68752381fc64b39", "dhash": "6c6466663e953534", "phash_int": -5.294172435945993e+18, "collected_at": "2026-05-22T04:32:12.279455+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-09 21-22-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-09 21-22-51 CanonPowerShotS40.jpg", "file_name": "2003-12-09 21-22-51 CanonPowerShotS40.jpg", "file_stem": "2003-12-09 21-22-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1685077.0, "mtime": "2003-12-09T20:22:51+00:00", "mtime_ts": 1071001371.0, "ctime": "2024-12-21T07:57:56.070204+00:00", "sha256_file": "c53d1bf9ef177b7457e4cca4f784f43271ba668035efc20d19e18f877d435434", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:09 21:22:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5392", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:09 21:22:51", "EXIF DateTimeDigitized": "2003:12:09 21:22:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "274dce00e4728bdebb73f00347030840fea6e3939fcb9e60329274dd99de07e1", "phash": "c93c6199cb796632", "dhash": "90143430f9f1d2c0", "phash_int": -3.9461718603117757e+18, "collected_at": "2026-05-22T04:32:12.312929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-04-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-04-07 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-04-07 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-04-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1648467.0, "mtime": "2003-12-21T14:04:06+00:00", "mtime_ts": 1072015446.0, "ctime": "2024-12-21T07:57:56.806228+00:00", "sha256_file": "85d0043472022282374ef1ef81c07b961aaf8f8c9f180f4f4b04b0860b6de9c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:04:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:04:07", "EXIF DateTimeDigitized": "2003:12:21 15:04:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[98, 169, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "157", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8724772c3b31d4e785c831c03de22523f37693558c25045b67bc4a90c1ce036", "phash": "f9c0056f99ed063c", "dhash": "1018181818081898", "phash_int": -4.503539858550932e+17, "collected_at": "2026-05-22T04:32:12.557750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-20 22-00-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-20 22-00-55 CanonPowerShotS40.jpg", "file_name": "2003-02-20 22-00-55 CanonPowerShotS40.jpg", "file_stem": "2003-02-20 22-00-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1596678.0, "mtime": "2003-02-20T21:00:54+00:00", "mtime_ts": 1045774854.0, "ctime": "2024-12-21T07:57:39.176659+00:00", "sha256_file": "e7cdb8bd2e3261c6cac3c831b4bf9fc2d6f9b0a23e43e6f648360568512b2a84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:20 22:00:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4427", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:20 22:00:55", "EXIF DateTimeDigitized": "2003:02:20 22:00:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b15e2bf67463996503687b94dd12dbbefc2aff93476f2aab9f28932864d0c2f6", "phash": "c0c12b7fd65e5898", "dhash": "c8cbd8e0e0033cb8", "phash_int": -4.557313519864883e+18, "collected_at": "2026-05-22T04:32:12.653300+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-19-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-19-16 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-19-16 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-19-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 881728.0, "mtime": "2003-12-31T23:19:14+00:00", "mtime_ts": 1072912754.0, "ctime": "2024-12-21T07:57:59.866327+00:00", "sha256_file": "a1c5d9cfe4ef09088c1a076f6078e3d9664eb441aca53b7d0c2ac22a55402961", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:19:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4471", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:19:16", "EXIF DateTimeDigitized": "2004:01:01 00:19:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f0828cd94752c7d9242b31f93bf06a31824e21ba0085610836e2c83c361069fc", "phash": "dc6632868cccd376", "dhash": "6dae30b270f0b199", "phash_int": -2.5653073842716785e+18, "collected_at": "2026-05-22T04:32:12.765395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 15-34-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 15-34-30 CanonPowerShotS40.jpg", "file_name": "2003-03-29 15-34-30 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 15-34-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1917154.0, "mtime": "2003-03-30T09:45:51+00:00", "mtime_ts": 1049017551.0, "ctime": "2024-12-21T07:57:42.703773+00:00", "sha256_file": "20e1f57333231adebae8a8f24bf213cbb8caae55efd34842872956439e0cc0cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 15:34:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6148", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 15:34:30", "EXIF DateTimeDigitized": "2003:03:29 15:34:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "185", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5343c5df2f957fc1d8ac78a09c0479ba11bd7e7a1293a1df7de85e4f64ee501c", "phash": "89a33793d466d233", "dhash": "cedbdbf6d0f06656", "phash_int": -8.528912161246359e+18, "collected_at": "2026-05-22T04:32:12.939288+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-32-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-32-28 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-32-28 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-32-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2559683.0, "mtime": "2003-09-16T11:32:28+00:00", "mtime_ts": 1063711948.0, "ctime": "2024-12-21T07:57:47.920942+00:00", "sha256_file": "9eb33a3b7a0c69454e9b73de3831a870311c65d5e879ec993ca7d5a62f7447bf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:32:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7212", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:32:28", "EXIF DateTimeDigitized": "2003:09:16 13:32:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8b7d8e822d2778d65a998353af8d77a9b2005560cc100287293182c00b5d233a", "phash": "c037f68c9be1a48e", "dhash": "ec29d4d272e38389", "phash_int": -4.5959338109371914e+18, "collected_at": "2026-05-22T04:32:13.070230+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 23-30-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 23-30-04 CanonPowerShotS40.jpg", "file_name": "2003-10-25 23-30-04 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 23-30-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1451014.0, "mtime": "2003-10-25T22:30:04+00:00", "mtime_ts": 1067121004.0, "ctime": "2024-12-21T07:57:49.282985+00:00", "sha256_file": "dc0de50e7bfe288888d83ae8d2da9b5a70f46a2168ea670faf0bbdc09f27c35e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 23:30:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3887", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 23:30:04", "EXIF DateTimeDigitized": "2003:10:25 23:30:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65530", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21a7068b113247457b5edba4ce83556c8740fea6317d95900c6ca1834c81dc1c", "phash": "cf520cbfb0194b47", "dhash": "f86ac8cacd7353e3", "phash_int": -3.5077271423354604e+18, "collected_at": "2026-05-22T04:32:13.188904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-52-35 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-52-35 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-52-35 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-52-35 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 331181.0, "mtime": "2003-10-23T20:19:41+00:00", "mtime_ts": 1066940381.0, "ctime": "2024-12-21T07:57:46.752904+00:00", "sha256_file": "525b2c69e8a0c8c49eaed4df6b60edf7d900c9f283201ae3554a7a9b56b0a4a0", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/60", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:52:35", "EXIF DateTimeDigitized": "2003:08:12 15:52:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "431/100", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "09e9edd2df77f439be19b90c976971a719f22a63d1cdda3ce5aa2f5825e1e97b", "phash": "c4d595a43686f58d", "dhash": "e4f2a80d8f87e1f0", "phash_int": -4.263336939714317e+18, "collected_at": "2026-05-22T04:32:13.202181+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-53-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-53-46 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-53-46 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-53-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1269500.0, "mtime": "2003-11-30T11:53:46+00:00", "mtime_ts": 1070193226.0, "ctime": "2024-12-21T07:57:55.343181+00:00", "sha256_file": "91ccb6db5965ddbb414d782a714a399b1b5b42ae579144d1dbe5aa9cbddb1425", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:53:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5183", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:53:46", "EXIF DateTimeDigitized": "2003:11:30 12:53:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[85, 180, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29e8401313079fb4497b382acf738d9b6901f009269bd0adb1bc4003ed38425f", "phash": "dd6861c7474e249d", "dhash": "c192303978683832", "phash_int": -2.49263488522688e+18, "collected_at": "2026-05-22T04:32:13.477292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 21-14-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 21-14-37 CanonPowerShotS40.jpg", "file_name": "2003-12-26 21-14-37 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 21-14-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2517973.0, "mtime": "2003-12-26T20:14:36+00:00", "mtime_ts": 1072469676.0, "ctime": "2024-12-21T07:57:57.911264+00:00", "sha256_file": "71d604a04459668a86f71c30592676255863d487fcc7d6221b8e86d11052d428", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 21:14:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8631", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 21:14:37", "EXIF DateTimeDigitized": "2003:12:26 21:14:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b5aa9b4be68791289e055a8e26497277fbce8d11c163f6759432773d1897688", "phash": "b4acb3f4595bc031", "dhash": "2e26272626245cf9", "phash_int": -5.427765588835713e+18, "collected_at": "2026-05-22T04:32:13.526372+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-11-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-11-43 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-11-43 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-11-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1741827.0, "mtime": "2003-12-21T17:11:42+00:00", "mtime_ts": 1072026702.0, "ctime": "2024-12-21T07:57:57.163240+00:00", "sha256_file": "d93cf60e268066c2db1fc944cf50b7a3109c6be2d0e353fd10ee0e92dd39a90e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:11:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5006", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:11:43", "EXIF DateTimeDigitized": "2003:12:21 18:11:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 354, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "551ce6f5cb25d535261c3eaa9ee7b296a08e044215de58b1679f68fb09a74625", "phash": "89d26db2c2d59ae1", "dhash": "e0f172f0db9f16f2", "phash_int": -8.515623330863801e+18, "collected_at": "2026-05-22T04:32:13.754700+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 22-56-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 22-56-05 CanonPowerShotS40.jpg", "file_name": "2003-12-31 22-56-05 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 22-56-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1907414.0, "mtime": "2003-12-31T21:56:04+00:00", "mtime_ts": 1072907764.0, "ctime": "2024-12-21T07:57:59.447314+00:00", "sha256_file": "a6280c00ec7b5449f3760e104e9b2440f01b91abeffd7d810ffaa4ba6ddae1bd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 22:56:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5280", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 22:56:05", "EXIF DateTimeDigitized": "2003:12:31 22:56:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "268", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e58a518b8a7952fb7747ce4679b0ee72966b562655ae9b6353586bb35f688896", "phash": "a9fdd48989685a9a", "dhash": "b21623337bcaa7e4", "phash_int": -6.197563825011009e+18, "collected_at": "2026-05-22T04:32:13.764697+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 13-28-44 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 13-28-44 CanonPowerShotA40.jpg", "file_name": "2003-11-01 13-28-44 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 13-28-44 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 470291.0, "mtime": "2003-11-01T12:28:44+00:00", "mtime_ts": 1067689724.0, "ctime": "2024-12-21T07:57:50.992041+00:00", "sha256_file": "6dfdb72b76c6df28515ea2b73f10498beddbe8770d408c38903f3cfda882ef91", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 13:28:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3599", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 13:28:44", "EXIF DateTimeDigitized": "2003:11:01 13:28:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292980", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2133"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "336358e73b5e507c532690efd23afab5c4b5c20ff28cdca2039fbcfac5dc0d6b", "phash": "d8ed33a6a6391938", "dhash": "2e30302020301818", "phash_int": -2.815537401190344e+18, "collected_at": "2026-05-22T04:32:13.945703+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-10 14-18-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-10 14-18-53 CanonPowerShotS40.jpg", "file_name": "2003-11-10 14-18-53 CanonPowerShotS40.jpg", "file_stem": "2003-11-10 14-18-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1842892.0, "mtime": "2003-11-10T13:18:53+00:00", "mtime_ts": 1068470333.0, "ctime": "2024-12-21T07:57:52.489089+00:00", "sha256_file": "bbb45172ff32a3137d2802c312442fc459310acc9df2c86dd723d210d0235e96", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:10 14:18:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4825", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:10 14:18:53", "EXIF DateTimeDigitized": "2003:11:10 14:18:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 272, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65511", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "063e64e58abf8383977b8e758ad6b6f804ad5e15f8f92a407c5136b76ff78277", "phash": "c29a39979cf0c14f", "dhash": "c8c8c0e464cc4c92", "phash_int": -4.424160360602222e+18, "collected_at": "2026-05-22T04:32:13.993704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-23 15-00-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-23 15-00-35 CanonPowerShotS40.jpg", "file_name": "2003-03-23 15-00-35 CanonPowerShotS40.jpg", "file_stem": "2003-03-23 15-00-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1657455.0, "mtime": "2003-03-23T14:00:34+00:00", "mtime_ts": 1048428034.0, "ctime": "2024-12-21T07:57:41.989750+00:00", "sha256_file": "8cb2f84a60955c880da131572e37c6cada4e06109090100ffd199a747e49c1dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:23 15:00:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2913", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:23 15:00:35", "EXIF DateTimeDigitized": "2003:03:23 15:00:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1268a9982d3efa7bf60da1e1d42cd55f5e88991b5ba30daf1766492f6d5841df", "phash": "84a9774837d8e21f", "dhash": "e0f0f8f6f6e2644c", "phash_int": -8.887441237580652e+18, "collected_at": "2026-05-22T04:32:14.152372+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-40-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-40-36 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-40-36 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-40-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1974066.0, "mtime": "2003-11-16T18:40:36+00:00", "mtime_ts": 1069008036.0, "ctime": "2024-12-21T07:57:53.393118+00:00", "sha256_file": "7a38e8ff5ebb1c9cfeea880ea615a5eacad30bc4f32c9622f4d446ce02b8cf31", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:40:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5267", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:40:36", "EXIF DateTimeDigitized": "2003:11:16 19:40:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e6902323c59d45617f3d02a06f009739be4d35a577b07ced510d58ac2f13134", "phash": "f3a944d32b669949", "dhash": "c8ccd2cb99d8ec8c", "phash_int": -8.891037776720298e+17, "collected_at": "2026-05-22T04:32:14.192446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 03-36-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 03-36-26 CanonPowerShotS40.jpg", "file_name": "2003-12-31 03-36-26 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 03-36-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1744292.0, "mtime": "2003-12-31T02:36:24+00:00", "mtime_ts": 1072838184.0, "ctime": "2024-12-21T07:57:59.245307+00:00", "sha256_file": "711da61d355e84dad59e7e6bd40debe4be9a3889a8e83788200dee4ad201afb9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 03:36:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6236", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 03:36:26", "EXIF DateTimeDigitized": "2003:12:31 03:36:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "227/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "70", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1135"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e7368ac4f96ee17b84fffd1f966c67c43101b93d155a8ce1da483805276bca0", "phash": "ff31623c19492567", "dhash": "1b444e7276266369", "phash_int": -5.815730991732188e+16, "collected_at": "2026-05-22T04:32:14.336579+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-26 16-20-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-26 16-20-27 CanonPowerShotS40.jpg", "file_name": "2003-04-26 16-20-27 CanonPowerShotS40.jpg", "file_stem": "2003-04-26 16-20-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1511337.0, "mtime": "2003-04-26T15:20:26+00:00", "mtime_ts": 1051370426.0, "ctime": "2024-12-21T07:57:45.923877+00:00", "sha256_file": "230e0b58bb9c68ecab4626a3a20f5d4195f707ea25d1bfe612ff0b488036526a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:26 16:20:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3742", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:26 16:20:27", "EXIF DateTimeDigitized": "2003:04:26 16:20:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "291/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 327, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "128", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "291"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "41ea55a169d55f3b927dd3ba0ea5d710449a95e4d45261a2f181151d0feeb983", "phash": "cb8f2d1e659b22c8", "dhash": "6261e1e9e8e9b192", "phash_int": -3.7787519537636224e+18, "collected_at": "2026-05-22T04:32:14.402583+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-21-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-21-00 CanonPowerShotA40.jpg", "file_name": "2003-11-01 11-21-00 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 11-21-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 466729.0, "mtime": "2003-11-01T10:21:00+00:00", "mtime_ts": 1067682060.0, "ctime": "2024-12-21T07:57:50.726032+00:00", "sha256_file": "2917e3ea62c5e9ccc6916204048f6576068ffdf5e63a1410e9af8230ac53f667", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:21:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4460", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 11:21:00", "EXIF DateTimeDigitized": "2003:11:01 11:21:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 809, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292962", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "55", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1080"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dc3a3972d57ddfab7444bd7f242f089fbebfb1a7c594ec0c5033b0bc0706ab44", "phash": "bd25410aff0f313c", "dhash": "569e3e7e2f3bb098", "phash_int": -4.817372710918214e+18, "collected_at": "2026-05-22T04:32:14.490585+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 15-02-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 15-02-17 CanonPowerShotS40.jpg", "file_name": "2003-03-29 15-02-17 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 15-02-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2591256.0, "mtime": "2003-03-30T09:45:16+00:00", "mtime_ts": 1049017516.0, "ctime": "2024-12-21T07:57:42.609770+00:00", "sha256_file": "7ca65a4220f2c9507ff87fe1f06111ec5840e34fe5246a8bc6f67987615810a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 15:02:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6135", "EXIF ExposureTime": "1/100", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 15:02:17", "EXIF DateTimeDigitized": "2003:03:29 15:02:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6737/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6737"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b5cd503a6598be27bbd446f69179ea794140ab98f253afab0cb731d8d91d6ac", "phash": "f45c2e40251cfb5e", "dhash": "3021288e8688a44d", "phash_int": -8.387445775623139e+17, "collected_at": "2026-05-22T04:32:14.635159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 17-57-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 17-57-50 CanonPowerShotS40.jpg", "file_name": "2003-12-26 17-57-50 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 17-57-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1445903.0, "mtime": "2003-12-26T16:57:48+00:00", "mtime_ts": 1072457868.0, "ctime": "2024-12-21T07:57:57.752259+00:00", "sha256_file": "e65ed20a0dabad678231436ed8a1708969ca84e96bebe796bfa96a3f0ad7bcd7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 17:57:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5931", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 17:57:50", "EXIF DateTimeDigitized": "2003:12:26 17:57:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "53", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b1291917e5fa10910ae5473733ffb4e71e6987e6f1bd7dc096751f1442d4279", "phash": "c14e607c9e29c767", "dhash": "c2a0cc7070b292cc", "phash_int": -4.5175672878602793e+18, "collected_at": "2026-05-22T04:32:14.663160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-27 08-09-31 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-27 08-09-31 CanonPowerShotS40.jpg", "file_name": "2003-03-27 08-09-31 CanonPowerShotS40.jpg", "file_stem": "2003-03-27 08-09-31 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1546829.0, "mtime": "2003-03-27T07:09:30+00:00", "mtime_ts": 1048748970.0, "ctime": "2024-12-21T07:57:42.198757+00:00", "sha256_file": "53cb4ff668c4c6cfd28fa5e9d207028220241ea6d545112a8c9a607aa488bf2f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:27 08:09:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4465", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:27 08:09:31", "EXIF DateTimeDigitized": "2003:03:27 08:09:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "19", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6dc24e92fa6603e9a8d78152a1f8a8370c3540f1c5260b5e41f5bae08c48c747", "phash": "d2c632639a3dc92d", "dhash": "88ace0e0f0c91c58", "phash_int": -3.2588618769850834e+18, "collected_at": "2026-05-22T04:32:14.885704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 17-09-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 17-09-08 CanonPowerShotS40.jpg", "file_name": "2003-02-15 17-09-08 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 17-09-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2088596.0, "mtime": "2003-02-15T16:09:08+00:00", "mtime_ts": 1045325348.0, "ctime": "2024-12-21T07:57:38.858649+00:00", "sha256_file": "29eb8b86505c86974b307e806e7269325380183424459833735387592d9b240c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 17:09:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5350", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 17:09:08", "EXIF DateTimeDigitized": "2003:02:15 17:09:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "17b26b7743e4469b698c4484e689424ec30227c29972b8cbbf28c9255347da06", "phash": "b14e493778296f64", "dhash": "ebe9e79e2c4c1e9a", "phash_int": -5.670514378224865e+18, "collected_at": "2026-05-22T04:32:14.942788+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-43-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-43-57 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-43-57 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-43-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 342839.0, "mtime": "2003-04-05T15:43:56+00:00", "mtime_ts": 1049557436.0, "ctime": "2024-12-21T07:57:43.992815+00:00", "sha256_file": "0f5fe34e370b7fe76687b517c7180f5460e8a91590528635a204097223b1e17a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:43:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4791", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:43:57", "EXIF DateTimeDigitized": "2003:04:05 16:43:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8504362380907c47f0369d2cedd70cd6da2f599e8794d77105df89fe24fcdd34", "phash": "cf8e646559593398", "dhash": "a6e760616149f484", "phash_int": -3.490742274712063e+18, "collected_at": "2026-05-22T04:32:15.030910+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-49-06 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-49-06 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-49-06 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-49-06 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 283406.0, "mtime": "2003-10-23T20:19:40+00:00", "mtime_ts": 1066940380.0, "ctime": "2024-12-21T07:57:46.722903+00:00", "sha256_file": "4579db1490f1f15105dde2a07d0fa4ae6f822538fc0a0b1fe72e43002d622baa", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "3163", "EXIF ExposureTime": "1/45", "EXIF FNumber": "9/2", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:49:06", "EXIF DateTimeDigitized": "2003:08:12 15:49:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "11/2", "EXIF ApertureValue": "43/10", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "43/10", "EXIF SubjectDistance": "199/100", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "56/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "140", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "029f4728a0c44de33f1a8bc41dccd56432fa84772aabb2b887c0185e14da77c6", "phash": "cbb4304a75a2de55", "dhash": "fcf9f9f3d0f1d9d8", "phash_int": -3.7683338918429414e+18, "collected_at": "2026-05-22T04:32:15.192218+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-39-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-39-04 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-39-04 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-39-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1903886.0, "mtime": "2003-11-16T18:39:04+00:00", "mtime_ts": 1069007944.0, "ctime": "2024-12-21T07:57:53.354117+00:00", "sha256_file": "8555d4b606ba86dc0b3cdf51544d3e0b0171852a5b3df2a5ea76c5f2758504c1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:39:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5864", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:39:04", "EXIF DateTimeDigitized": "2003:11:16 19:39:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "46", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65522", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83e8698afed4876ce1587b224d3aeb5cb4fe28501c031f5287f5c5f2fc0e1538", "phash": "9de663c546985359", "dhash": "e42632307276329a", "phash_int": -7.06885286616732e+18, "collected_at": "2026-05-22T04:32:15.222546+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 22-57-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 22-57-03 CanonPowerShotS40.jpg", "file_name": "2003-12-31 22-57-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 22-57-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2592425.0, "mtime": "2003-12-31T21:57:02+00:00", "mtime_ts": 1072907822.0, "ctime": "2024-12-21T07:57:59.479315+00:00", "sha256_file": "40bd98ee7886505293d59dfd19f88445ec7dbd13ea17753d3976e176f16cb63b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 22:57:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7122", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 22:57:03", "EXIF DateTimeDigitized": "2003:12:31 22:57:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "761/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "236", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3044"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eff8faff6f496602a776585245b01f37b65d02247c46571cf0c04190fc040bca", "phash": "8281b5566e5b625f", "dhash": "c4d6ddd121b83816", "phash_int": -9.042747193959947e+18, "collected_at": "2026-05-22T04:32:15.429885+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 12-58-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 12-58-33 CanonPowerShotS40.jpg", "file_name": "2003-12-20 12-58-33 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 12-58-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1249154.0, "mtime": "2003-12-20T11:58:32+00:00", "mtime_ts": 1071921512.0, "ctime": "2024-12-21T07:57:56.555220+00:00", "sha256_file": "498d81999b808676652a03e3aeb4536f639aea54280f88457c3f65ac826c9c95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 12:58:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2402", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 12:58:33", "EXIF DateTimeDigitized": "2003:12:20 12:58:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "193", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3dcfea2b2471d1dca8025542f0f6c39685b3a6cb0979329132264e129947b510", "phash": "d7d7dc84135252b2", "dhash": "f0f04848c8f0f0f0", "phash_int": -2.8936017757442985e+18, "collected_at": "2026-05-22T04:32:15.475451+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-15 19-22-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-15 19-22-56 CanonPowerShotS40.jpg", "file_name": "2003-12-15 19-22-56 CanonPowerShotS40.jpg", "file_stem": "2003-12-15 19-22-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1478471.0, "mtime": "2003-12-15T18:22:54+00:00", "mtime_ts": 1071512574.0, "ctime": "2024-12-21T07:57:56.342213+00:00", "sha256_file": "3b598f5aecc1d4dcd304f134e9dfe28d47329e16a08c29b48751284bf1c0a8a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:15 19:22:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4785", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:15 19:22:56", "EXIF DateTimeDigitized": "2003:12:15 19:22:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0be3453c8bc03ac69e09eb72cbd4f2d7e08ca2da0046c344360660b7136effb5", "phash": "d9e6369a4b65c41c", "dhash": "e2f0e2e2f1f03230", "phash_int": -2.7454468865179146e+18, "collected_at": "2026-05-22T04:32:15.636805+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-35-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-35-55 CanonPowerShotS40.jpg", "file_name": "2003-02-15 14-35-55 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 14-35-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1175179.0, "mtime": "2003-02-15T13:35:55+00:00", "mtime_ts": 1045316155.0, "ctime": "2024-12-21T07:57:38.565639+00:00", "sha256_file": "1b2c3e832ae28caa60561093c1e79b58f83bf99d10d9eb262398efbb398e4386", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:35:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5898", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 14:35:55", "EXIF DateTimeDigitized": "2003:02:15 14:35:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "873/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "324", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "873"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8cb82a465d4c496c530b8953d15fffb480939939d6b7ca6ae05e889375c3b88", "phash": "e30a0428975fbe6d", "dhash": "c9890949898dc94c", "phash_int": -2.0868509049479665e+18, "collected_at": "2026-05-22T04:32:15.656804+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-42-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-42-52 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-42-52 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-42-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2098400.0, "mtime": "2003-04-05T12:42:50+00:00", "mtime_ts": 1049546570.0, "ctime": "2024-12-21T07:57:43.596802+00:00", "sha256_file": "63e92c861efa48d8955ed6001c8d3ef0c90d0dd9f3b4dfb4c6619acf41836a6c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:42:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6893", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:42:52", "EXIF DateTimeDigitized": "2003:04:05 13:42:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e24ffd3ab2934302e81d9dbb0343fdfc5d9dee55a2de2d5d346cd123887f66e", "phash": "b9b4b49b7a2505d1", "dhash": "1c3c9e0f59715315", "phash_int": -5.065225101022789e+18, "collected_at": "2026-05-22T04:32:15.946302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 15-41-31 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 15-41-31 CanonPowerShotS40.jpg", "file_name": "2003-04-20 15-41-31 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 15-41-31 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2828856.0, "mtime": "2003-04-20T14:41:30+00:00", "mtime_ts": 1050849690.0, "ctime": "2024-12-21T07:57:45.783873+00:00", "sha256_file": "a951d7f36068ce23c6f620c5ee30161d5c3143e67d089f4a016d9d49abb868a7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 15:41:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6901", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 15:41:31", "EXIF DateTimeDigitized": "2003:04:20 15:41:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "285", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cb46bf6a88245e827ded2a608c38699e9ca6084b4e7cbda2b45595e1fba0fb13", "phash": "b7b8a0bf604051df", "dhash": "9e1d188b5e686cac", "phash_int": -5.208236225239953e+18, "collected_at": "2026-05-22T04:32:15.950302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-07-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-07-08 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-07-08 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-07-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 436707.0, "mtime": "2003-11-01T00:07:08+00:00", "mtime_ts": 1067645228.0, "ctime": "2024-12-21T07:57:50.361020+00:00", "sha256_file": "1b5cbe8532d2a11151067dfc0e7c85f331343806bc552bba7f9a81c78c3f50ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:07:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4641", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:07:08", "EXIF DateTimeDigitized": "2003:11:01 01:07:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 884, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292926", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94580f88dc737006c282f6754f23854711e5201a86d816c6220b8d9399406844", "phash": "bd2e6c89ca99aa32", "dhash": "73461fd9d97a3c21", "phash_int": -4.814791612547094e+18, "collected_at": "2026-05-22T04:32:16.171960+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 13-28-45 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 13-28-45 CanonPowerShotA40.jpg", "file_name": "2003-02-23 13-28-45 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 13-28-45 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 565059.0, "mtime": "2003-02-23T11:28:44+00:00", "mtime_ts": 1045999724.0, "ctime": "2024-12-21T07:57:39.874682+00:00", "sha256_file": "241ca5ab3935b9595a6880be6ec26e0072796ea21561752e489dc556e541e32f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 13:28:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6231", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 13:28:45", "EXIF DateTimeDigitized": "2003:02:23 13:28:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191915", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3524"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b95ed0e66f9d4e6934c8064abb831dd252e619789f76936469fa5382165703e", "phash": "abedc5a6c7c39011", "dhash": "43339b5b1b0dcdd9", "phash_int": -6.057968603636724e+18, "collected_at": "2026-05-22T04:32:16.173962+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-07-09 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-07-09 E5000.jpg", "file_name": "2003-05-25 11-07-09 E5000.jpg", "file_stem": "2003-05-25 11-07-09 E5000", "file_ext": ".jpg", "file_size": 542675.0, "mtime": "2003-05-25T18:56:56+00:00", "mtime_ts": 1053889016.0, "ctime": "2024-12-21T07:57:46.397892+00:00", "sha256_file": "c727f540d2d13cbfc53f5394e1f8c9405acd21daf0a87c2b80b3eac41c1deb60", "exif": {"Image Make": "Canon", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:05:25 11:07:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1008", "Thumbnail JPEGInterchangeFormatLength": "6227", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:05:25 11:07:09", "EXIF DateTimeDigitized": "2003:05:25 11:07:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "301919/32768", "EXIF ApertureValue": "383517/65536", "EXIF ExposureBiasValue": "-2/3", "EXIF MakerNote": "[5, 0, 4, 0, 3, 0, 27, 0, 0, 0, 244, 1, 0, 0, 6, 0, 2, 0, 32, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1920", "EXIF ExifImageLength": "2560", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "0", "MakerNote OwnerName": "", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "187", "MakerNote TargetExposureTime": "295", "MakerNote ExposureCompensation": "65514", "MakerNote WhiteBalance": "Unknown", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote Unknown": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1920.0, "height": 2560.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e66e6599aab8887b6619809cf281221023b583b8470349bc9bb424712cbac371", "phash": "af2fd0360fc2c28b", "dhash": "0b775b6777cc8c70", "phash_int": -5.823206862555528e+18, "collected_at": "2026-05-22T04:32:16.406707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-04-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-04-01 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-04-01 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-04-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1521781.0, "mtime": "2003-12-21T14:04:00+00:00", "mtime_ts": 1072015440.0, "ctime": "2024-12-21T07:57:56.777227+00:00", "sha256_file": "19ac56b451fa914147f34326b3b17c35a8965d78429a76a447511e68409984a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:04:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5960", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:04:01", "EXIF DateTimeDigitized": "2003:12:21 15:04:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "166", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a1ccb9436da45afdf37c9c1fb5622d35d2814be5c537475c70ba5060dc21180", "phash": "f1e4037d89652778", "dhash": "12180c8819181898", "phash_int": -1.0166837781679863e+18, "collected_at": "2026-05-22T04:32:16.417707+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 01-25-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 01-25-25 CanonPowerShotS40.jpg", "file_name": "2004-01-01 01-25-25 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 01-25-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1362993.0, "mtime": "2004-01-01T00:25:24+00:00", "mtime_ts": 1072916724.0, "ctime": "2024-12-21T07:58:00.017332+00:00", "sha256_file": "3e79daed20ca9ff686b2ff4e33966eba00adfa029184aa0f65cdb153b708615f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 01:25:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5393", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 01:25:25", "EXIF DateTimeDigitized": "2004:01:01 01:25:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 98, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "221", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "85f728c966a1e008b90d36584a07459c4ed1e172096b11fcf71cdd044342b7af", "phash": "fffef0200070f730", "dhash": "00202969c36a9cd8", "phash_int": -298929716398288.0, "collected_at": "2026-05-22T04:32:16.657818+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 19-50-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 19-50-22 CanonPowerShotS40.jpg", "file_name": "2003-04-19 19-50-22 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 19-50-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1308209.0, "mtime": "2003-04-19T19:50:22+00:00", "mtime_ts": 1050781822.0, "ctime": "2024-12-21T07:57:45.620867+00:00", "sha256_file": "355c1683b6611b812976b3699014f76623e3c1b73a39394483bf3f0f72cf7915", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 19:50:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3731", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 19:50:22", "EXIF DateTimeDigitized": "2003:04:19 19:50:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "154", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a47c308414d809e613582d474f3c6b30b4f3450c7a5728b43ec3f60f30b9ab4c", "phash": "c0f71dcc13746633", "dhash": "d8f8ccccccb6b2b2", "phash_int": -4.5421289368429266e+18, "collected_at": "2026-05-22T04:32:16.689898+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 13-16-10 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 13-16-10 CanonPowerShotA40.jpg", "file_name": "2003-11-01 13-16-10 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 13-16-10 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 412931.0, "mtime": "2003-11-01T12:16:10+00:00", "mtime_ts": 1067688970.0, "ctime": "2024-12-21T07:57:50.935039+00:00", "sha256_file": "a59c33e98e96991bd99c4e350ce672c69be7c09080abb281780abf27c3c7f0de", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 13:16:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5979", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 13:16:10", "EXIF DateTimeDigitized": "2003:11:01 13:16:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[6, 1413, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292974", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "31", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "38", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "496"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2d0fe236b8778ccdcbf213a98fcfaf668ac01a705029e4eda83c563c031bca3", "phash": "ad6a363095b266b5", "dhash": "3ef36373f2f31fe6", "phash_int": -5.950884375318862e+18, "collected_at": "2026-05-22T04:32:16.862083+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-52-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-52-08 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-52-08 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-52-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 601932.0, "mtime": "2003-11-01T00:52:08+00:00", "mtime_ts": 1067647928.0, "ctime": "2024-12-21T07:57:50.429023+00:00", "sha256_file": "1cce6c44711986c9d0e05856d39ac2322daf42538786b0621fc1b4498e315ee6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:52:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4110", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:52:08", "EXIF DateTimeDigitized": "2003:11:01 01:52:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 1884, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292935", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "55", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "522"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4897ba0e4c0053723ed445795218fc52d448c9eca651624c3a49f7d8533e6c4f", "phash": "878e5c3879661d9a", "dhash": "b0e4e6cf9a5ccfc7", "phash_int": -8.678898034271708e+18, "collected_at": "2026-05-22T04:32:16.868092+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-06-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-06-01 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-06-01 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-06-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1146282.0, "mtime": "2003-02-22T16:06:00+00:00", "mtime_ts": 1045929960.0, "ctime": "2024-12-21T07:57:39.302663+00:00", "sha256_file": "064255bedeb31e477161a2e8ed8370cec175b471528d645eef74d38396645e84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:06:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3874", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:06:01", "EXIF DateTimeDigitized": "2003:02:22 17:06:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "043dc6fc3be3943a58fbb69564f37a2fb891e34e2ed5db6bd93e2edab724d7e9", "phash": "8ef1301c33c674e7", "dhash": "5c7060606860616e", "phash_int": -8.146677353250655e+18, "collected_at": "2026-05-22T04:32:16.999391+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 02-54-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 02-54-35 CanonPowerShotS40.jpg", "file_name": "2003-12-31 02-54-35 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 02-54-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1691619.0, "mtime": "2003-12-31T01:54:34+00:00", "mtime_ts": 1072835674.0, "ctime": "2024-12-21T07:57:59.232307+00:00", "sha256_file": "5250c81977741e675b3dd68cc7b0b46d57dba01d86834bc649554dd1ea44b0ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 02:54:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6255", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 02:54:35", "EXIF DateTimeDigitized": "2003:12:31 02:54:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[52, 216, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "145a973296398088b674a828c5a44f68ffbb6b7ea0bf8e5daba62ed90a225a9d", "phash": "e88e52f399c94d4c", "dhash": "71a536b2a2979396", "phash_int": -1.6893216040067203e+18, "collected_at": "2026-05-22T04:32:17.036397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-13 19-54-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-13 19-54-04 CanonPowerShotS40.jpg", "file_name": "2003-12-13 19-54-04 CanonPowerShotS40.jpg", "file_stem": "2003-12-13 19-54-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1600349.0, "mtime": "2003-12-13T18:54:04+00:00", "mtime_ts": 1071341644.0, "ctime": "2024-12-21T07:57:56.279211+00:00", "sha256_file": "6a35e321af0a7a181a4647291b5199306ba8bc9acae24f373de3cac7f0dc9b61", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:13 19:54:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5414", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:13 19:54:04", "EXIF DateTimeDigitized": "2003:12:13 19:54:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 350, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "23", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "562dd8429ec280f912e24c984aa5be938c7ca7cf7d06f31d6ee4951e21af5257", "phash": "d64f7d9087c6c868", "dhash": "dc58d0ecf0d4ccdc", "phash_int": -3.0040443667261174e+18, "collected_at": "2026-05-22T04:32:17.150399+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-21-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-21-02 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-21-02 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-21-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 926972.0, "mtime": "2002-09-28T13:21:00+00:00", "mtime_ts": 1033219260.0, "ctime": "2024-12-21T07:57:36.212564+00:00", "sha256_file": "07a87301d9f356a2c48733b5518d68c3fb59db090134477d0c591d4008c90481", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:21:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2390", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:21:02", "EXIF DateTimeDigitized": "2002:09:28 13:21:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "280", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76e97b031b72f28acea2c2f05ed19ba16d6f5bdbe755fe23b9747d506e3e142f", "phash": "ccac3333b1ce8ccc", "dhash": "dea3b1b0b020219c", "phash_int": -3.6985248968585677e+18, "collected_at": "2026-05-22T04:32:17.220854+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 19-50-02 CanonPowerShotS40 (1).jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 19-50-02 CanonPowerShotS40 (1).jpg", "file_name": "2003-04-19 19-50-02 CanonPowerShotS40 (1).jpg", "file_stem": "2003-04-19 19-50-02 CanonPowerShotS40 (1)", "file_ext": ".jpg", "file_size": 1542972.0, "mtime": "2003-05-07T05:43:38+00:00", "mtime_ts": 1052286218.0, "ctime": "2024-12-21T07:57:45.582866+00:00", "sha256_file": "995a15fbf8ffd432fd22154f8ed6b819307f76b6dc49829227ce4dac6d53c1dd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 19:50:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "3738", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 19:50:02", "EXIF DateTimeDigitized": "2003:04:19 19:50:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "51", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ca01476a94c5a833fae734f2016451eba5309534ed418602adb353b086e7045", "phash": "9c964fdc2955a3c2", "dhash": "706c6c34b03830f3", "phash_int": -7.163450350281317e+18, "collected_at": "2026-05-22T04:32:17.276458+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-10-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-10-43 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-10-43 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-10-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1797510.0, "mtime": "2003-12-21T17:10:42+00:00", "mtime_ts": 1072026642.0, "ctime": "2024-12-21T07:57:57.150239+00:00", "sha256_file": "74698e1b5129450160abe24e87d4ad605f4776507fe7d2563cda9a1738240a84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:10:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5404", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:10:43", "EXIF DateTimeDigitized": "2003:12:21 18:10:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 329, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7584ebdf2dd16c666156ce0fa6a5c2e3357e00f4ad523436d689ff165ad01c78", "phash": "85936a25c3ae965e", "dhash": "f2daf4f6d676e7e3", "phash_int": -8.821590534659336e+18, "collected_at": "2026-05-22T04:32:17.496622+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-42-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-42-37 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-42-37 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-42-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1338865.0, "mtime": "2003-12-21T17:42:36+00:00", "mtime_ts": 1072028556.0, "ctime": "2024-12-21T07:57:57.440249+00:00", "sha256_file": "b7e3af6e2020a3e222842d60f0777c44179d31635784479492c68ea78aa7206d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:42:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4017", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:42:37", "EXIF DateTimeDigitized": "2003:12:21 18:42:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65498", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58e692adf79d8e45131c619be77075879adfac98d719353a2f67e79ce69a43a0", "phash": "a5cd242d7c745587", "dhash": "e6e76e1e3f9f8e8e", "phash_int": -6.499498909445631e+18, "collected_at": "2026-05-22T04:32:17.518622+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-55-46 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-55-46 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-55-46 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-55-46 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 453993.0, "mtime": "2003-02-01T12:55:44+00:00", "mtime_ts": 1044104144.0, "ctime": "2024-12-21T07:57:37.763613+00:00", "sha256_file": "02a0889a6575ac91647bb1f11823514e74184875d75b71461d1930c0b86da444", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:55:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4231", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:55:46", "EXIF DateTimeDigitized": "2003:02:01 14:55:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161642", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "186", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1064"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a222312732f38534db579480a790027c0de59aec295cbf1d34b15ac637498f87", "phash": "a4ce993b4d134ec5", "dhash": "f9a5c787870f9ed6", "phash_int": -6.571146326311743e+18, "collected_at": "2026-05-22T04:32:17.673147+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 15-16-35 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 15-16-35 CanonPowerShotA40.jpg", "file_name": "2003-02-15 15-16-35 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 15-16-35 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 459169.0, "mtime": "2003-02-15T13:16:34+00:00", "mtime_ts": 1045314994.0, "ctime": "2024-12-21T07:57:38.697644+00:00", "sha256_file": "0630a52ec97ad9c73a57377b157ff4b83acf344a51a2a7e45b987d4ab792a5b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 15:16:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5086", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 15:16:35", "EXIF DateTimeDigitized": "2003:02:15 15:16:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181842", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2024"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "74d353330d13aef5dbd862969a1b01d38118687df063640f2970505544680570", "phash": "bf0880bddb6d82b1", "dhash": "f672f9381c2e0e0b", "phash_int": -4.681350259733069e+18, "collected_at": "2026-05-22T04:32:17.710148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-14-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-14-45 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-14-45 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-14-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1458259.0, "mtime": "2003-11-29T11:14:45+00:00", "mtime_ts": 1070104485.0, "ctime": "2024-12-21T07:57:53.836133+00:00", "sha256_file": "14ce242dbb4b8e66a0b168740d950d9dea995b0eff861c2d9d4a251fe39605cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:14:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6206", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:14:45", "EXIF DateTimeDigitized": "2003:11:29 12:14:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "62", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7cd5aec83ced84697816d778058443bf8113aeda511956fd8adda77a46328e8c", "phash": "857a0e35c95aa5cd", "dhash": "8464c090928ef4e2", "phash_int": -8.82872849533222e+18, "collected_at": "2026-05-22T04:32:17.920156+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-29 09-21-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-29 09-21-15 CanonPowerShotS40.jpg", "file_name": "2003-09-29 09-21-15 CanonPowerShotS40.jpg", "file_stem": "2003-09-29 09-21-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1668282.0, "mtime": "2003-09-29T07:21:15+00:00", "mtime_ts": 1064820075.0, "ctime": "2024-12-21T07:57:48.100947+00:00", "sha256_file": "2e7974d656e959253dc9435e209052b8f8183c238e5a41e9f584c23033c32228", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:29 09:21:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6502", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:29 09:21:15", "EXIF DateTimeDigitized": "2003:09:29 09:21:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 407, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e166c7e7f38feeeb14e51fb31cfa9b0c22a76f81fa8b92dcab92a805d8b53d2", "phash": "846d7302ffc08fcc", "dhash": "88b4f6f2f4f0e068", "phash_int": -8.904334431523664e+18, "collected_at": "2026-05-22T04:32:17.971157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-24-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-24-11 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-24-11 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-24-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 906912.0, "mtime": "2003-04-19T16:24:10+00:00", "mtime_ts": 1050769450.0, "ctime": "2024-12-21T07:57:45.458862+00:00", "sha256_file": "9efa1ef76f2cb08189facabeaaea0d81970ef34ef197cdc5713f449e24bbc04a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:24:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2556", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:24:11", "EXIF DateTimeDigitized": "2003:04:19 17:24:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "265", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bee91db6752ce1109e88682fa8e13cdb530fb722e0caf16aa9ec3b00245bbabd", "phash": "c37034cf38c7c966", "dhash": "f0c4c2d0c0e2c078", "phash_int": -4.3639299743065185e+18, "collected_at": "2026-05-22T04:32:18.090160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-07-18 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-07-18 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-07-18 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-07-18 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 496817.0, "mtime": "2003-11-29T16:07:18+00:00", "mtime_ts": 1070122038.0, "ctime": "2024-12-21T07:57:55.065172+00:00", "sha256_file": "2ebbd8fb9171156ecf621c91b02b7ba1ec281282990bcd50fdc91d6939a2b29a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:07:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4788", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:07:18", "EXIF DateTimeDigitized": "2003:11:29 17:07:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 531, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303085", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "968"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fc9285fba35758cca6ab3b8bd1a9a04493e1becabf4b09cd208c2be30ce2a96", "phash": "a91e614b2dfa83a5", "dhash": "7b7efc73f2d39286", "phash_int": -6.260459456476577e+18, "collected_at": "2026-05-22T04:32:18.105162+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-17-58 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-17-58 CanonPowerShotA40.jpg", "file_name": "2003-02-15 14-17-58 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 14-17-58 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 758111.0, "mtime": "2003-02-15T12:17:56+00:00", "mtime_ts": 1045311476.0, "ctime": "2024-12-21T07:57:38.505637+00:00", "sha256_file": "1ad10deb5e88afa4d28d516f6ffe9647eb283e1b7c4aeb215bf74d9bd03ecdc0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:17:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6081", "EXIF ExposureTime": "1/125", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 14:17:58", "EXIF DateTimeDigitized": "2003:02:15 14:17:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181821", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "220", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2111"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "792cb0fd6d28ea932b6dd1a1637a1db9aac1cd75d88c968c71e8d1e3a6f94e90", "phash": "e1c395d8ca9dd548", "dhash": "f0cf86c783b232c2", "phash_int": -2.1787330363723722e+18, "collected_at": "2026-05-22T04:32:18.295172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-43-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-43-55 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-43-55 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-43-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1824817.0, "mtime": "2003-12-21T13:43:54+00:00", "mtime_ts": 1072014234.0, "ctime": "2024-12-21T07:57:56.740226+00:00", "sha256_file": "08e515207f8f39611a0f6319d201b52e196660e8655d02ce9b68b413d75ab24b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:43:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6826", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:43:55", "EXIF DateTimeDigitized": "2003:12:21 14:43:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[54, 212, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9c1943c7c0f3ad8e7bf9a92b36b042c2d71a8abdb2781139226fce3d7e607b9", "phash": "9a3231c66fae47a8", "dhash": "0dd8b06070e8b1f1", "phash_int": -7.335746114686138e+18, "collected_at": "2026-05-22T04:32:18.331172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 12-07-49 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 12-07-49 CanonPowerShotA40.jpg", "file_name": "2003-02-23 12-07-49 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 12-07-49 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 944798.0, "mtime": "2003-02-23T10:07:48+00:00", "mtime_ts": 1045994868.0, "ctime": "2024-12-21T07:57:39.787679+00:00", "sha256_file": "59a02ab7d7254618eeb460787eca3b73abe040fe2cfee082f5dedbdb39c71c21", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 12:07:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6876", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 12:07:49", "EXIF DateTimeDigitized": "2003:02:23 12:07:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191903", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1811"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9480c029157d094ab2439d0e5f1c3f0c98c2f997167f21ed1c279eca28695652", "phash": "ee1bd4294a6af984", "dhash": "f95a1a65670f07e6", "phash_int": -1.2892035945042427e+18, "collected_at": "2026-05-22T04:32:18.444798+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 16-08-05 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 16-08-05 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 16-08-05 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 16-08-05 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 428354.0, "mtime": "2003-10-23T20:19:46+00:00", "mtime_ts": 1066940386.0, "ctime": "2024-12-21T07:57:46.859907+00:00", "sha256_file": "991ce2fcd5c169379f00ed3b87f46587045cc81f47901b2f06ff9cb79e040538", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "4273", "EXIF ExposureTime": "1/500", "EXIF FNumber": "28/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 16:08:05", "EXIF DateTimeDigitized": "2003:08:12 16:08:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "9", "EXIF ApertureValue": "5", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "0", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60d305b930eef6095454197d25e2ca2b80322f0a6f555b2c0dfc9cc0cabae1f7", "phash": "a0f0d75fce2d2390", "dhash": "00989ea7a1c3e3ec", "phash_int": -6.849738226749595e+18, "collected_at": "2026-05-22T04:32:18.471959+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-33-19 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-33-19 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-33-19 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-33-19 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 999113.0, "mtime": "2003-02-01T12:33:18+00:00", "mtime_ts": 1044102798.0, "ctime": "2024-12-21T07:57:37.648610+00:00", "sha256_file": "8f5f0ccd49a0f3c73b7acdd4abcc66049442edb284e86e25d5d4bdc2404fed42", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:33:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7248", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:33:19", "EXIF DateTimeDigitized": "2003:02:01 14:33:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161626", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "255", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2520"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "531d924525227c627cddddf8ef5a9c13e14fa57e81d462afef5df3e2abe2b39f", "phash": "81d5a589d1eada2b", "dhash": "d2f6a1a0bbf1c399", "phash_int": -9.091178261426546e+18, "collected_at": "2026-05-22T04:32:18.584997+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 20-11-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 20-11-08 CanonPowerShotS40.jpg", "file_name": "2003-12-27 20-11-08 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 20-11-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1772234.0, "mtime": "2003-12-27T19:11:06+00:00", "mtime_ts": 1072552266.0, "ctime": "2024-12-21T07:57:58.311277+00:00", "sha256_file": "912ff4970a6290ff79a1503c6107420a325a50f571886f9ee538fca4a7b7aea8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 20:11:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5979", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 20:11:08", "EXIF DateTimeDigitized": "2003:12:27 20:11:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "333", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d902a9046ee1c6e17d4f028737dd2916be4f1824cea6c199676a35bcc03ac3e7", "phash": "a99770611f79d4c2", "dhash": "80c6b77b6d979731", "phash_int": -6.226384397374205e+18, "collected_at": "2026-05-22T04:32:18.678119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-40-20 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-40-20 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-40-20 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-40-20 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 441368.0, "mtime": "2003-02-09T10:40:18+00:00", "mtime_ts": 1044787218.0, "ctime": "2024-12-21T07:57:38.260629+00:00", "sha256_file": "1b6f3e0f8312d0639a2817af9c7933e01b400b46463934371ee4c7ff26ce9d6e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:40:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5321", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:40:20", "EXIF DateTimeDigitized": "2003:02:09 12:40:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[15, 85, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171750", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "110", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "491"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3f39ece666a79d02362c9a4841e35e7fc9a1de9aeeb452015230f0be484f4a1", "phash": "d919da155da4d41d", "dhash": "b8bb929a3ab8f9f9", "phash_int": -2.8029695077611715e+18, "collected_at": "2026-05-22T04:32:18.686120+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-11-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-11-57 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-11-57 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-11-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2310092.0, "mtime": "2002-09-28T13:11:56+00:00", "mtime_ts": 1033218716.0, "ctime": "2024-12-21T07:57:35.864552+00:00", "sha256_file": "04e5b3af4ab5b493e8747e9b638f1703a460aa6e36200edac12f11ae4fd92428", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:11:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6620", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:11:57", "EXIF DateTimeDigitized": "2002:09:28 13:11:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf636002118b401511a983f29e866439199bdcb2a089ac6d1ae41ca0cad2c990", "phash": "d9cbb41952d9ec30", "dhash": "f0f06151d9f79e0c", "phash_int": -2.752908726349731e+18, "collected_at": "2026-05-22T04:32:18.898271+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-04-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-04-09 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-04-09 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-04-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2131369.0, "mtime": "2003-09-16T11:04:09+00:00", "mtime_ts": 1063710249.0, "ctime": "2024-12-21T07:57:47.737936+00:00", "sha256_file": "f9609534150d32195cfc21f6bf2e10bec56cbde1da15272283237e90c7155ce2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:04:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5826", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:04:09", "EXIF DateTimeDigitized": "2003:09:16 13:04:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aba5d203fb42badd4c0e23bf13c63e6daf7248b4736599a97ea29b54b64a194a", "phash": "f0318f0e78f96913", "dhash": "ea4e9e191d297964", "phash_int": -1.1389719384260995e+18, "collected_at": "2026-05-22T04:32:18.918269+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-27 08-09-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-27 08-09-37 CanonPowerShotS40.jpg", "file_name": "2003-03-27 08-09-37 CanonPowerShotS40.jpg", "file_stem": "2003-03-27 08-09-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1438612.0, "mtime": "2003-03-27T07:09:36+00:00", "mtime_ts": 1048748976.0, "ctime": "2024-12-21T07:57:42.208757+00:00", "sha256_file": "c482c08bc94942ce4c5e3649486afc729ac5040091ef1db50b4071f3c82411d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:27 08:09:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4429", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:27 08:09:37", "EXIF DateTimeDigitized": "2003:03:27 08:09:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29c543cf72c3b26ab512af6cfabd7ab00b8410167b94bf3ef8b3f9a2a8cfc2c3", "phash": "d2d63673c832ca2d", "dhash": "ace4e0f0d0c91c78", "phash_int": -3.254353809820694e+18, "collected_at": "2026-05-22T04:32:19.183476+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-36-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-36-18 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-36-18 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-36-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1931645.0, "mtime": "2003-04-06T15:36:16+00:00", "mtime_ts": 1049643376.0, "ctime": "2024-12-21T07:57:44.625835+00:00", "sha256_file": "1124e9085d5a10d53afadf3ed6a492752b9dba03d6418ab53c8500787993f930", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:36:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6561", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:36:18", "EXIF DateTimeDigitized": "2003:04:06 16:36:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e212846e63fb99be09b0abc0cdbfeed536918c96a65897c6224166b2fb978d53", "phash": "c434a5c35f966633", "dhash": "96b6a63050c2fce2", "phash_int": -4.3086366849458243e+18, "collected_at": "2026-05-22T04:32:19.209473+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 16-36-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 16-36-12 CanonPowerShotS40.jpg", "file_name": "2003-10-26 16-36-12 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 16-36-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1484740.0, "mtime": "2003-10-26T15:36:12+00:00", "mtime_ts": 1067182572.0, "ctime": "2024-12-21T07:57:49.374988+00:00", "sha256_file": "e725c0ad11990282b46c75618623db9b844edec12695279dc57e20da59387308", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 16:36:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4702", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 16:36:12", "EXIF DateTimeDigitized": "2003:10:26 16:36:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "993/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000066", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "68", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "993"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1187cb094d2d2315507d7629c345072eb522be01440c7236734e0c4b104900f", "phash": "ccc6063292dc71df", "dhash": "ec6542a233136165", "phash_int": -3.6912560303014907e+18, "collected_at": "2026-05-22T04:32:19.400837+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-32-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-32-51 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-32-51 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-32-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1098815.0, "mtime": "2003-04-06T15:32:50+00:00", "mtime_ts": 1049643170.0, "ctime": "2024-12-21T07:57:44.589834+00:00", "sha256_file": "7b3f21caf48f4a400485d153716936a13e93aa88e5d53ed683e148afcc7e2120", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:32:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4035", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:32:51", "EXIF DateTimeDigitized": "2003:04:06 16:32:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "275", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "954a0c68d40206de04123c29d70ff49f96fd37488f57573ea8bf67912fe20ab7", "phash": "f24ac7863c36c3c3", "dhash": "0c88193919898c88", "phash_int": -9.877577889046354e+17, "collected_at": "2026-05-22T04:32:19.443841+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-22-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-22-00 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-22-00 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-22-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 434450.0, "mtime": "2003-11-29T12:22:00+00:00", "mtime_ts": 1070108520.0, "ctime": "2024-12-21T07:57:54.371150+00:00", "sha256_file": "7035871017918da8288716ed2b50af89c208dfed305dd28662132e760b679bc4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:22:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4952", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:22:00", "EXIF DateTimeDigitized": "2003:11:29 13:22:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4732, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303029", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "87", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "73c114e0cbd4259ab8df28f10ce5cb0c80cf6d1ec873483287a5e949d3ba8eb6", "phash": "d28f1e66ed9cc490", "dhash": "6c28d1d9988d9899", "phash_int": -3.27436497665309e+18, "collected_at": "2026-05-22T04:32:19.589844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-28-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-28-46 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-28-46 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-28-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1407357.0, "mtime": "2002-09-28T13:28:44+00:00", "mtime_ts": 1033219724.0, "ctime": "2024-12-21T07:57:36.451571+00:00", "sha256_file": "0749745ddbe5f5ee793b3e64f793aee5c6bd8736050d6af4874322d69ef9633d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:28:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4481", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:28:46", "EXIF DateTimeDigitized": "2002:09:28 13:28:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "26301931cfca24e4d757357b8e5f7397e9b28807742f417ab9af38526f468858", "phash": "ede486135b382b47", "dhash": "6806073b50703050", "phash_int": -1.304770574337693e+18, "collected_at": "2026-05-22T04:32:19.638845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 14-26-25 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 14-26-25 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 14-26-25 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 14-26-25 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 380718.0, "mtime": "2003-10-23T20:19:38+00:00", "mtime_ts": 1066940378.0, "ctime": "2024-12-21T07:57:46.658901+00:00", "sha256_file": "e097afbb753a25705f07b59d80070120f6c4d0a67faf24bf2383751dfe1629ff", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/60", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 14:26:25", "EXIF DateTimeDigitized": "2003:08:12 14:26:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "11/10", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57514bfc16486973d26c7cf5b8d875ba696ad2e0f6135a9ab4754c6b7600db71", "phash": "a1ea8db5d38f0e0c", "dhash": "cf9733191c9e72d3", "phash_int": -6.779450476974895e+18, "collected_at": "2026-05-22T04:32:19.683913+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-06 07-51-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-06 07-51-42 CanonPowerShotS40.jpg", "file_name": "2003-10-06 07-51-42 CanonPowerShotS40.jpg", "file_stem": "2003-10-06 07-51-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1717915.0, "mtime": "2003-10-09T06:47:26+00:00", "mtime_ts": 1065682046.0, "ctime": "2024-12-21T07:57:48.294954+00:00", "sha256_file": "0aaafda68f471c97497df2b10c3a7d46cb0e169dff3d0289f12027a55213f635", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:06 07:51:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6379", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:06 07:51:42", "EXIF DateTimeDigitized": "2003:10:06 07:51:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21a3917f34be69c0e8bb8b31ae6436dbb9e485b314a554ce0b7c80d308159d2e", "phash": "d61919c37931e768", "dhash": "f0f0f06860ecccf0", "phash_int": -3.019353747832576e+18, "collected_at": "2026-05-22T04:32:19.834119+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 20-03-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 20-03-08 CanonPowerShotS40.jpg", "file_name": "2003-03-08 20-03-08 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 20-03-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2375096.0, "mtime": "2003-03-08T19:03:06+00:00", "mtime_ts": 1047150186.0, "ctime": "2024-12-21T07:57:41.328729+00:00", "sha256_file": "c4225ce052cfd0acc4020962d3267787860be8dc2e0a364f429259892cf386ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 20:03:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7822", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 20:03:08", "EXIF DateTimeDigitized": "2003:03:08 20:03:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75d7b3a564320320d99258909e0aa987a32cc89736929a1e0e1509f8600a3376", "phash": "de4f689867622674", "dhash": "283265683c30348f", "phash_int": -2.427606670350605e+18, "collected_at": "2026-05-22T04:32:19.912122+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 12-03-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 12-03-49 CanonPowerShotS40.jpg", "file_name": "2003-11-02 12-03-49 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 12-03-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1330016.0, "mtime": "2003-11-02T11:03:49+00:00", "mtime_ts": 1067771029.0, "ctime": "2024-12-21T07:57:51.202047+00:00", "sha256_file": "1e22da34c629b1e54a2dd02fecd3eb01c696193769513a552eea9730f45b1918", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 12:03:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5337", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 12:03:49", "EXIF DateTimeDigitized": "2003:11:02 12:03:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8e0f9f149fcddedb57d509f5baaa27f67034e1d78f1fb9d605d92bc99a5fddd", "phash": "c206376b6e7818f3", "dhash": "65c4c8a0c1d98903", "phash_int": -4.4658210459368755e+18, "collected_at": "2026-05-22T04:32:20.017126+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-06-39 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-06-39 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-06-39 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-06-39 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 550255.0, "mtime": "2003-11-01T00:06:39+00:00", "mtime_ts": 1067645199.0, "ctime": "2024-12-21T07:57:50.345020+00:00", "sha256_file": "c54be6caebf09edf634b031e6b203b0c8be7968e8dd4eb4d4a06d5e860a450c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:06:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5785", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:06:39", "EXIF DateTimeDigitized": "2003:11:01 01:06:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 300, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292924", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2178"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "56b69eb58f97dd9e36bb0e906b283a74e2b5f4fb4ff09da3fc8c5ce1aa1d40b4", "phash": "907e8774f007e687", "dhash": "29b979b99b96d9d0", "phash_int": -8.03483574886938e+18, "collected_at": "2026-05-22T04:32:20.055211+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-23 15-27-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-23 15-27-49 CanonPowerShotS40.jpg", "file_name": "2003-03-23 15-27-49 CanonPowerShotS40.jpg", "file_stem": "2003-03-23 15-27-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 3109120.0, "mtime": "2003-03-23T14:27:48+00:00", "mtime_ts": 1048429668.0, "ctime": "2024-12-21T07:57:42.165756+00:00", "sha256_file": "a08d3963733571b1fc67281a482e0e3042669e102d49bccbe8404fb3ada28fc6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:23 15:27:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "9416", "EXIF ExposureTime": "1/500", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:23 15:27:49", "EXIF DateTimeDigitized": "2003:03:23 15:27:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "17/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "303", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "850"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d43c3d6e08ed99df966d7d95f9d82b1bd295adf3d710b9b3f9585c83dadab103", "phash": "d0b54d93338ae4cd", "dhash": "9816969c1c907113", "phash_int": -3.4077322484156406e+18, "collected_at": "2026-05-22T04:32:20.169244+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-46-17 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-46-17 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-46-17 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-46-17 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 683581.0, "mtime": "2003-02-01T12:46:16+00:00", "mtime_ts": 1044103576.0, "ctime": "2024-12-21T07:57:37.752613+00:00", "sha256_file": "afa7a315b11bb37c1326f9201e50139cc44e79985aba1d07edda5f718d61bdf8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:46:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7809", "EXIF ExposureTime": "1/80", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:46:17", "EXIF DateTimeDigitized": "2003:02:01 14:46:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161640", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "218", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3211"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b523c78b84060c3d4b501dfb59d56cdfd4e0a76a8e794d1417a99693aa219940", "phash": "a96691769eae82d8", "dhash": "9dd2d323b3d59b93", "phash_int": -6.240140295020838e+18, "collected_at": "2026-05-22T04:32:20.250751+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 02-19-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 02-19-10 CanonPowerShotS40.jpg", "file_name": "2004-01-01 02-19-10 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 02-19-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 537003.0, "mtime": "2004-01-01T01:19:08+00:00", "mtime_ts": 1072919948.0, "ctime": "2024-12-21T07:58:00.153337+00:00", "sha256_file": "2f6747e216b4ce7745ac6151916f947d0d3c56477b5fea920f97ddb93f5770b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 02:19:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5239", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 02:19:10", "EXIF DateTimeDigitized": "2004:01:01 02:19:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000091", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "83d25ca9d8656a2d522ba887811e1c522c1c59a213a9f588f521c2fd001ae00f", "phash": "f03442bbbcd7038e", "dhash": "0c99dc36369ad9e8", "phash_int": -1.1382114317233676e+18, "collected_at": "2026-05-22T04:32:20.310159+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-12-50 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-12-50 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-12-50 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-12-50 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 527361.0, "mtime": "2003-11-29T15:12:50+00:00", "mtime_ts": 1070118770.0, "ctime": "2024-12-21T07:57:54.873166+00:00", "sha256_file": "3698c261af0134a1b57365a3d611ca30dcbaca33a67cb7d2d01456c6c6a09c0a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:12:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4808", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:12:50", "EXIF DateTimeDigitized": "2003:11:29 16:12:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 1926, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303063", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "44", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "548"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e13f62758b33c87a28ffaf61aaabeacfda5891ef8efac6a0bc8cec1669469bd9", "phash": "f7bf3ee8984040b8", "dhash": "3c2c5cd8acc08c38", "phash_int": -5.946874570819337e+17, "collected_at": "2026-05-22T04:32:20.372663+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-21-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-21-35 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-21-35 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-21-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 585314.0, "mtime": "2002-09-28T13:21:36+00:00", "mtime_ts": 1033219296.0, "ctime": "2024-12-21T07:57:36.236564+00:00", "sha256_file": "484fb7dfacc790486037b29444defe3efe5b5f357b9d74c51bc5126cc2908634", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:21:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1343", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:21:35", "EXIF DateTimeDigitized": "2002:09:28 13:21:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "-4", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "65472", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "On (shot 2)", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "65cf4e30d7c4f3abe3320bdf86126af01323ee1559b35c1ed20d63303078e77b", "phash": "c9cd0e2ad471153f", "dhash": "717352da111b1bb0", "phash_int": -3.9054497247447557e+18, "collected_at": "2026-05-22T04:32:20.455597+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-10-08 08-59-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-10-08 08-59-06 CanonPowerShotS40.jpg", "file_name": "2002-10-08 08-59-06 CanonPowerShotS40.jpg", "file_stem": "2002-10-08 08-59-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1796931.0, "mtime": "2002-10-08T08:59:04+00:00", "mtime_ts": 1034067544.0, "ctime": "2024-12-21T07:57:36.699579+00:00", "sha256_file": "0cbd4daf6e08e0df1bf8e3f6ccf27bbf0354cf89e518587cb167130b8d0658fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:10:08 08:59:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5906", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:10:08 08:59:06", "EXIF DateTimeDigitized": "2002:10:08 08:59:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dab1f542d8736c3d4d37cdbbc0613293d5bb1d5cdbddda10412bc8a317b29960", "phash": "c7b238cbb28c3b4c", "dhash": "acce46c4c440e0c4", "phash_int": -4.057117866782344e+18, "collected_at": "2026-05-22T04:32:20.513597+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-03 18-52-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-03 18-52-11 CanonPowerShotS40.jpg", "file_name": "2003-09-03 18-52-11 CanonPowerShotS40.jpg", "file_stem": "2003-09-03 18-52-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1303464.0, "mtime": "2003-09-03T16:52:11+00:00", "mtime_ts": 1062607931.0, "ctime": "2024-12-21T07:57:46.982911+00:00", "sha256_file": "d91446d8ef85489346d92c636cda91ffe2f2577dde4ce86012b59fe7757643c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:03 18:52:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5601", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:03 18:52:11", "EXIF DateTimeDigitized": "2003:09:03 18:52:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7289d664d57eb9d0fd558b9d72268d84dbef48bfcc9c1b90397df20e9f0ca0c5", "phash": "90663bf44e8f156a", "dhash": "1998d8a0b0b8f9d9", "phash_int": -8.041674164147383e+18, "collected_at": "2026-05-22T04:32:20.632745+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-07 11-04-47 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-07 11-04-47 CanonPowerShotS40.jpg", "file_name": "2003-09-07 11-04-47 CanonPowerShotS40.jpg", "file_stem": "2003-09-07 11-04-47 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1352098.0, "mtime": "2003-09-07T09:04:47+00:00", "mtime_ts": 1062925487.0, "ctime": "2024-12-21T07:57:47.065914+00:00", "sha256_file": "40b8ca7cdffec3869024e0f0cf537534b85a5742b847df1ea6564b7cfc551583", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:07 11:04:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4074", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:07 11:04:47", "EXIF DateTimeDigitized": "2003:09:07 11:04:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c56daa1b483c516df798aca7f3ab8e98b1a0ac42f3fed422e3a823f479932ee8", "phash": "85380ff0cd1f3ce2", "dhash": "7c7e797092dcf0e0", "phash_int": -8.847303941061395e+18, "collected_at": "2026-05-22T04:32:20.750217+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-02-39 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-02-39 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-02-39 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-02-39 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 507578.0, "mtime": "2003-11-29T12:02:39+00:00", "mtime_ts": 1070107359.0, "ctime": "2024-12-21T07:57:54.325148+00:00", "sha256_file": "45853675473fb0371a7c99b9182a39fba0a488de2cae4c6d90e0fc9b79725f46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:02:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5426", "EXIF ExposureTime": "1/100", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:02:39", "EXIF DateTimeDigitized": "2003:11:29 13:02:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 172, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303024", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2109"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e6a0c4224bfba92215212b4fdd1758e43df2c1fc037b07f3e1b887f3742c6e20", "phash": "937b342f1e24e4e1", "dhash": "5819987878cdecec", "phash_int": -7.819598951024893e+18, "collected_at": "2026-05-22T04:32:20.906478+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-40-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-40-58 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-40-58 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-40-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1916949.0, "mtime": "2003-11-16T18:40:58+00:00", "mtime_ts": 1069008058.0, "ctime": "2024-12-21T07:57:53.435119+00:00", "sha256_file": "5992b9ad898ac45a9e142a03f420eb81937451a0ebf499cc80ecb5be627ec556", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:40:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6256", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:40:58", "EXIF DateTimeDigitized": "2003:11:16 19:40:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fff090c41bc6c607d400cebaac946dd06679dcd6c8cefcb14604d6e627139c55", "phash": "b18ef1a2593a65cc", "dhash": "9c3f271b531f191a", "phash_int": -5.652314802719399e+18, "collected_at": "2026-05-22T04:32:20.919480+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-58-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-58-08 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-58-08 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-58-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1260007.0, "mtime": "2003-11-30T11:58:08+00:00", "mtime_ts": 1070193488.0, "ctime": "2024-12-21T07:57:55.385183+00:00", "sha256_file": "9312ca93726a924f9b2eedeee30fbdc487c2a289b37e8a84125ae0bd111e9868", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:58:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4975", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:58:08", "EXIF DateTimeDigitized": "2003:11:30 12:58:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[69, 196, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e923633390fd7d6bfbd09a4f5d3a8e91f7f0fb669227edf8c941e2342b2c9621", "phash": "d2694a9c639c39da", "dhash": "3140180c08b0b8c8", "phash_int": -3.2850124176435297e+18, "collected_at": "2026-05-22T04:32:21.178332+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-02 10-41-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-02 10-41-08 CanonPowerShotS40.jpg", "file_name": "2003-09-02 10-41-08 CanonPowerShotS40.jpg", "file_stem": "2003-09-02 10-41-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1460310.0, "mtime": "2003-09-02T08:41:08+00:00", "mtime_ts": 1062492068.0, "ctime": "2024-12-21T07:57:46.963911+00:00", "sha256_file": "93d885534d25d8848882984f71cea205f70f409e722ec19fd09bc819bea49834", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:02 10:41:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:02 10:41:08", "EXIF DateTimeDigitized": "2003:09:02 10:41:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[67, 425, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a5af4511e371a4167aa029b6e768a72ba46d79e366f0c0ea01bab49c9089a59b", "phash": "d27749994d6c44ae", "dhash": "c0c88c8cc8a080d0", "phash_int": -3.281072880738352e+18, "collected_at": "2026-05-22T04:32:21.195487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 03-07-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 03-07-18 CanonPowerShotS40.jpg", "file_name": "2003-12-27 03-07-18 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 03-07-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2022702.0, "mtime": "2003-12-27T02:07:16+00:00", "mtime_ts": 1072490836.0, "ctime": "2024-12-21T07:57:57.953265+00:00", "sha256_file": "cb8dbd3d67de0129429c24427db544d883a3db6f4336e0f86a4b3497f0acfeb4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 03:07:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6338", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 03:07:18", "EXIF DateTimeDigitized": "2003:12:27 03:07:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "884295bbd0f1c9d245909bc2dd526fe971665105bdf58c4e0f36f3514fa1637e", "phash": "a17a3ae5ed2a4a86", "dhash": "9b9ccdd7c6d69bbb", "phash_int": -6.81106672724356e+18, "collected_at": "2026-05-22T04:32:21.452362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-06-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-06-51 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-06-51 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-06-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1960243.0, "mtime": "2003-12-21T13:06:50+00:00", "mtime_ts": 1072012010.0, "ctime": "2024-12-21T07:57:56.637223+00:00", "sha256_file": "9aa5abc6f19eaf8c856a01ba70ba9ca5bf95f741207598b37fdab7f26730e96e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:06:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6383", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:06:51", "EXIF DateTimeDigitized": "2003:12:21 14:06:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a84db6e7629a4d8275540462bd7ebf2e457df19c4382089e61d957924b49d4c6", "phash": "dc196c88b637932b", "dhash": "7430786c55742624", "phash_int": -2.5869171765191916e+18, "collected_at": "2026-05-22T04:32:21.478471+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-14 18-48-07 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-14 18-48-07 CanonPowerShotA40.jpg", "file_name": "2003-10-14 18-48-07 CanonPowerShotA40.jpg", "file_stem": "2003-10-14 18-48-07 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 873758.0, "mtime": "2003-10-14T17:48:07+00:00", "mtime_ts": 1066153687.0, "ctime": "2024-12-21T07:57:48.608964+00:00", "sha256_file": "b5debac6817c0b8b5ac395fc2b07e66151fafce79079bd30b7d64e98f97c30d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:14 18:48:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7751", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:14 18:48:07", "EXIF DateTimeDigitized": "2003:10:14 18:48:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1687, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1282898", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "83", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "761"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e626f492fa6df4f2e73551de7cf1be406310bf514ba9f2eb5cc608957647d1c", "phash": "c0391f333cf3b930", "dhash": "9ae091c4b4c2c1e0", "phash_int": -4.5956076398284815e+18, "collected_at": "2026-05-22T04:32:21.645519+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 21-35-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 21-35-13 CanonPowerShotS40.jpg", "file_name": "2003-12-27 21-35-13 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 21-35-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1487409.0, "mtime": "2003-12-27T20:35:12+00:00", "mtime_ts": 1072557312.0, "ctime": "2024-12-21T07:57:58.533284+00:00", "sha256_file": "8de8aa5639763c8cba144e6e22018f50a823218da60ae194a2042f85332dfce3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 21:35:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6354", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 21:35:13", "EXIF DateTimeDigitized": "2003:12:27 21:35:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "299", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e83d64a75b5566e312392e5b31c6ac42c92616688ed7605c4b93a041a1cf1ed", "phash": "96e8f15e066499e3", "dhash": "8008d2256d686c5c", "phash_int": -7.572537387287013e+18, "collected_at": "2026-05-22T04:32:21.665522+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-14 18-09-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-14 18-09-29 CanonPowerShotS40.jpg", "file_name": "2003-11-14 18-09-29 CanonPowerShotS40.jpg", "file_stem": "2003-11-14 18-09-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1689696.0, "mtime": "2003-11-14T17:09:29+00:00", "mtime_ts": 1068829769.0, "ctime": "2024-12-21T07:57:52.831100+00:00", "sha256_file": "24b7b35f5549dcd780fd5a4d91a2a3d7a539c8ca3bb8186fda250ae80bd7976a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:14 18:09:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5473", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:14 18:09:29", "EXIF DateTimeDigitized": "2003:11:14 18:09:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000081", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a1dd3c050aa591bfd62e435b6827dcf6307971eeb011b0a59121a4072f6b185", "phash": "8be375d036361a39", "dhash": "c4d36971f1f0f0f0", "phash_int": -8.366714145601086e+18, "collected_at": "2026-05-22T04:32:21.821323+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 18-29-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 18-29-12 CanonPowerShotS40.jpg", "file_name": "2003-12-27 18-29-12 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 18-29-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1775410.0, "mtime": "2003-12-27T17:29:10+00:00", "mtime_ts": 1072546150.0, "ctime": "2024-12-21T07:57:58.188273+00:00", "sha256_file": "a319fccc9bc135bc58bc34726ff930872ba5f914c25975ad101b7a5552d6c233", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 18:29:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6390", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 18:29:12", "EXIF DateTimeDigitized": "2003:12:27 18:29:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "27", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5785fe5daf5d7bed6ebcb15ef9f7a388f02885c4608fc91e1913e5039c4726dc", "phash": "813d6ec33c9b53e0", "dhash": "5b6fdaf8d3c8c8b0", "phash_int": -9.134022684423007e+18, "collected_at": "2026-05-22T04:32:21.883325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-16-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-16-33 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-16-33 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-16-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 731892.0, "mtime": "2002-09-28T13:16:32+00:00", "mtime_ts": 1033218992.0, "ctime": "2024-12-21T07:57:36.041558+00:00", "sha256_file": "59b2edcc5be7073d8fca4a9f8381b56712dc32a4637b4a614dfa85de0a67e62f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:16:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3359", "EXIF ExposureTime": "1/25", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:16:33", "EXIF DateTimeDigitized": "2002:09:28 13:16:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[125, 139, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "177", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "207", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c144032a7c5a0695dc1c85a82ccb93dfbd7703b7e3d6420ba743a66bf6d8b1c", "phash": "88c73986c739c4cf", "dhash": "ffbfb7d7efab9f9f", "phash_int": -8.590834513155079e+18, "collected_at": "2026-05-22T04:32:22.006329+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 12-11-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 12-11-58 CanonPowerShotS40.jpg", "file_name": "2003-03-08 12-11-58 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 12-11-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1381414.0, "mtime": "2003-03-08T11:11:56+00:00", "mtime_ts": 1047121916.0, "ctime": "2024-12-21T07:57:40.737710+00:00", "sha256_file": "d02880e685a324e4615bd5a96d080018871756626bc46df10091b78776236a7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 12:11:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5037", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 12:11:58", "EXIF DateTimeDigitized": "2003:03:08 12:11:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "97/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[49, 212, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "133", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "485"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "589d9218af83fe5e7819397976c592ab6d6262826fd9ad1ac8775a8c2c7e1bb3", "phash": "cbeeb593a0309e0e", "dhash": "c0a22381ebf993a2", "phash_int": -3.751861793900684e+18, "collected_at": "2026-05-22T04:32:22.105334+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-06-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-06-42 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-06-42 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-06-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1488415.0, "mtime": "2003-12-21T14:06:40+00:00", "mtime_ts": 1072015600.0, "ctime": "2024-12-21T07:57:56.831229+00:00", "sha256_file": "6d4a2e330889a56e88e9242733ce2484a4e3da307fd3da657b64b549774f9b71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:06:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5617", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:06:42", "EXIF DateTimeDigitized": "2003:12:21 15:06:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "171", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76934ae0068bb8babff7d676fec13155ea8c33f097d0291ae345cde02e1b6221", "phash": "cef3f1c4002ce1f5", "dhash": "0a4951a1e0e1e1c2", "phash_int": -3.534215458436882e+18, "collected_at": "2026-05-22T04:32:22.181337+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 15-40-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 15-40-55 CanonPowerShotS40.jpg", "file_name": "2003-11-07 15-40-55 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 15-40-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 658433.0, "mtime": "2003-11-07T14:40:55+00:00", "mtime_ts": 1068216055.0, "ctime": "2024-12-21T07:57:51.834068+00:00", "sha256_file": "e40923c020174e3a590e009568d21a779dba2b782be7ea02db82f4e3c898c492", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 15:40:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3014", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 15:40:55", "EXIF DateTimeDigitized": "2003:11:07 15:40:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 485, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65523", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "069520f83622f10efb0ba13011beda43e1b027b61b847c29e725d391859323e2", "phash": "857e4adf482e403f", "dhash": "e0d8d496d4c0e0f0", "phash_int": -8.82753589675044e+18, "collected_at": "2026-05-22T04:32:22.252338+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-24-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-24-35 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-24-35 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-24-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1763567.0, "mtime": "2002-12-01T11:30:32+00:00", "mtime_ts": 1038742232.0, "ctime": "2024-12-21T07:57:37.400602+00:00", "sha256_file": "498b99c606c3cad8849bb8138e90b3b50635fb596f5663f62b46c310ca76b41d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:24:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3069", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:24:35", "EXIF DateTimeDigitized": "2002:11:28 17:24:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51fda316229eb8c74c10955ecfafc10863cba2a66ac6ecb70703e912483006e6", "phash": "819f01e140f87dfe", "dhash": "f0f078f0f0f2d0f0", "phash_int": -9.106557854550558e+18, "collected_at": "2026-05-22T04:32:22.469348+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-37-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-37-51 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-37-51 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-37-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1523337.0, "mtime": "2003-04-06T15:37:50+00:00", "mtime_ts": 1049643470.0, "ctime": "2024-12-21T07:57:44.661836+00:00", "sha256_file": "4f77b2a3c9800063ec0b71ceea6da7c174970617a11c2f5e25a4e1fc7f3d9294", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:37:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6064", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:37:51", "EXIF DateTimeDigitized": "2003:04:06 16:37:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "227", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a578071ea7b5d38bb49322d2db796e1d8f276a0567be2e4dd07b26a31350ccd", "phash": "979ad27ac6229335", "dhash": "5d387ae26238aac2", "phash_int": -7.522468802816994e+18, "collected_at": "2026-05-22T04:32:22.485419+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 21-07-56 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 21-07-56 CanonPowerShotA40.jpg", "file_name": "2003-03-29 21-07-56 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 21-07-56 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 577491.0, "mtime": "2003-03-30T10:03:42+00:00", "mtime_ts": 1049018622.0, "ctime": "2024-12-21T07:57:42.811776+00:00", "sha256_file": "e7955a231d64b417212664ebe9179dc9e109ecbcae5950c83d8c2273a252a865", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 21:07:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5118", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 21:07:56", "EXIF DateTimeDigitized": "2003:03:29 21:07:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 661, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202023", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "5059"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bf5f8e5ce667f763b55a36454e01fd304e10e741a4efc7ae34efda467005da37", "phash": "a57265a4cda638e6", "dhash": "eefc7f6f67776773", "phash_int": -6.525041151607163e+18, "collected_at": "2026-05-22T04:32:22.734970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-13 14-48-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-13 14-48-55 CanonPowerShotS40.jpg", "file_name": "2003-04-13 14-48-55 CanonPowerShotS40.jpg", "file_stem": "2003-04-13 14-48-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2948817.0, "mtime": "2003-04-13T13:48:54+00:00", "mtime_ts": 1050241734.0, "ctime": "2024-12-21T07:57:45.151852+00:00", "sha256_file": "71a3bfb5f68e0afb413785e7da5188485a77ea6704e63f4cd4c307e583a87325", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:13 14:48:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6349", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:13 14:48:55", "EXIF DateTimeDigitized": "2003:04:13 14:48:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7205fc2762399dd97bbd482acd4d4210f938327dc70e0fc126d2b66d04f2bdd0", "phash": "d4ce88adc4da8ba6", "dhash": "a7824c0c8e3b1c90", "phash_int": -3.1124000125530573e+18, "collected_at": "2026-05-22T04:32:22.794972+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-20 16-40-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-20 16-40-25 CanonPowerShotA40.jpg", "file_name": "2003-03-20 16-40-25 CanonPowerShotA40.jpg", "file_stem": "2003-03-20 16-40-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 378936.0, "mtime": "2003-03-30T10:03:19+00:00", "mtime_ts": 1049018599.0, "ctime": "2024-12-21T07:57:41.855746+00:00", "sha256_file": "5bb883c2bc679c2c7acfa820fa17d720dfce8fbef2ab9b78e34bd4e2e6f9c7fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:20 16:40:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4622", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:20 16:40:25", "EXIF DateTimeDigitized": "2003:03:20 16:40:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 501, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202008", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "174f4f1116241ed7417121c70857f88b4a3ac6d1615547507da7c1a0c6ad4f71", "phash": "972e302cbbd4a89d", "dhash": "6e6e727070f4ccd8", "phash_int": -7.553046556365773e+18, "collected_at": "2026-05-22T04:32:22.871078+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-44-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-44-35 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-44-35 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-44-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 326819.0, "mtime": "2003-04-05T15:44:34+00:00", "mtime_ts": 1049557474.0, "ctime": "2024-12-21T07:57:44.026816+00:00", "sha256_file": "9ab6b0ab87c06e561a44ac76c0a0303e5e0d973d76497e25ca99e47b183cd6ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:44:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4815", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:44:35", "EXIF DateTimeDigitized": "2003:04:05 16:44:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d31df5aad707dea5b510568eebd3b4e70346dfe2bb0efb1d7f1bf5e5f0a5f42", "phash": "919e6ec31c31373c", "dhash": "f8f03898d2d89ab0", "phash_int": -7.953798107619052e+18, "collected_at": "2026-05-22T04:32:23.006081+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 14-16-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 14-16-19 CanonPowerShotS40.jpg", "file_name": "2003-04-20 14-16-19 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 14-16-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2712239.0, "mtime": "2003-04-20T13:16:18+00:00", "mtime_ts": 1050844578.0, "ctime": "2024-12-21T07:57:45.653868+00:00", "sha256_file": "c2d54ec64f5baa7eb52c101a553cda58dfd292e377b31e6a0460ac27f4409dbe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 14:16:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6901", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 14:16:19", "EXIF DateTimeDigitized": "2003:04:20 14:16:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "279", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63d2040f3a1a3cd7c2ecbf4e47b65acf10b73161413819c9bc78ddf170bdf8cd", "phash": "a4d519fb66849363", "dhash": "66d4f6a72749f5f5", "phash_int": -6.56931591390255e+18, "collected_at": "2026-05-22T04:32:23.049082+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-37-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-37-09 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-37-09 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-37-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1174198.0, "mtime": "2003-11-02T08:37:09+00:00", "mtime_ts": 1067762229.0, "ctime": "2024-12-21T07:57:51.115045+00:00", "sha256_file": "b3b39eee8e72dc949d6b3f5f9d31d54d6cba0f36cc9f720fbc4e4173e2be0fe1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:37:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3269", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:37:09", "EXIF DateTimeDigitized": "2003:11:02 09:37:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "36f9c75ded6b6ea73fbeca745049ede46c00af0c146f2e12b0580a9799de8999", "phash": "d1460c798e65ae73", "dhash": "e0c8c8cc999b9a98", "phash_int": -3.3669899551932626e+18, "collected_at": "2026-05-22T04:32:24.403747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-20 16-51-10 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-20 16-51-10 CanonPowerShotA40.jpg", "file_name": "2003-03-20 16-51-10 CanonPowerShotA40.jpg", "file_stem": "2003-03-20 16-51-10 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 535005.0, "mtime": "2003-03-30T10:03:23+00:00", "mtime_ts": 1049018603.0, "ctime": "2024-12-21T07:57:41.882746+00:00", "sha256_file": "f69ead1d17b5b96f26e5e411bb29ef2aea27d129366d910495b17551fbea6294", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:20 16:51:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5411", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:20 16:51:10", "EXIF DateTimeDigitized": "2003:03:20 16:51:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1160, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202011", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3941"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "535c07b76fca04e14c5e59fcc156b47df06feb5d918a83ed7f946e531e4c4fca", "phash": "cfb730b4e64285a5", "dhash": "4673626172733132", "phash_int": -3.479258633605053e+18, "collected_at": "2026-05-22T04:32:24.465203+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-11 14-27-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-11 14-27-55 CanonPowerShotS40.jpg", "file_name": "2003-09-11 14-27-55 CanonPowerShotS40.jpg", "file_stem": "2003-09-11 14-27-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1293844.0, "mtime": "2003-09-11T12:27:55+00:00", "mtime_ts": 1063283275.0, "ctime": "2024-12-21T07:57:47.250920+00:00", "sha256_file": "fc84a60242517fb7c7389e9b51bdd5758618250a0c8c576bf8beedfe006050e8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:11 14:27:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3734", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:11 14:27:55", "EXIF DateTimeDigitized": "2003:09:11 14:27:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "190", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc03d434983d091ccb1e7930f2dde79555168ad48ff183af644aac72eb45c5a9", "phash": "e6b38c48dbb4207b", "dhash": "f0cccccd8d8484c4", "phash_int": -1.82295917960337e+18, "collected_at": "2026-05-22T04:32:25.088890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 22-54-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 22-54-55 CanonPowerShotS40.jpg", "file_name": "2003-10-18 22-54-55 CanonPowerShotS40.jpg", "file_stem": "2003-10-18 22-54-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1713198.0, "mtime": "2003-10-18T21:54:55+00:00", "mtime_ts": 1066514095.0, "ctime": "2024-12-21T07:57:48.833971+00:00", "sha256_file": "e9e555c35288073f9263ab848c8501bc9c96992faa9ef2204b6e41585d4fbf80", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 22:54:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3978", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:18 22:54:55", "EXIF DateTimeDigitized": "2003:10:18 22:54:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98a04c94b6c5112687cd07e8244b5fe6cd17fd260b4961f3bae0b9ff0af499fc", "phash": "e69719689536c936", "dhash": "f0e8eccece8387a0", "phash_int": -1.8309667865321285e+18, "collected_at": "2026-05-22T04:32:25.160890+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 21-09-51 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 21-09-51 CanonPowerShotA40.jpg", "file_name": "2003-03-29 21-09-51 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 21-09-51 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 564833.0, "mtime": "2003-03-30T10:03:52+00:00", "mtime_ts": 1049018632.0, "ctime": "2024-12-21T07:57:42.865778+00:00", "sha256_file": "5a6f45a3809e5cbc6148f4d80e5c35da02900890348213233796c0c41a0193f5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 21:09:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4817", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 21:09:51", "EXIF DateTimeDigitized": "2003:03:29 21:09:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 44, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202030", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "960119f476e64c2d35241c2dc4596a08892834a445048987a31acfc83b32c8f4", "phash": "827449f28b55bc8f", "dhash": "fca4b6ec5d38f0f1", "phash_int": -9.046524445411919e+18, "collected_at": "2026-05-22T04:32:25.230181+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-33-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-33-26 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-33-26 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-33-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1654376.0, "mtime": "2003-11-09T00:33:26+00:00", "mtime_ts": 1068338006.0, "ctime": "2024-12-21T07:57:52.134078+00:00", "sha256_file": "da289729f9afbcee1c97250d6f95dc1289c25edff7d5229f250f7d4bcf5422b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:33:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:33:26", "EXIF DateTimeDigitized": "2003:11:09 01:33:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "403/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "806"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a80f949f731f799a9dcf1e3f288b7f7898e413d3c0b5c64835228d1cc4ed446", "phash": "98b9a4db7ca66494", "dhash": "33193d293838e5a6", "phash_int": -7.441735646656962e+18, "collected_at": "2026-05-22T04:32:25.380912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 14-55-07 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 14-55-07 CanonPowerShotA40.jpg", "file_name": "2003-03-29 14-55-07 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 14-55-07 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 556881.0, "mtime": "2003-03-30T10:03:32+00:00", "mtime_ts": 1049018612.0, "ctime": "2024-12-21T07:57:42.577769+00:00", "sha256_file": "9608439b3568f0968433b57f16e81bfc75c1bd0f71d6f4c19137c3732b97e704", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 14:55:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4375", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 14:55:07", "EXIF DateTimeDigitized": "2003:03:29 14:55:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 1413, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202016", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "51", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "566"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5d5cbe61702ae1539b0db12e33bb56cd58cebb474e8fde4eb347dd01213ab423", "phash": "b50a4552db4ccbd9", "dhash": "ecd676661dcc86c6", "phash_int": -5.401428580908611e+18, "collected_at": "2026-05-22T04:32:25.409799+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 23-05-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 23-05-09 CanonPowerShotS40.jpg", "file_name": "2003-12-27 23-05-09 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 23-05-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1779816.0, "mtime": "2003-12-27T22:05:08+00:00", "mtime_ts": 1072562708.0, "ctime": "2024-12-21T07:57:58.635288+00:00", "sha256_file": "527e6a944d2b8b97a8ffb410b0c81d4be0f902965af76655f71361bf1a697e7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 23:05:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6921", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 23:05:09", "EXIF DateTimeDigitized": "2003:12:27 23:05:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 238, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1648b61f0fb0126b4a5a2a6a0d008bfc460aff0c92c52760306e52eb2e6b8c5a", "phash": "f4425b2d0796ca5d", "dhash": "e2a9a4ccce161618", "phash_int": -8.460135310332532e+17, "collected_at": "2026-05-22T04:32:25.610896+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-08-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-08-07 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-08-07 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-08-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2256837.0, "mtime": "2003-12-31T22:08:06+00:00", "mtime_ts": 1072908486.0, "ctime": "2024-12-21T07:57:59.671321+00:00", "sha256_file": "8341800e7d5bbfb2e956b29d9b36ec76626e383a11c7aeaae9cc160d79c41ce9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:08:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5873", "EXIF ExposureTime": "1/400", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:08:07", "EXIF DateTimeDigitized": "2003:12:31 23:08:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9419/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "263", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "18838"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "571186ccbe9eb0f1aa6736d11373bbecbc91565e4243d6e841294f06703b7e7b", "phash": "e4cdcef80023fde0", "dhash": "220142e280160d80", "phash_int": -1.9596826982867277e+18, "collected_at": "2026-05-22T04:32:25.702930+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 14-16-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 14-16-01 CanonPowerShotS40.jpg", "file_name": "2002-09-28 14-16-01 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 14-16-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2262118.0, "mtime": "2002-09-28T14:16:00+00:00", "mtime_ts": 1033222560.0, "ctime": "2024-12-21T07:57:36.671578+00:00", "sha256_file": "58a9c4e6aedd1516fca00cc7a17baeafdadcaf9fb81ea8b0763970c3d2823230", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 14:16:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5391", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 14:16:01", "EXIF DateTimeDigitized": "2002:09:28 14:16:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4483/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000094", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8966"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "637cd0d7a13eafc241760e48d22a767477ed27f0295417a2365557f81f60af2e", "phash": "c48ea17363b9ad2c", "dhash": "d4e023c004809004", "phash_int": -4.283308678616339e+18, "collected_at": "2026-05-22T04:32:25.745983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 12-21-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 12-21-12 CanonPowerShotA40.jpg", "file_name": "2003-02-23 12-21-12 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 12-21-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 614984.0, "mtime": "2003-02-23T10:21:10+00:00", "mtime_ts": 1045995670.0, "ctime": "2024-12-21T07:57:39.808680+00:00", "sha256_file": "bb61ba47f510e88edb5811f65da48cf47671d1667cc884d15b5752a0df8be466", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 12:21:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5131", "EXIF ExposureTime": "1/250", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 12:21:12", "EXIF DateTimeDigitized": "2003:02:23 12:21:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191906", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "320", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0450c71ecd60e3072b83a4650d948e027f6e6d226e0b95386dbc54211f99b0f", "phash": "d950a6855b863c9f", "dhash": "408990117ab6f47f", "phash_int": -2.787545077645952e+18, "collected_at": "2026-05-22T04:32:25.880161+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 18-58-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 18-58-01 CanonPowerShotS40.jpg", "file_name": "2003-04-05 18-58-01 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 18-58-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1708231.0, "mtime": "2003-04-05T17:58:00+00:00", "mtime_ts": 1049565480.0, "ctime": "2024-12-21T07:57:44.280824+00:00", "sha256_file": "ddf95d504a7de1a6070533d1f752a4ed27d38be50a2fdc4242b381ebc38272bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 18:58:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6611", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 18:58:01", "EXIF DateTimeDigitized": "2003:04:05 18:58:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[14, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1d1237a4391491b3e70dd2243b3aae9c2b0d3932398497f3af351a0d2023a118", "phash": "d43bb11c4bc9a536", "dhash": "791cecc365b4b0d4", "phash_int": -3.1537323789541934e+18, "collected_at": "2026-05-22T04:32:25.921223+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 08-51-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 08-51-58 CanonPowerShotS40.jpg", "file_name": "2003-04-20 08-51-58 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 08-51-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1823100.0, "mtime": "2003-04-20T07:51:56+00:00", "mtime_ts": 1050825116.0, "ctime": "2024-12-21T07:57:45.641868+00:00", "sha256_file": "132e2162b6abfaeaa5fdf2e225f5b879f27cead75fa708ce2539eb64afc153ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 08:51:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5569", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 08:51:58", "EXIF DateTimeDigitized": "2003:04:20 08:51:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2dd154b109f65d73dbc61b8bc39b8e0571b0c7cdbf99d6431eea2bab36df25d8", "phash": "c5c6031cddd30d9b", "dhash": "a0cccccc32f6ccd8", "phash_int": -4.1956625803334743e+18, "collected_at": "2026-05-22T04:32:26.136969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-29-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-29-38 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-29-38 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-29-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2612330.0, "mtime": "2003-01-04T10:07:58+00:00", "mtime_ts": 1041674878.0, "ctime": "2024-12-21T07:57:37.539606+00:00", "sha256_file": "42fcdbf24ea2fc8d71bc06e8f43395417a5914deac9d9f05e1deb5b8ffab823c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:29:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "5074", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2002:11:28 17:29:38", "EXIF DateTimeDigitized": "2002:11:28 17:29:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8569e36b0d450ee2550c9a50becbe66a3566254ad991f15350dc4d1996fe0e5", "phash": "d4ad43d231b331b3", "dhash": "e0e0e0f0f0e0f0f0", "phash_int": -3.121764396641865e+18, "collected_at": "2026-05-22T04:32:26.164967+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-36-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-36-17 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-36-17 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-36-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1637390.0, "mtime": "2003-12-21T14:36:16+00:00", "mtime_ts": 1072017376.0, "ctime": "2024-12-21T07:57:56.970234+00:00", "sha256_file": "c860d2b859380307ddbd2609894b7215e9837a2c905e317f38e9660f6a988fff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:36:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5282", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:36:17", "EXIF DateTimeDigitized": "2003:12:21 15:36:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "279/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[31, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1116"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "073d9d0162254251d3715a41440dfe31eace2ddb02e8fb2ca35cd87c74d6dba8", "phash": "d4f00399e7cd98c6", "dhash": "980c34243838786c", "phash_int": -3.1029761837043814e+18, "collected_at": "2026-05-22T04:32:26.393640+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-30 09-35-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-30 09-35-41 CanonPowerShotS40.jpg", "file_name": "2003-10-30 09-35-41 CanonPowerShotS40.jpg", "file_stem": "2003-10-30 09-35-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1700634.0, "mtime": "2003-10-30T08:35:41+00:00", "mtime_ts": 1067502941.0, "ctime": "2024-12-21T07:57:50.044010+00:00", "sha256_file": "bfb3f2ecc013a7bcd702694d822bbb9d17a31289bb5061986006ed78091a2f08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:30 09:35:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4134", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:30 09:35:41", "EXIF DateTimeDigitized": "2003:10:30 09:35:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "88", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "352109ab50d31398f0d6456ffa51b2c3afee4f23f898684d68a3552830e13476", "phash": "d1434acc2d796567", "dhash": "80d8481864a0b8a8", "phash_int": -3.3677658555462845e+18, "collected_at": "2026-05-22T04:32:26.397638+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 14-49-18 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 14-49-18 CanonPowerShotA40.jpg", "file_name": "2003-11-29 14-49-18 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 14-49-18 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 398875.0, "mtime": "2003-11-29T13:49:18+00:00", "mtime_ts": 1070113758.0, "ctime": "2024-12-21T07:57:54.689160+00:00", "sha256_file": "855ecdba0b8e0ce4e017ba56cbf36eb73464119205d059dfb724af168e0dd8dc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 14:49:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4980", "EXIF ExposureTime": "1/160", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 14:49:18", "EXIF DateTimeDigitized": "2003:11:29 14:49:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303049", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "199", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "620"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2372e510b21aea0e97572badfef2ee3b781720ad6b5c68b7061fa958f11c80e", "phash": "c9d8d0a963d6874b", "dhash": "b1b1e1e0d3fbd3ce", "phash_int": -3.9021396511734804e+18, "collected_at": "2026-05-22T04:32:26.537402+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-32-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-32-20 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-32-20 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-32-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1710126.0, "mtime": "2003-11-09T00:32:20+00:00", "mtime_ts": 1068337940.0, "ctime": "2024-12-21T07:57:52.017074+00:00", "sha256_file": "3f8e92f1196cdb2072ffb8b4afec474865a148a1de5ba488af627af42a614731", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:32:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:32:20", "EXIF DateTimeDigitized": "2003:11:09 01:32:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1081/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "36", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1081"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4eb44d1f5889c85f71f83773f4bc0903f800cfee9329a574c39b364211f8ea4", "phash": "c20b8f5eb4f303a6", "dhash": "f3e3c99c9d99c1c2", "phash_int": -4.464316968682192e+18, "collected_at": "2026-05-22T04:32:26.610404+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-23-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-23-08 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-23-08 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-23-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1790869.0, "mtime": "2003-09-14T13:23:08+00:00", "mtime_ts": 1063545788.0, "ctime": "2024-12-21T07:57:47.365924+00:00", "sha256_file": "0f2c1de2e3265ecad9067ea947885732fac1f8e0ec6c5b69436bec7cfd9a6b38", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:23:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5934", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:23:08", "EXIF DateTimeDigitized": "2003:09:14 15:23:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "191", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8c31844e9d9e73ebd0da07f094d3015c7aa479879c04d3eec54b7cb306ae815b", "phash": "d2e41fb3093cacb4", "dhash": "c188849999892879", "phash_int": -3.2504381772400773e+18, "collected_at": "2026-05-22T04:32:26.795984+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-25-53 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-25-53 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-25-53 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-25-53 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 317128.0, "mtime": "2003-11-29T12:25:53+00:00", "mtime_ts": 1070108753.0, "ctime": "2024-12-21T07:57:54.472153+00:00", "sha256_file": "2c63ac66b125360d6917d3d41384631a87208e7fb71f7ff223cc9c55fcd1be93", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:25:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4443", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:25:53", "EXIF DateTimeDigitized": "2003:11:29 13:25:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 6974, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303040", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "72", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1843"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69929a3b8fc1b0a88d7f9e6a7ce5c128f04528960813ab1a9d8622c6ccd203ce", "phash": "cd7cf03669932ac1", "dhash": "1a3273616361e8e2", "phash_int": -3.639770282332051e+18, "collected_at": "2026-05-22T04:32:26.818053+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-09-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-09-01 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-09-01 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-09-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1323187.0, "mtime": "2003-12-31T22:09:00+00:00", "mtime_ts": 1072908540.0, "ctime": "2024-12-21T07:57:59.720323+00:00", "sha256_file": "4a5a65f7a2858041ae27bcea82295aca69880ecc11e4f5a20e74a33d146749d3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:09:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4439", "EXIF ExposureTime": "1/400", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:09:01", "EXIF DateTimeDigitized": "2003:12:31 23:09:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4341/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4341"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a060a8d5ed92ebb62b77044d7f3ccfc5424fc963293adc26f434f649194682bd", "phash": "abdc94c3192c66e3", "dhash": "73ab0f338bcfce5e", "phash_int": -6.062807432685656e+18, "collected_at": "2026-05-22T04:32:27.060903+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-27 20-53-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-27 20-53-33 CanonPowerShotS40.jpg", "file_name": "2003-10-27 20-53-33 CanonPowerShotS40.jpg", "file_stem": "2003-10-27 20-53-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1275836.0, "mtime": "2003-10-27T19:53:33+00:00", "mtime_ts": 1067284413.0, "ctime": "2024-12-21T07:57:49.637997+00:00", "sha256_file": "0f4f4051efacc1ab1a0095524bd98c415c705b4880064774df3fe048d65f2e04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:27 20:53:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4092", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:27 20:53:33", "EXIF DateTimeDigitized": "2003:10:27 20:53:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "91/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "139", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "455"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "742ae8d4eee67d54c92921a57db806633045ea44b4e69a0c8b113c573993d081", "phash": "e575567650ca9ac8", "dhash": "ccc69296964de6f2", "phash_int": -1.9125274005873226e+18, "collected_at": "2026-05-22T04:32:27.134023+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-13 17-26-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-13 17-26-55 CanonPowerShotS40.jpg", "file_name": "2003-09-13 17-26-55 CanonPowerShotS40.jpg", "file_stem": "2003-09-13 17-26-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2178635.0, "mtime": "2003-09-13T15:26:55+00:00", "mtime_ts": 1063466815.0, "ctime": "2024-12-21T07:57:47.290921+00:00", "sha256_file": "74136f7d0fe497baff34ffbf26a710a725b378b48757ecd3c3aec44b4379dc0f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:13 17:26:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5087", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:13 17:26:55", "EXIF DateTimeDigitized": "2003:09:13 17:26:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[32, 235, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "117", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f988b3d934a8a86f837d80e0bae1b14d03d5bd259805e810e78b7e949ac0a30f", "phash": "c7e41c55f11e51b1", "dhash": "e4e6c2caca686868", "phash_int": -4.043075410028769e+18, "collected_at": "2026-05-22T04:32:27.375033+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-31-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-31-21 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-31-21 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-31-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1826405.0, "mtime": "2002-09-28T13:31:20+00:00", "mtime_ts": 1033219880.0, "ctime": "2024-12-21T07:57:36.583575+00:00", "sha256_file": "a6dd5b8a426d6a02c24e8752095f5e3992b0ddb1f033545c4a76f13692a1b3e0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:31:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4561", "EXIF ExposureTime": "1/160", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:31:21", "EXIF DateTimeDigitized": "2002:09:28 13:31:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1673/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000086", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "240", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3346"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8db282c833575eba18656d0e243a6bed02be8acda690e0e14e8d856e256476b5", "phash": "f0709d80ae43f87b", "dhash": "2f96098f8e8e4636", "phash_int": -1.1212231312101887e+18, "collected_at": "2026-05-22T04:32:27.400034+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-14 18-28-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-14 18-28-33 CanonPowerShotS40.jpg", "file_name": "2003-02-14 18-28-33 CanonPowerShotS40.jpg", "file_stem": "2003-02-14 18-28-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1927471.0, "mtime": "2003-02-14T17:28:33+00:00", "mtime_ts": 1045243713.0, "ctime": "2024-12-21T07:57:38.375633+00:00", "sha256_file": "79018688f47d790d4b7f5855391487f6c2727b31be694ebfa9533a4bcec1510e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:14 18:28:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5805", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:14 18:28:33", "EXIF DateTimeDigitized": "2003:02:14 18:28:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65449", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6f099c9761e5d0b4a6e5fee1b4acd69080bc7f7b1b3bfd13399a881aeb08061", "phash": "d0c395783f4a3f30", "dhash": "e0c0d0c98998b45e", "phash_int": -3.403712549671518e+18, "collected_at": "2026-05-22T04:32:27.565945+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-08-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-08-16 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-08-16 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-08-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1321225.0, "mtime": "2003-02-22T16:08:14+00:00", "mtime_ts": 1045930094.0, "ctime": "2024-12-21T07:57:39.408667+00:00", "sha256_file": "9e60d5f4a16544a53ce1f33a01c4a1ddb6dd4c636dc3581ddfba8d4c5bc5b56a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:08:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5561", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:08:16", "EXIF DateTimeDigitized": "2003:02:22 17:08:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f63aa001897f020400181ce6717bd9eabd02b49885ab2f30895f78a680d41765", "phash": "9c0a613594dff8a5", "dhash": "92e4b174b6321292", "phash_int": -7.20283777126682e+18, "collected_at": "2026-05-22T04:32:27.763074+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-34-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-34-10 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-34-10 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-34-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1312790.0, "mtime": "2003-09-14T13:34:10+00:00", "mtime_ts": 1063546450.0, "ctime": "2024-12-21T07:57:47.423925+00:00", "sha256_file": "d295d94aca9a55eb609ea00de9eea102d7a00982b1f49c424406438fa1da1a99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:34:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3679", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:34:10", "EXIF DateTimeDigitized": "2003:09:14 15:34:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "72", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "69b23f41d285eaf2cce37f54f29f02768ddff1dba5de2ba854d4ea1891967be7", "phash": "8738c7b84b661dc3", "dhash": "f0f0e8f5f878e4e0", "phash_int": -8.702986685540591e+18, "collected_at": "2026-05-22T04:32:27.855002+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-50-04 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-50-04 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-50-04 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-50-04 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 322249.0, "mtime": "2003-11-29T16:50:04+00:00", "mtime_ts": 1070124604.0, "ctime": "2024-12-21T07:57:55.160175+00:00", "sha256_file": "fefbc3864619d907e02705820bee7ef9066707975fb0c09564627316d9940bd0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:50:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3441", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:50:04", "EXIF DateTimeDigitized": "2003:11:29 17:50:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4150, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303096", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "95", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef6c1779003cadb57cdf6c1853bad384e82956aeb485852f8c4e321197212599", "phash": "b24d4dd92aa95996", "dhash": "dd2c2c8d8c9c9c2c", "phash_int": -5.598733166632675e+18, "collected_at": "2026-05-22T04:32:27.858093+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-07-11 09-29-29 DCR-PC115E.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-07-11 09-29-29 DCR-PC115E.jpg", "file_name": "2003-07-11 09-29-29 DCR-PC115E.jpg", "file_stem": "2003-07-11 09-29-29 DCR-PC115E", "file_ext": ".jpg", "file_size": 689486.0, "mtime": "2003-07-15T11:40:00+00:00", "mtime_ts": 1058269200.0, "ctime": "2024-12-21T07:57:46.618899+00:00", "sha256_file": "06daf471c190cd6d505ad8910e215ea549807c5b4e75d1d10ce736ef22eaf73a", "exif": {"Image Make": "SONY", "Image Model": "DCR-PC115E ", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:07:11 09:29:29", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "176", "Thumbnail JPEGInterchangeFormat": "751", "Thumbnail JPEGInterchangeFormatLength": "6039", "EXIF ExposureTime": "1/50", "EXIF FNumber": "12/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:07:11 09:29:29", "EXIF DateTimeDigitized": "2003:07:11 09:29:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/10", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "29/2", "EXIF MakerNote": "[83, 79, 78, 89, 32, 67, 65, 77, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1360", "EXIF ExifImageLength": "1020", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "540", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "[]", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "DCR-PC115E ", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2003:07:11 09:29:29", "MakerNote Tag 0x0201": "751", "MakerNote Tag 0x0202": "6039", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x81E5": "[]", "MakerNote Tag 0x6861": "[]", "MakerNote Tag 0x7EB0": "[]", "MakerNote Tag 0x230C": "[]", "MakerNote Tag 0x6EB1": "[]", "MakerNote Tag 0xC629": "[]", "MakerNote Tag 0x1F2C": "[]", "MakerNote Tag 0x6D2A": "[]", "MakerNote Tag 0x4C04": "[]", "MakerNote Tag 0x90CA": "[]", "MakerNote Tag 0x4871": "[]", "MakerNote Tag 0xF396": "[]"}, "format": "JPEG", "mode": "RGB", "width": 1360.0, "height": 1020.0, "megapixels": 1.39, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2e3e6e8f040f0bc0fb452603f997d927eacf7541c1a54c3b185b76d190e3e527", "phash": "af2db4740232cfb1", "dhash": "376763e38b131d19", "phash_int": -5.823800332774093e+18, "collected_at": "2026-05-22T04:32:28.140244+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 16-58-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 16-58-07 CanonPowerShotS40.jpg", "file_name": "2003-10-25 16-58-07 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 16-58-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1480570.0, "mtime": "2003-10-25T15:58:07+00:00", "mtime_ts": 1067097487.0, "ctime": "2024-12-21T07:57:49.149981+00:00", "sha256_file": "754cf2546452de07229bb6f200ef45ea7e6c453a49d4176c2b8661c3e5ccd69e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 16:58:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3383", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 16:58:07", "EXIF DateTimeDigitized": "2003:10:25 16:58:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1269/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1269"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a659360acac9484fd99a8b548b010033d3777e59de67a720535061118ad9beb", "phash": "b86a47946f817e89", "dhash": "bb3b3b3f3f3efe6c", "phash_int": -5.158231720347992e+18, "collected_at": "2026-05-22T04:32:28.149428+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-45-52 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-45-52 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-45-52 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-45-52 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 572268.0, "mtime": "2003-02-16T08:17:34+00:00", "mtime_ts": 1045383454.0, "ctime": "2024-12-21T07:57:37.746613+00:00", "sha256_file": "aa3f31ec404f880ca2359324a6d18e9cb6ecdcf24cd253edb3ae8b7dfedacded", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:45:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1372", "Thumbnail JPEGInterchangeFormatLength": "9222", "EXIF ExposureTime": "1/500", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:45:52", "EXIF DateTimeDigitized": "2003:02:01 14:45:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 43, 0, 0, 0, 180, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1200", "Interoperability RelatedImageLength": "1600", "EXIF InteroperabilityOffset": "1200", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1161639", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aee618d823cf2353b021fa1a7c8150d5dd6dee02b19457fcef3442058944dce1", "phash": "c9e61cb1e6fe0912", "dhash": "7953d1c0c8d33271", "phash_int": -3.898396877032388e+18, "collected_at": "2026-05-22T04:32:28.352929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-06-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-06-41 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-06-41 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-06-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2044771.0, "mtime": "2003-12-21T13:06:40+00:00", "mtime_ts": 1072012000.0, "ctime": "2024-12-21T07:57:56.622222+00:00", "sha256_file": "11a83bc153c83391cc8172ebf57c0b416a7091ad6d96c196c7697a9157a265fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:06:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6903", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:06:41", "EXIF DateTimeDigitized": "2003:12:21 14:06:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "605f667af49915a0fc9a2ca32cd6f2006725f21bd12d32b973977e5918b2cf0c", "phash": "b5bf47914319d2d0", "dhash": "7a7e3c36969e9686", "phash_int": -5.350479143071264e+18, "collected_at": "2026-05-22T04:32:28.459024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-02 22-43-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-02 22-43-03 CanonPowerShotS40.jpg", "file_name": "2003-12-02 22-43-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-02 22-43-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1872631.0, "mtime": "2003-12-02T21:43:03+00:00", "mtime_ts": 1070401383.0, "ctime": "2024-12-21T07:57:55.911200+00:00", "sha256_file": "37ab3cf7bea4f85b76f4a224b4436a15518012cc28ea0c5bea49566df3fcdafa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:02 22:43:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4725", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:02 22:43:03", "EXIF DateTimeDigitized": "2003:12:02 22:43:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 293, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65490", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75ad07d3c6b06ecbb8a4cd9b6aaa580858358af7c47b63b58bae44f0e2fb5e7d", "phash": "9d8d635b1c657161", "dhash": "30f0f276323908e1", "phash_int": -7.09390459506908e+18, "collected_at": "2026-05-22T04:32:28.580590+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-52-11 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-52-11 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-52-11 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-52-11 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 296200.0, "mtime": "2003-10-23T20:19:41+00:00", "mtime_ts": 1066940381.0, "ctime": "2024-12-21T07:57:46.746904+00:00", "sha256_file": "4a3e00edf9530f1bfef7dea1867554023b03c5061ebe0fabf6266afc5d9bb277", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/60", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:52:11", "EXIF DateTimeDigitized": "2003:08:12 15:52:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "6", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "11/10", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e1c3118cecaef0cd527ea3532b9993ae550d540839c11163c2a51d6301a2ebd", "phash": "acb147afb84c4d83", "dhash": "3e0fd3b53b6367e7", "phash_int": -6.002938008271304e+18, "collected_at": "2026-05-22T04:32:28.671779+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-22-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-22-44 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-22-44 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-22-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1244793.0, "mtime": "2003-04-19T17:22:44+00:00", "mtime_ts": 1050772964.0, "ctime": "2024-12-21T07:57:45.440861+00:00", "sha256_file": "297bfc0cbf2a1843d5a1c4de8c054d0433fe5c569a50faf38ccf6843a53887d4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:22:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3874", "EXIF ExposureTime": "1/125", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:22:44", "EXIF DateTimeDigitized": "2003:04:19 17:22:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "103/40", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "192", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2575"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29299ace26f94daeda6fde5fed195d5ee08769cfc0b20851e3a09670acb651da", "phash": "c0273fd93fc2c063", "dhash": "f0c8888c84909068", "phash_int": -4.6006382920254915e+18, "collected_at": "2026-05-22T04:32:28.882179+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 21-53-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 21-53-03 CanonPowerShotS40.jpg", "file_name": "2003-12-27 21-53-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 21-53-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1966360.0, "mtime": "2003-12-27T20:53:02+00:00", "mtime_ts": 1072558382.0, "ctime": "2024-12-21T07:57:58.545285+00:00", "sha256_file": "e6085b6f25b7ab7585211ee342e1c72375a743f58700cf9e3d36218d96bba209", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 21:53:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8086", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 21:53:03", "EXIF DateTimeDigitized": "2003:12:27 21:53:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e4ec51f8276ada30006a66a88e7de10b9a6f1bb8757c5909146b4986de00792c", "phash": "dcd08bb53582ec4d", "dhash": "c888212822376363", "phash_int": -2.5353729798064753e+18, "collected_at": "2026-05-22T04:32:28.938184+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 22-16-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 22-16-08 CanonPowerShotA40.jpg", "file_name": "2003-03-29 22-16-08 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 22-16-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 408716.0, "mtime": "2003-03-30T10:04:07+00:00", "mtime_ts": 1049018647.0, "ctime": "2024-12-21T07:57:42.953781+00:00", "sha256_file": "6d1c7352575f6ccee6d4fd9a7d2665f016baf925d56794dba4c8719e7b7ec220", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 22:16:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3841", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 22:16:08", "EXIF DateTimeDigitized": "2003:03:29 22:16:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 460, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202041", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f9d8dc66655e03eb631ac102261e55582ff611149023986fd03c3339d34c239a", "phash": "8d5a6727524b8d96", "dhash": "4db133f1b6f6ceea", "phash_int": -8.261177147875685e+18, "collected_at": "2026-05-22T04:32:29.001704+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-59-50 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-59-50 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-59-50 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-59-50 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 375397.0, "mtime": "2003-11-01T00:59:50+00:00", "mtime_ts": 1067648390.0, "ctime": "2024-12-21T07:57:50.470024+00:00", "sha256_file": "248468dec6a28b50affe83e529712971e5eafa9de5194f85a8582d35e4907bb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:59:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4724", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:59:50", "EXIF DateTimeDigitized": "2003:11:01 01:59:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5666, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292940", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "70", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "559"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f21e5d19985f78a26967697903f4bdf9c23cd8beec5e2b9841c61552ef5c248b", "phash": "f163307096d894df", "dhash": "8c0c4040408020e0", "phash_int": -1.0529446277493174e+18, "collected_at": "2026-05-22T04:32:29.172666+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-30-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-30-56 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-30-56 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-30-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1340367.0, "mtime": "2003-11-04T09:30:56+00:00", "mtime_ts": 1067938256.0, "ctime": "2024-12-21T07:57:51.398054+00:00", "sha256_file": "0047540a77cc67f500ba08cc5509987455f4a29b63d0897d58f6661d24b7248e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:30:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5605", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:30:56", "EXIF DateTimeDigitized": "2003:11:04 10:30:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[99, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "142", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c35ef806ab552ea6f5f7881b558ea4cbec16bcc595a1ff3074cc8a3934bb3d26", "phash": "d4c4231f7a211d9f", "dhash": "c4e4b0b83070ccec", "phash_int": -3.1153264241335916e+18, "collected_at": "2026-05-22T04:32:29.314401+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 15-21-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 15-21-29 CanonPowerShotS40.jpg", "file_name": "2003-02-23 15-21-29 CanonPowerShotS40.jpg", "file_stem": "2003-02-23 15-21-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1999356.0, "mtime": "2003-02-23T14:21:28+00:00", "mtime_ts": 1046010088.0, "ctime": "2024-12-21T07:57:39.971685+00:00", "sha256_file": "0f66634934af431ca95c5d29fe3ed8fb161959b18d9ca5de259bb3af35fd0a36", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 15:21:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4768", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:23 15:21:29", "EXIF DateTimeDigitized": "2003:02:23 15:21:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "297", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ec5917e29a3a766e4e5d784fc471d3b22952038cd3aaab3937cbafeae8c0b33", "phash": "a7c69c4057b3415f", "dhash": "feb74f4c68cf1f76", "phash_int": -6.357222023823671e+18, "collected_at": "2026-05-22T04:32:29.519741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 11-39-51 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 11-39-51 CanonPowerShotA40.jpg", "file_name": "2003-11-30 11-39-51 CanonPowerShotA40.jpg", "file_stem": "2003-11-30 11-39-51 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 435254.0, "mtime": "2003-11-30T10:39:51+00:00", "mtime_ts": 1070188791.0, "ctime": "2024-12-21T07:57:55.249178+00:00", "sha256_file": "3c8d1b61c55b43a412617cd0409e69949fb035acc25789d9fbe46e2cd102c498", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 11:39:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5594", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:30 11:39:51", "EXIF DateTimeDigitized": "2003:11:30 11:39:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1313107", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "85", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1070"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0098d8785edf3e9f41b34756414550ecd9faae4ad75f1d58742aaeab7a297874", "phash": "c678b347932cd2a6", "dhash": "71b1a52464c4c6cc", "phash_int": -4.1453663370013036e+18, "collected_at": "2026-05-22T04:32:29.529743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-24-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-24-02 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-24-02 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-24-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1194938.0, "mtime": "2002-09-28T13:24:00+00:00", "mtime_ts": 1033219440.0, "ctime": "2024-12-21T07:57:36.344568+00:00", "sha256_file": "52d8a654fd65cb774679e0a9bd6b1a3688c5ca6a57df2986563aa8fc6da56472", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:24:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3024", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:24:02", "EXIF DateTimeDigitized": "2002:09:28 13:24:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "360079425247f2c5d5c325969046f2475be51878574e0174e65b15744278b379", "phash": "c1553ebcc1003fee", "dhash": "7010c0c0c311f1c1", "phash_int": -4.5156340709562614e+18, "collected_at": "2026-05-22T04:32:29.741510+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-30-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-30-05 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-30-05 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-30-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2778131.0, "mtime": "2003-09-16T11:30:05+00:00", "mtime_ts": 1063711805.0, "ctime": "2024-12-21T07:57:47.863940+00:00", "sha256_file": "b1f3b43bbdec14905d5ad612aec7c646296a165c6f6989ee57c636f5e5c76247", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:30:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7086", "EXIF ExposureTime": "1/13", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:30:05", "EXIF DateTimeDigitized": "2003:09:16 13:30:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "59/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "118", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9a271f27ce4e3e4e3f105540a4abcfb94659641c9b85ee7a9a9d8806b4f73ec", "phash": "a5de1fe4c11c8678", "dhash": "664f69cecece06d6", "phash_int": -6.4947185452688e+18, "collected_at": "2026-05-22T04:32:29.805505+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-39-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-39-56 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-39-56 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-39-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2069971.0, "mtime": "2003-11-29T11:39:56+00:00", "mtime_ts": 1070105996.0, "ctime": "2024-12-21T07:57:54.029139+00:00", "sha256_file": "be2b18e8fbe33c223edb68f26698babaf7fc21a30c3c3f466909ae0043b882e8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:39:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7881", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:39:56", "EXIF DateTimeDigitized": "2003:11:29 12:39:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "202/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "188", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1616"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4aa6c588e16e42bed9563ed6d75c7ba2d09f5163d4aa4e7ca86f01c14f81460", "phash": "862db3b50ca54caf", "dhash": "66cfe1e426187cf9", "phash_int": -8.778162508492617e+18, "collected_at": "2026-05-22T04:32:30.060397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-09-52 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-09-52 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-09-52 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-09-52 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 527282.0, "mtime": "2003-03-30T10:02:12+00:00", "mtime_ts": 1049018532.0, "ctime": "2024-12-21T07:57:40.405699+00:00", "sha256_file": "c7be628161169783e391f61dbfe9bd418b63458719de8594279d02a3dc26963e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:09:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4897", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:09:52", "EXIF DateTimeDigitized": "2003:03:06 19:09:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 114, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191964", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "113", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1394"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e9f03f11acaf0e9ecad0d0f235b8cf375958318c4857836596db6369c6cc0b67", "phash": "8736cd633b0b4333", "dhash": "0f264d69ccc2f3f0", "phash_int": -8.703543403770854e+18, "collected_at": "2026-05-22T04:32:30.072397+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-09 19-29-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-09 19-29-16 CanonPowerShotS40.jpg", "file_name": "2003-10-09 19-29-16 CanonPowerShotS40.jpg", "file_stem": "2003-10-09 19-29-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2002439.0, "mtime": "2003-10-09T18:29:16+00:00", "mtime_ts": 1065724156.0, "ctime": "2024-12-21T07:57:48.509960+00:00", "sha256_file": "149e681d5d489597e47ce0bfd887f369fff3f8d27633b7011d83a9c9c38dda88", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:09 19:29:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4735", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:09 19:29:16", "EXIF DateTimeDigitized": "2003:10:09 19:29:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1443/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1443"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a82a1e244a28a0f937d0e81b561c6bff0cb1dace13362c84a59a49cffc49a192", "phash": "eb15e4f056555654", "dhash": "8e4b6361498b0785", "phash_int": -1.5070467793938458e+18, "collected_at": "2026-05-22T04:32:30.314465+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-38-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-38-38 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-38-38 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-38-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1753708.0, "mtime": "2003-04-06T15:38:36+00:00", "mtime_ts": 1049643516.0, "ctime": "2024-12-21T07:57:44.671837+00:00", "sha256_file": "38f1cd504e3445c3ab65656fb5b97728796e96eea5842b83e5ad1dd161f4d76f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:38:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6529", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:38:38", "EXIF DateTimeDigitized": "2003:04:06 16:38:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "44299e15a9f609bafad32a7d4c53e881ccac8cd2849494277090a7f6d237c0cf", "phash": "de29cbe014e7f00b", "dhash": "b1b11b1634954170", "phash_int": -2.4381935599605555e+18, "collected_at": "2026-05-22T04:32:30.332641+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 16-06-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 16-06-57 CanonPowerShotS40.jpg", "file_name": "2003-10-26 16-06-57 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 16-06-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1506652.0, "mtime": "2003-10-26T15:06:57+00:00", "mtime_ts": 1067180817.0, "ctime": "2024-12-21T07:57:49.364988+00:00", "sha256_file": "c25ce5ed3422fad80e6142a7fa70b46d082bae70072ffcc771cf0528895d6f75", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 16:06:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7109", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 16:06:57", "EXIF DateTimeDigitized": "2003:10:26 16:06:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "66", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aae807612a8c4b66dfb21be1fef2453a393ab232c08be5acf85a6625a29c7c28", "phash": "9285799e6493dc39", "dhash": "dcd0ccccec6cb8ae", "phash_int": -7.88876545107035e+18, "collected_at": "2026-05-22T04:32:30.693539+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-37-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-37-39 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-37-39 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-37-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2293552.0, "mtime": "2003-04-06T15:37:38+00:00", "mtime_ts": 1049643458.0, "ctime": "2024-12-21T07:57:44.649836+00:00", "sha256_file": "4405075b3e1145f4c87172a71740bcd86b0889fd34d3730ce925efb18718e38d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:37:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7684", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:37:39", "EXIF DateTimeDigitized": "2003:04:06 16:37:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "280", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "53ca29a00597674b29173b5048c53d46f896083e711bd0596ec46e54e93c869f", "phash": "ec91116965677393", "dhash": "86b2e4e727276727", "phash_int": -1.4003188647649966e+18, "collected_at": "2026-05-22T04:32:30.749663+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-28-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-28-07 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-28-07 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-28-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1535828.0, "mtime": "2002-11-13T08:28:06+00:00", "mtime_ts": 1037176086.0, "ctime": "2024-12-21T07:57:37.050591+00:00", "sha256_file": "cb524a1ac49d6697e57cb4c21f98f4757496255edf297e872138f56ec5f3559c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:28:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4094", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:28:07", "EXIF DateTimeDigitized": "2002:11:13 09:28:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "212", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c6775bea4496338c1754ce036d97f7b4e836923139a4c6068aa95ad5f2c5415", "phash": "df58c0c3575c6c58", "dhash": "c0c835704a4ac080", "phash_int": -2.3529188600842537e+18, "collected_at": "2026-05-22T04:32:30.940723+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-23 16-52-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-23 16-52-46 CanonPowerShotS40.jpg", "file_name": "2003-10-23 16-52-46 CanonPowerShotS40.jpg", "file_stem": "2003-10-23 16-52-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1048741.0, "mtime": "2003-10-23T15:52:46+00:00", "mtime_ts": 1066924366.0, "ctime": "2024-12-21T07:57:48.993976+00:00", "sha256_file": "e796587f720835db3e543c86f36a6721aeacc767d63967ec0fdeaaf6fc4388ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:23 16:52:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2885", "EXIF ExposureTime": "1/15", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:23 16:52:46", "EXIF DateTimeDigitized": "2003:10:23 16:52:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "129/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "258"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8321580e9526ae32dd825cc7406faa6857297da34adbd1a6b3dc586434aed740", "phash": "d72e788532968778", "dhash": "a0c0c0e0c4c05000", "phash_int": -2.9412809931516457e+18, "collected_at": "2026-05-22T04:32:30.958844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-28 10-00-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-28 10-00-15 CanonPowerShotS40.jpg", "file_name": "2003-03-28 10-00-15 CanonPowerShotS40.jpg", "file_stem": "2003-03-28 10-00-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1387487.0, "mtime": "2003-03-28T09:00:14+00:00", "mtime_ts": 1048842014.0, "ctime": "2024-12-21T07:57:42.236758+00:00", "sha256_file": "5f0a86e9502b9407617ed67d567a3c7f17fda9e2ea8539461c6528d4f0d687e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:28 10:00:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3729", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:28 10:00:15", "EXIF DateTimeDigitized": "2003:03:28 10:00:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "312", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57c2bc49ac162050b42a75da77c88908d76de5ed97cd078278de19237390f177", "phash": "8080357f10b6fd3f", "dhash": "febfbeb9e32363e6", "phash_int": -9.187284419978266e+18, "collected_at": "2026-05-22T04:32:31.143787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-14 18-09-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-14 18-09-41 CanonPowerShotS40.jpg", "file_name": "2003-11-14 18-09-41 CanonPowerShotS40.jpg", "file_stem": "2003-11-14 18-09-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1976947.0, "mtime": "2003-11-14T17:09:41+00:00", "mtime_ts": 1068829781.0, "ctime": "2024-12-21T07:57:52.846101+00:00", "sha256_file": "d2a4ba932b5c076fe46bd720f98e5937ee1fae954987189a897eb8d089910bd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:14 18:09:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5961", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:14 18:09:41", "EXIF DateTimeDigitized": "2003:11:14 18:09:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 327, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c346f5e07bcad6c8bd4022327e1b24b45bb6ba5b0ebdc63317f7400264969aef", "phash": "d3b8603a67436667", "dhash": "999998787839d9cd", "phash_int": -3.1906945320351565e+18, "collected_at": "2026-05-22T04:32:31.211790+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 08-38-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 08-38-22 CanonPowerShotA40.jpg", "file_name": "2003-10-18 08-38-22 CanonPowerShotA40.jpg", "file_stem": "2003-10-18 08-38-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 600339.0, "mtime": "2003-10-18T07:38:22+00:00", "mtime_ts": 1066462702.0, "ctime": "2024-12-21T07:57:48.788970+00:00", "sha256_file": "6c5f26ef429439e0b228a8ac6a185a62dc4744d17bb87a9e2aeb1f69a762fbc6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 08:38:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4710", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:18 08:38:22", "EXIF DateTimeDigitized": "2003:10:18 08:38:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 11, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292916", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "54", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "942cc46eee6c49803ae7c77167315141d6a90763b0b5c48892e8f9aca2309246", "phash": "e86fc03e8467863b", "dhash": "f39343e717a79786", "phash_int": -1.6979271597535053e+18, "collected_at": "2026-05-22T04:32:31.421495+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-28 22-58-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-28 22-58-30 CanonPowerShotS40.jpg", "file_name": "2003-04-28 22-58-30 CanonPowerShotS40.jpg", "file_stem": "2003-04-28 22-58-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1546062.0, "mtime": "2003-04-28T21:58:28+00:00", "mtime_ts": 1051567108.0, "ctime": "2024-12-21T07:57:46.057881+00:00", "sha256_file": "bac510ee8fcd2a71928eea8a68466cd955f038cd652b48ed728fe58882e056d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:28 22:58:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4704", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:28 22:58:30", "EXIF DateTimeDigitized": "2003:04:28 22:58:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fcfa26df2061b0cbf09c13a8d73f740a360cab9cd93ea6ad65e919977c5272eb", "phash": "8173d827574973b4", "dhash": "cad089e8ecd2f2e8", "phash_int": -9.118707157015367e+18, "collected_at": "2026-05-22T04:32:31.423493+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-46-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-46-54 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-46-54 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-46-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1578711.0, "mtime": "2003-04-05T12:46:52+00:00", "mtime_ts": 1049546812.0, "ctime": "2024-12-21T07:57:43.673804+00:00", "sha256_file": "acea703e86ee6901fe2e74a788642f563e83b1f8a9915f0bc70cc9f4717b098e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:46:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6775", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:46:54", "EXIF DateTimeDigitized": "2003:04:05 13:46:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "259", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fae4cc6caa657a3095b80c7019bf1505746298f343245599c052fa5745dabb87", "phash": "98e3a9b4b41c3d1d", "dhash": "9d997828283434b4", "phash_int": -7.42990836665023e+18, "collected_at": "2026-05-22T04:32:31.665339+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 17-14-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 17-14-42 CanonPowerShotS40.jpg", "file_name": "2003-11-16 17-14-42 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 17-14-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2245533.0, "mtime": "2003-11-16T16:14:42+00:00", "mtime_ts": 1068999282.0, "ctime": "2024-12-21T07:57:52.980105+00:00", "sha256_file": "3cda05a44c7dc7c45bb7593abb6025f3ec9a729b718cd7d734167d912cb27840", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 17:14:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6227", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 17:14:42", "EXIF DateTimeDigitized": "2003:11:16 17:14:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65496", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d81b79520ede92fe1a313f9b1c4fdb66317ef32f652619e68c6a5e5fbea30720", "phash": "9dcd23b3e9e0c858", "dhash": "8a78347030bd1c9e", "phash_int": -7.07596018389924e+18, "collected_at": "2026-05-22T04:32:31.706506+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 09-20-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 09-20-03 CanonPowerShotS40.jpg", "file_name": "2003-04-06 09-20-03 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 09-20-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1647695.0, "mtime": "2003-04-06T08:20:02+00:00", "mtime_ts": 1049617202.0, "ctime": "2024-12-21T07:57:44.311825+00:00", "sha256_file": "2b265ab50b0929e1c57033c0d56ab3296ce587fb4d92a7a0dc68ba69d42f98d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 09:20:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4619", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 09:20:03", "EXIF DateTimeDigitized": "2003:04:06 09:20:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000072", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "191fc4a6cab2796f77bce2e3ee0aaf8b3b3a5a1fb20c278662dc28ed58ae46de", "phash": "c965378e31cc52cb", "dhash": "c6c2d4d2ebe979d8", "phash_int": -3.9346776155779026e+18, "collected_at": "2026-05-22T04:32:31.963515+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-12 09-10-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-12 09-10-52 CanonPowerShotS40.jpg", "file_name": "2002-11-12 09-10-52 CanonPowerShotS40.jpg", "file_stem": "2002-11-12 09-10-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1404380.0, "mtime": "2002-11-12T08:10:50+00:00", "mtime_ts": 1037088650.0, "ctime": "2024-12-21T07:57:36.763581+00:00", "sha256_file": "8d316b3cebeef05897803e805ae214cd33492a772d27918f07dd58d58a926825", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:12 09:10:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4512", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:12 09:10:52", "EXIF DateTimeDigitized": "2002:11:12 09:10:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "242", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f1dee10d2602352ccc90fba53daf261d456ff9c788871e4303963f6d40b327ef", "phash": "ffb89094caca4565", "dhash": "381e474140d0e041", "phash_int": -2.0107229591354012e+16, "collected_at": "2026-05-22T04:32:32.056519+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 08-44-56 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 08-44-56 E5000.jpg", "file_name": "2003-05-25 08-44-56 E5000.jpg", "file_stem": "2003-05-25 08-44-56 E5000", "file_ext": ".jpg", "file_size": 639016.0, "mtime": "2003-05-25T07:44:56+00:00", "mtime_ts": 1053848696.0, "ctime": "2024-12-21T07:57:46.327890+00:00", "sha256_file": "71aced12f86cccd6ede977d933e7d6edf659c3bfd6bf86e134ccf2c4c2f81859", "exif": {"Image ImageDescription": " ", "Image Make": "NIKON", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "E5000v1.6", "Image DateTime": "2003:05:25 08:44:56", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "284", "Thumbnail JPEGInterchangeFormat": "4084", "Thumbnail JPEGInterchangeFormatLength": "3043", "EXIF ExposureTime": "10/79", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "800", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:05:25 08:44:56", "EXIF DateTimeDigitized": "2003:05:25 08:44:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "1", "EXIF ExposureBiasValue": "-3/10", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Tungsten (incandescent light)", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "62/5", "EXIF MakerNote": "[21, 0, 1, 0, 7, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2560", "EXIF ExifImageLength": "1920", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "886", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote MakernoteVersion": "0100", "MakerNote ISOSetting": "[0, 800]", "MakerNote ColorMode": "COLOR", "MakerNote Quality": "BASIC ", "MakerNote Whitebalance": "INCANDESCENT", "MakerNote ImageSharpening": "NONE ", "MakerNote FocusMode": "AF-C ", "MakerNote FlashSetting": " ", "MakerNote LensMount": "1104/125", "MakerNote ISOSelection": "MANUAL", "MakerNote ImageAdjustment": "NORMAL ", "MakerNote AuxiliaryLens": "OFF ", "MakerNote ManualFocusDistance": "0/0", "MakerNote DigitalZoomFactor": "1", "MakerNote AFFocusPosition": "CenterCenterCenterCenter", "MakerNote SceneMode": " ", "MakerNote Saturation": "0", "MakerNote NoiseReduction": "OFF ", "MakerNote DataDump": "[1, 105, 0, 128, 1, 0, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 130, 86, 17, 128, ... ]", "MakerNote NikonPreview": "1764", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 13, 0, 1, 0, 22, 0, ... ]"}, "format": "JPEG", "mode": "RGB", "width": 2560.0, "height": 1920.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ea64760f1db43d2c492186e5d8f9690f89cb2aee462d68e3c878a35be09c98c", "phash": "cc9832e7d938c64e", "dhash": "08d4b4b060449a65", "phash_int": -3.704154722149022e+18, "collected_at": "2026-05-22T04:32:32.247499+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 13-25-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 13-25-35 CanonPowerShotS40.jpg", "file_name": "2003-12-20 13-25-35 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 13-25-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1733233.0, "mtime": "2003-12-20T12:25:34+00:00", "mtime_ts": 1071923134.0, "ctime": "2024-12-21T07:57:56.584221+00:00", "sha256_file": "6164c4358a7ce4a025d9216ddf6227d600ca37efd7d82e09de0a26082f7a4b99", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 13:25:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5426", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 13:25:35", "EXIF DateTimeDigitized": "2003:12:20 13:25:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 385, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0e6569f3f4c49e43a31669b5e3b291e3e7bf435a62f6189e500aa197ecc75424", "phash": "9c2d0ce3e3d2e274", "dhash": "f67636ecdc7838b8", "phash_int": -7.193078856921456e+18, "collected_at": "2026-05-22T04:32:32.283500+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-53-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-53-38 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-53-38 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-53-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1236396.0, "mtime": "2003-11-30T11:53:38+00:00", "mtime_ts": 1070193218.0, "ctime": "2024-12-21T07:57:55.332181+00:00", "sha256_file": "43c64719789420fe6c313019f323460e7478bac2f5169a3e01c0cbb88a969575", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:53:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5056", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:53:38", "EXIF DateTimeDigitized": "2003:11:30 12:53:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[82, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "12", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da6bf61860409c6b7181fac48ced47e27f00152c7a11cec751e2a136ae5bbbfd", "phash": "dafa34d3c2848e9a", "dhash": "943839715978f0e4", "phash_int": -2.667761745157387e+18, "collected_at": "2026-05-22T04:32:32.502681+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 15-24-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 15-24-22 CanonPowerShotS40.jpg", "file_name": "2003-03-29 15-24-22 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 15-24-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1597716.0, "mtime": "2003-03-30T09:45:39+00:00", "mtime_ts": 1049017539.0, "ctime": "2024-12-21T07:57:42.670772+00:00", "sha256_file": "19c4f19e32fa0e2e7b47c4461a5124998e60a23f2a6f597cd147703ddac6b966", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 15:24:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4656", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 15:24:22", "EXIF DateTimeDigitized": "2003:03:29 15:24:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aabfe89ac682b7ee0d6663d3deb89ebb34e9e432ef6036785f009b3f844ebaae", "phash": "d1314767c13ce762", "dhash": "cc9c9c90d0c424c0", "phash_int": -3.372836134974593e+18, "collected_at": "2026-05-22T04:32:32.532683+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 09-23-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 09-23-09 CanonPowerShotS40.jpg", "file_name": "2003-04-06 09-23-09 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 09-23-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1712111.0, "mtime": "2003-04-06T08:23:08+00:00", "mtime_ts": 1049617388.0, "ctime": "2024-12-21T07:57:44.362827+00:00", "sha256_file": "faa927edea504b5d71abd526c37aadc8e1ad5e3dc5259247898a84759f80b9ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 09:23:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3188", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 09:23:09", "EXIF DateTimeDigitized": "2003:04:06 09:23:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "234", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "60c2860f641acff6d37984af9b792757017f323bdf7caea8aca62ebeb2f880fc", "phash": "81808c9e99ded3db", "dhash": "c4cecacec3e7e7e3", "phash_int": -9.115131032983645e+18, "collected_at": "2026-05-22T04:32:32.784572+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-30-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-30-10 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-30-10 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-30-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1421879.0, "mtime": "2002-09-28T13:30:08+00:00", "mtime_ts": 1033219808.0, "ctime": "2024-12-21T07:57:36.525573+00:00", "sha256_file": "6ee43c6b111098b7bf495ddc7256f062b5652326f3d914df349762459871c93b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:30:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4499", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:30:10", "EXIF DateTimeDigitized": "2002:09:28 13:30:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e74013ae07df93e65591c32469e6d85d780f69cf781a0078e24c5abdac78e899", "phash": "f6b2823b7d60409f", "dhash": "ed2ce8001ce436b6", "phash_int": -6.703302025066413e+17, "collected_at": "2026-05-22T04:32:32.787568+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-54-48 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-54-48 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-54-48 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-54-48 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 401894.0, "mtime": "2003-11-29T11:54:48+00:00", "mtime_ts": 1070106888.0, "ctime": "2024-12-21T07:57:54.112141+00:00", "sha256_file": "ede88d379c100c0fb055b2efe14f2c3d43860c3a53094321af0cc126c75f0c32", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:54:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5364", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:54:48", "EXIF DateTimeDigitized": "2003:11:29 12:54:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 180, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303002", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "74", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "226", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1242"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ed89f262f2285b39a3ad5e83f0ce035edf84be91bbd4e6269681336da43b074b", "phash": "e11b01ddfe6081dd", "dhash": "d9c9c90d04d68ac1", "phash_int": -2.2261835378374405e+18, "collected_at": "2026-05-22T04:32:33.019762+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-13-23 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-13-23 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-13-23 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-13-23 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1830711.0, "mtime": "2002-09-28T13:13:22+00:00", "mtime_ts": 1033218802.0, "ctime": "2024-12-21T07:57:35.919554+00:00", "sha256_file": "152ea01204dcfc91b796bff8499483b5a51d4e474b0d1f882e00f32b8b42d7c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:13:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4708", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:13:23", "EXIF DateTimeDigitized": "2002:09:28 13:13:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b29b4b3fe8b17a01ef643b3024c8b2306b384797961ac115560eb29ffc9e27d4", "phash": "ede939e5620b740c", "dhash": "03524243c6467a3e", "phash_int": -1.3034469597918362e+18, "collected_at": "2026-05-22T04:32:33.071763+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 23-05-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 23-05-08 CanonPowerShotS40.jpg", "file_name": "2003-10-25 23-05-08 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 23-05-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1618118.0, "mtime": "2003-10-25T22:05:08+00:00", "mtime_ts": 1067119508.0, "ctime": "2024-12-21T07:57:49.248984+00:00", "sha256_file": "600ca53912b9b382bfef7bd5d6cd79e25b0955a46c9243be71fdd9cb886dc8fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 23:05:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5811", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 23:05:08", "EXIF DateTimeDigitized": "2003:10:25 23:05:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "197/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "22", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "788"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9f7fd16d51974480722c60482ffccdaa9abcb59774f83b27a3cd1a02a89a851", "phash": "8715ed4ba4db0476", "dhash": "72dadcdcf8f0d9cf", "phash_int": -8.71279699493421e+18, "collected_at": "2026-05-22T04:32:33.240728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-53-34 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-53-34 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-53-34 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-53-34 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 488549.0, "mtime": "2003-10-23T20:19:43+00:00", "mtime_ts": 1066940383.0, "ctime": "2024-12-21T07:57:46.796905+00:00", "sha256_file": "ce28bdeb985c95ea64451f65d2d4f6ecc802bdf7c1fcf67f1dd5236172a37a79", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "4602", "EXIF ExposureTime": "1/30", "EXIF FNumber": "9/2", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:53:34", "EXIF DateTimeDigitized": "2003:08:12 15:53:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "5", "EXIF ApertureValue": "43/10", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "43/10", "EXIF SubjectDistance": "27/10", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "56/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "200", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bfd132bbfa246bab63ca7f74b85f876c1226219b76f431a7b1470907e7ae4d7", "phash": "a636f21e8ccc3333", "dhash": "6d4d4f676f595e9f", "phash_int": -6.469717601646005e+18, "collected_at": "2026-05-22T04:32:33.247728+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-25 13-22-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-25 13-22-56 CanonPowerShotS40.jpg", "file_name": "2003-12-25 13-22-56 CanonPowerShotS40.jpg", "file_stem": "2003-12-25 13-22-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1591202.0, "mtime": "2003-12-25T12:22:54+00:00", "mtime_ts": 1072354974.0, "ctime": "2024-12-21T07:57:57.691257+00:00", "sha256_file": "f845e1ac8dcb84a714fed71841ec7aaeccbe3f83b0ea2bb063b3352f8d5bac6d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:25 13:22:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5845", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:25 13:22:56", "EXIF DateTimeDigitized": "2003:12:25 13:22:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7fc7dccb9ce12fe85d96a235dd9ab3c032341c2863fe78782a6572182fc8fe5c", "phash": "9cf9719483331d9c", "dhash": "18303271f0b4f8f6", "phash_int": -7.135547251921577e+18, "collected_at": "2026-05-22T04:32:33.570876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-31-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-31-16 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-31-16 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-31-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1840343.0, "mtime": "2002-09-28T13:31:14+00:00", "mtime_ts": 1033219874.0, "ctime": "2024-12-21T07:57:36.573575+00:00", "sha256_file": "d77fbade6dcd4e42a9bc02b65a869bcb6efab72c62a8a044bbfa4ac81676db47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:31:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4570", "EXIF ExposureTime": "1/200", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:31:16", "EXIF DateTimeDigitized": "2002:09:28 13:31:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1603/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000085", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "247", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3206"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "10c8d75075ad40a33d7ccba6e2c8d9a2c3030ac0445b4961033f7febb918790e", "phash": "e0707f9d802d47bc", "dhash": "968885868ec2378a", "phash_int": -2.2741774973850563e+18, "collected_at": "2026-05-22T04:32:33.577875+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-28-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-28-56 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-28-56 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-28-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1047362.0, "mtime": "2002-09-28T13:28:54+00:00", "mtime_ts": 1033219734.0, "ctime": "2024-12-21T07:57:36.471572+00:00", "sha256_file": "6db6281a590dd1a60f8a2f75d499c43e62d857fc4ce80c6854dec020aed664b1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:28:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4114", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:28:56", "EXIF DateTimeDigitized": "2002:09:28 13:28:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "347", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9827eb4b52d5cf11d360c60681ee77896208752291146ccbd13a9f3ed8ff579c", "phash": "d5d5a82a2a99d4d9", "dhash": "91d8c82c61ecf0f0", "phash_int": -3.0383374745347144e+18, "collected_at": "2026-05-22T04:32:35.301171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-32-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-32-41 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-32-41 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-32-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1845571.0, "mtime": "2003-04-06T15:32:40+00:00", "mtime_ts": 1049643160.0, "ctime": "2024-12-21T07:57:44.571833+00:00", "sha256_file": "a5779e031486434095a497f8a96287f51009564eaeb2a37b9d6e6d4e91d6192a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:32:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4345", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:32:41", "EXIF DateTimeDigitized": "2003:04:06 16:32:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "305", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0aa61516737e26f51bda691185f14219b847529dc531cc48473b0e1a1ad252e9", "phash": "e3ca87c33821d9c7", "dhash": "49494292920a4a0a", "phash_int": -2.0326630092742426e+18, "collected_at": "2026-05-22T04:32:35.337170+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-39-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-39-50 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-39-50 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-39-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2105868.0, "mtime": "2003-11-29T11:39:50+00:00", "mtime_ts": 1070105990.0, "ctime": "2024-12-21T07:57:54.015138+00:00", "sha256_file": "6cf237f8cd22b8e766567553026d840d2cfa67f0eb3406354a731f12ab075a65", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:39:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8458", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:39:50", "EXIF DateTimeDigitized": "2003:11:29 12:39:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2151/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2151"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f6d53bb767173f18b434f929a803ceda2b6b5dc8b762cd1d54b6c204df8eca08", "phash": "e449f0e18b86ff41", "dhash": "8f9fec67c744aca4", "phash_int": -1.9968001082629164e+18, "collected_at": "2026-05-22T04:32:35.805410+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 12-18-24 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 12-18-24 CanonPowerShotS40.jpg", "file_name": "2003-10-25 12-18-24 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 12-18-24 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2345384.0, "mtime": "2003-10-25T11:18:24+00:00", "mtime_ts": 1067080704.0, "ctime": "2024-12-21T07:57:49.062979+00:00", "sha256_file": "a1bc2f24a5ce67867277e81e3577ef57ccd905592fb17c424ee525f82206e325", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 12:18:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4955", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 12:18:24", "EXIF DateTimeDigitized": "2003:10:25 12:18:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "221", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9b7c9af04873b136a3cf8f387f0f97bf8258b12d086650c050390d857c12092f", "phash": "97898081b78ecfd6", "dhash": "d0d8207c3c68e4e8", "phash_int": -7.527344007554347e+18, "collected_at": "2026-05-22T04:32:35.809411+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 20-39-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 20-39-37 CanonPowerShotS40.jpg", "file_name": "2003-02-15 20-39-37 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 20-39-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2132222.0, "mtime": "2003-02-15T19:39:37+00:00", "mtime_ts": 1045337977.0, "ctime": "2024-12-21T07:57:39.000654+00:00", "sha256_file": "e33fae11dd81860736d74eeefdd2dcdf692a9c57464d4b4f2b9a714bdba13b40", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 20:39:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5391", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 20:39:37", "EXIF DateTimeDigitized": "2003:02:15 20:39:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 340, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65419", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3ba1ee02022909ff1736f4e18c662259cdb6127ea77b260bf4e6c119988dab5", "phash": "d0396d6a434766ec", "dhash": "d0b0b4d88cc4c0c0", "phash_int": -3.44260013698532e+18, "collected_at": "2026-05-22T04:32:36.769917+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 14-13-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 14-13-17 CanonPowerShotS40.jpg", "file_name": "2002-09-28 14-13-17 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 14-13-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2001356.0, "mtime": "2002-09-28T14:13:16+00:00", "mtime_ts": 1033222396.0, "ctime": "2024-12-21T07:57:36.627577+00:00", "sha256_file": "7f804326dabf76facbd7b899d5788851259109894639441273bd1a16ce44d7b9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 14:13:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4623", "EXIF ExposureTime": "1/640", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 14:13:17", "EXIF DateTimeDigitized": "2002:09:28 14:13:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6499/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000090", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "330", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6499"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc297ddb8a4008c10b9832c46efae00b3b807a43f2cd12b95a38a1e9ea68a590", "phash": "95f75a002467cf1d", "dhash": "80286a56defaf8f0", "phash_int": -7.640539286153474e+18, "collected_at": "2026-05-22T04:32:36.790919+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 15-25-14 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 15-25-14 CanonPowerShotA40.jpg", "file_name": "2003-02-15 15-25-14 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 15-25-14 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 524595.0, "mtime": "2003-02-15T13:25:12+00:00", "mtime_ts": 1045315512.0, "ctime": "2024-12-21T07:57:38.733645+00:00", "sha256_file": "687c53dc694736491d94efac80d6d5478027f5b0aca9ab2358b035d60839fb47", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 15:25:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5143", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 15:25:14", "EXIF DateTimeDigitized": "2003:02:15 15:25:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181847", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "298", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1551"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9ccbfbf0bc66e8e52b82f0edda5ba29d8bbe83714dcd67f0662611d4134ee85", "phash": "ad901ff3c485c78c", "dhash": "f89ad78787071b27", "phash_int": -5.940212776667068e+18, "collected_at": "2026-05-22T04:32:36.979341+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-04-59 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-04-59 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-04-59 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-04-59 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1208112.0, "mtime": "2003-11-30T12:04:59+00:00", "mtime_ts": 1070193899.0, "ctime": "2024-12-21T07:57:55.634191+00:00", "sha256_file": "398054a46c87619111fe5d22b78a0f1851d2fa698f86d569165646553156962a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:04:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5034", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:04:59", "EXIF DateTimeDigitized": "2003:11:30 13:04:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[76, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000061", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "283faf7813f1af8e86621653f8bf7c41c04595f8704fefc5b840cb438d4b3ae8", "phash": "f29f5d5637311418", "dhash": "8ce9198f8d84c380", "phash_int": -9.639491703594629e+17, "collected_at": "2026-05-22T04:32:37.051160+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-29-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-29-58 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-29-58 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-29-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1523807.0, "mtime": "2002-11-13T08:29:56+00:00", "mtime_ts": 1037176196.0, "ctime": "2024-12-21T07:57:37.104592+00:00", "sha256_file": "abbe7a5a67d501732d7a075be0bd435491db03c04000fc1cdad46dabcf5537ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:29:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2768", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:29:58", "EXIF DateTimeDigitized": "2002:11:13 09:29:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4361046ceb7dbee911e44c174ef6c20ba1738f24f8ee65514d25b0d92bfdbabd", "phash": "9dc240393f3f4fc0", "dhash": "c0c0607e3e763636", "phash_int": -7.079025049654571e+18, "collected_at": "2026-05-22T04:32:37.204249+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-06-26 20-03-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-06-26 20-03-26 CanonPowerShotS40.jpg", "file_name": "2003-06-26 20-03-26 CanonPowerShotS40.jpg", "file_stem": "2003-06-26 20-03-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1711695.0, "mtime": "2003-06-26T19:03:24+00:00", "mtime_ts": 1056654204.0, "ctime": "2024-12-21T07:57:46.544897+00:00", "sha256_file": "de73be0c06e6275639b19c561a9402a9442c65946d8487f97deac50b1ff6720a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:06:26 20:03:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6504", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:06:26 20:03:26", "EXIF DateTimeDigitized": "2003:06:26 20:03:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000051", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "202", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "38393bc2ba3f5abe851464c3b5c0252a71580fa252b7361eca45e74e593442a5", "phash": "c6f179ced170280f", "dhash": "42692cece8e3a998", "phash_int": -4.11137105562854e+18, "collected_at": "2026-05-22T04:32:37.548610+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 12-11-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 12-11-36 CanonPowerShotS40.jpg", "file_name": "2003-03-08 12-11-36 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 12-11-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1545522.0, "mtime": "2003-03-08T11:11:34+00:00", "mtime_ts": 1047121894.0, "ctime": "2024-12-21T07:57:40.708709+00:00", "sha256_file": "4c84dcb908dc277435b8cda46b7300cf895c32b203bc4eb80bd62c739a5d664e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 12:11:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4282", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 12:11:36", "EXIF DateTimeDigitized": "2003:03:08 12:11:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "553/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "110", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "151", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "553"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b3b907dc8a1fe14169e7c58ec400312cd0904ff8cdf2c3f5a0b838aadafbf98", "phash": "f11d8c3262cdc36e", "dhash": "5cb49a8b9d9c16ac", "phash_int": -1.0725469882104045e+18, "collected_at": "2026-05-22T04:32:37.582759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-13-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-13-25 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-13-25 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-13-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1129697.0, "mtime": "2003-12-31T22:13:24+00:00", "mtime_ts": 1072908804.0, "ctime": "2024-12-21T07:57:59.753324+00:00", "sha256_file": "f4440afe23043ae8acfbf2abdf813c679a5ed73d0a732f7f8458a82218db4298", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:13:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6135", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:13:25", "EXIF DateTimeDigitized": "2003:12:31 23:13:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "51", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c531f74b81c878c334ed333fb99b0d0912efeee43eca9136811dd32754264edc", "phash": "dde70a74b24c30ce", "dhash": "2072721a1a9ab2b8", "phash_int": -2.4569835753834947e+18, "collected_at": "2026-05-22T04:32:37.713076+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 00-36-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 00-36-02 CanonPowerShotS40.jpg", "file_name": "2003-12-31 00-36-02 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 00-36-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1291899.0, "mtime": "2003-12-30T23:36:00+00:00", "mtime_ts": 1072827360.0, "ctime": "2024-12-21T07:57:59.221306+00:00", "sha256_file": "bcc22904a37898671153b2fadcb8754642befb1376d82ea6ed1b1435a74b35ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 00:36:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5781", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 00:36:02", "EXIF DateTimeDigitized": "2003:12:31 00:36:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 242, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "93", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "177", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4edab855fcd657de89375b14870766fd7085f25e7c1116bde21c96fb37a5f4d5", "phash": "dd8f32300d62e6d9", "dhash": "ec7060d0f0a49202", "phash_int": -2.4817096876934497e+18, "collected_at": "2026-05-22T04:32:37.766770+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 08-37-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 08-37-25 CanonPowerShotA40.jpg", "file_name": "2003-10-18 08-37-25 CanonPowerShotA40.jpg", "file_stem": "2003-10-18 08-37-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 703271.0, "mtime": "2003-10-18T07:37:25+00:00", "mtime_ts": 1066462645.0, "ctime": "2024-12-21T07:57:48.775969+00:00", "sha256_file": "e00452d00697de95f92d75c6d1cda12e6e808dd53f4a85e791cb02d810f35528", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 08:37:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4032", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:18 08:37:25", "EXIF DateTimeDigitized": "2003:10:18 08:37:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292915", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "133", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2265"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "addb422e07b0f64697f95c5b7aef951e4a0c4eb4b97bcbc753e60a4ae36034bc", "phash": "e40e416c49f7946f", "dhash": "86858484a5a40c80", "phash_int": -2.0136000500347976e+18, "collected_at": "2026-05-22T04:32:37.817418+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-20 16-51-21 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-20 16-51-21 CanonPowerShotA40.jpg", "file_name": "2003-03-20 16-51-21 CanonPowerShotA40.jpg", "file_stem": "2003-03-20 16-51-21 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 483499.0, "mtime": "2003-03-30T10:03:25+00:00", "mtime_ts": 1049018605.0, "ctime": "2024-12-21T07:57:41.892747+00:00", "sha256_file": "f5940c7e5a8783a01a8687ec4f4f9030e9d6063191716766daa1f94fed0d0b7d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:20 16:51:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5522", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:20 16:51:21", "EXIF DateTimeDigitized": "2003:03:20 16:51:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1239, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202012", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "825"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3a7c8081d1fa776cb383c742c39270f37abc34740c90d1890571d470c6cda94", "phash": "8db330f1f2d086ae", "dhash": "8c7362f0f0727336", "phash_int": -8.236185477811501e+18, "collected_at": "2026-05-22T04:32:37.908100+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 17-32-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 17-32-52 CanonPowerShotS40.jpg", "file_name": "2003-11-09 17-32-52 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 17-32-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1738813.0, "mtime": "2003-11-09T16:32:52+00:00", "mtime_ts": 1068395572.0, "ctime": "2024-12-21T07:57:52.412086+00:00", "sha256_file": "8e10949be544a4396300d10e72cc26e06b754e0c368eddac2f3065c1b4265815", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 17:32:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5468", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 17:32:52", "EXIF DateTimeDigitized": "2003:11:09 17:32:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 410, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9bbaa08c2978e30f59769a0e4a806ee21343080007ba0516b63c5d3e4f931bc9", "phash": "91cbe49f30937c83", "dhash": "d0e0c9983a72fa9e", "phash_int": -7.941002145571833e+18, "collected_at": "2026-05-22T04:32:38.000497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-37-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-37-57 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-37-57 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-37-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1885282.0, "mtime": "2003-11-29T11:37:57+00:00", "mtime_ts": 1070105877.0, "ctime": "2024-12-21T07:57:53.933136+00:00", "sha256_file": "b434f8ce3c157370432bf857485c4b64552f6e12c0ae6162f56279bfe0379649", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:37:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8804", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:37:57", "EXIF DateTimeDigitized": "2003:11:29 12:37:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1157/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "27", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1157"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "403d292b5cb78138ca52faac232a0c604b8927491ad7e924c260f76800e01bf3", "phash": "c436f9708dce3323", "dhash": "070e6f66c384a3d2", "phash_int": -4.307981731722546e+18, "collected_at": "2026-05-22T04:32:38.041497+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-31 15-26-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-31 15-26-42 CanonPowerShotS40.jpg", "file_name": "2003-10-31 15-26-42 CanonPowerShotS40.jpg", "file_stem": "2003-10-31 15-26-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1497249.0, "mtime": "2003-10-31T14:26:42+00:00", "mtime_ts": 1067610402.0, "ctime": "2024-12-21T07:57:50.254017+00:00", "sha256_file": "bdaa6e2a129b89512f8d622e0fd466c759a77333154d5a75ab4a3c49b01ed984", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:31 15:26:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4473", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:31 15:26:42", "EXIF DateTimeDigitized": "2003:10:31 15:26:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "122/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "976"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6eab9a279e55abdbd6f314f2ab8d3f5c71f64589e46f035211027ff43f4a117", "phash": "989872ab2d659ab6", "dhash": "b1b930726a79b498", "phash_int": -7.451079503957878e+18, "collected_at": "2026-05-22T04:32:38.155235+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-04-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-04-06 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-04-06 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-04-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1279732.0, "mtime": "2003-11-30T12:04:06+00:00", "mtime_ts": 1070193846.0, "ctime": "2024-12-21T07:57:55.598189+00:00", "sha256_file": "af9ef58ded094d7a188c116ceced1b43f20b5a98ccbaf9e4ad61bd9088c1886c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:04:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5098", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:04:06", "EXIF DateTimeDigitized": "2003:11:30 13:04:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[82, 274, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb64135752981a8928a212e2dc19495771ac9f9e005212a01ac602001e340cfa", "phash": "97606a957833ed1c", "dhash": "c3e4e4587cec6ce1", "phash_int": -7.53890858601887e+18, "collected_at": "2026-05-22T04:32:38.180235+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 17-59-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 17-59-04 CanonPowerShotS40.jpg", "file_name": "2003-11-02 17-59-04 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 17-59-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1754632.0, "mtime": "2003-11-02T16:59:04+00:00", "mtime_ts": 1067792344.0, "ctime": "2024-12-21T07:57:51.278050+00:00", "sha256_file": "03e6d2650983d5bbfeb0271b2e7ec9e3fbacf1aee62a68c4c8f6104988558006", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 17:59:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5491", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 17:59:04", "EXIF DateTimeDigitized": "2003:11:02 17:59:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65438", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c89c3b09906c54b799e54c1c3b24d94a52864c523207eb8f01647848693e2a49", "phash": "c3b6c45973642bb4", "dhash": "f8f8cf4d59d1a0c0", "phash_int": -4.3440689020851866e+18, "collected_at": "2026-05-22T04:32:38.400244+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-16 11-21-48 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-16 11-21-48 CanonPowerShotS40.jpg", "file_name": "2003-03-16 11-21-48 CanonPowerShotS40.jpg", "file_stem": "2003-03-16 11-21-48 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2253903.0, "mtime": "2003-03-19T09:56:48+00:00", "mtime_ts": 1048067808.0, "ctime": "2024-12-21T07:57:41.618738+00:00", "sha256_file": "7f745ddc821dee9311bcf544ba08cacb4c5e961d13066d2ac2bf421054063b0e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:16 11:21:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "6822", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:03:16 11:21:48", "EXIF DateTimeDigitized": "2003:03:16 11:21:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "577d1dc4e4dc480f4ce7e3700866894198780c8f0bc8a799087f171f35909409", "phash": "bc8063d32de2d4e3", "dhash": "b6adb537363c3c76", "phash_int": -4.863777838901046e+18, "collected_at": "2026-05-22T04:32:38.402244+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-21-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-21-19 CanonPowerShotS40.jpg", "file_name": "2003-11-01 11-21-19 CanonPowerShotS40.jpg", "file_stem": "2003-11-01 11-21-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1945912.0, "mtime": "2003-11-01T10:21:19+00:00", "mtime_ts": 1067682079.0, "ctime": "2024-12-21T07:57:50.753033+00:00", "sha256_file": "45841d45c5497a5666270be2e94eb11ed25f8c2ca99b8e1aeae3f1116831bd97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:21:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4444", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:01 11:21:19", "EXIF DateTimeDigitized": "2003:11:01 11:21:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "733/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "59", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1466"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a25436e52d07dd838b25687a0a8493ba0cac5a1f98a5555fd842aa1ea9c1e59", "phash": "bdf0c30d7c29946c", "dhash": "8ccc96363373736a", "phash_int": -4.760090343445523e+18, "collected_at": "2026-05-22T04:32:38.618251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-05 10-53-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-05 10-53-33 CanonPowerShotS40.jpg", "file_name": "2003-09-05 10-53-33 CanonPowerShotS40.jpg", "file_stem": "2003-09-05 10-53-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1718793.0, "mtime": "2003-09-05T08:53:33+00:00", "mtime_ts": 1062752013.0, "ctime": "2024-12-21T07:57:47.018912+00:00", "sha256_file": "b952ac0006b80a757d511efecf7fb67b67d4d58ba803b2293856e0229221b620", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:05 10:53:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6319", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:05 10:53:33", "EXIF DateTimeDigitized": "2003:09:05 10:53:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "78d1d7b803da9e78666dfc50efe1c90c23c2a44b9fd276e732297064869bbab5", "phash": "cc3f4fd058562317", "dhash": "707347ad95a7e7e3", "phash_int": -3.729174210185649e+18, "collected_at": "2026-05-22T04:32:38.621251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-27 20-53-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-27 20-53-02 CanonPowerShotS40.jpg", "file_name": "2003-10-27 20-53-02 CanonPowerShotS40.jpg", "file_stem": "2003-10-27 20-53-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1514054.0, "mtime": "2003-10-27T19:53:02+00:00", "mtime_ts": 1067284382.0, "ctime": "2024-12-21T07:57:49.616996+00:00", "sha256_file": "4b6f712d1df994f361350150a9d43ca550594e050256555e3449866a20e85eac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:27 20:53:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4620", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:27 20:53:02", "EXIF DateTimeDigitized": "2003:10:27 20:53:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "687/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "687"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b3c843392a782352b6918fd1f7f4a24c606a67f17c9a635baacc359f2205bab", "phash": "c579923a1b4e4d8e", "dhash": "3c94c64a8b66eccc", "phash_int": -4.217178797791884e+18, "collected_at": "2026-05-22T04:32:38.873848+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-26-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-26-08 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-26-08 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-26-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1612420.0, "mtime": "2002-09-28T13:26:06+00:00", "mtime_ts": 1033219566.0, "ctime": "2024-12-21T07:57:36.395569+00:00", "sha256_file": "7e039635bb9eafdb57af5925e6ea8efaab70a49ecbeadf5d06e9e9ca8c11805c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:26:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4282", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:26:08", "EXIF DateTimeDigitized": "2002:09:28 13:26:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bbf44d27b0c77db4ef1c1454907828a5a9ea4afe2c84a3f017805ecaae9da15e", "phash": "e478d14c39c3073f", "dhash": "9216068e36e684c0", "phash_int": -1.9836055105399012e+18, "collected_at": "2026-05-22T04:32:38.876845+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 02-01-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 02-01-40 CanonPowerShotS40.jpg", "file_name": "2004-01-01 02-01-40 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 02-01-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 284197.0, "mtime": "2004-01-01T01:01:38+00:00", "mtime_ts": 1072918898.0, "ctime": "2024-12-21T07:58:00.082334+00:00", "sha256_file": "cefd90cb5b4c909117c91c206a66a705a01709aad5ee673fdcdd365d93d44c04", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 02:01:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4087", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 02:01:40", "EXIF DateTimeDigitized": "2004:01:01 02:01:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "230", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "117f6f634f35121a4b05892438910306629bb992d4a920c974483eb08731169c", "phash": "d5ddd1c167226a2a", "dhash": "023234764691cd49", "phash_int": -3.0360399451886444e+18, "collected_at": "2026-05-22T04:32:39.020216+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-32-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-32-11 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-32-11 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-32-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1665658.0, "mtime": "2003-11-09T00:32:11+00:00", "mtime_ts": 1068337931.0, "ctime": "2024-12-21T07:57:52.000073+00:00", "sha256_file": "a1be129b49a279f3ea761a9c26b268247d81177a1265cf83b57f9b48a9c878d6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:32:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4760", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:32:11", "EXIF DateTimeDigitized": "2003:11:09 01:32:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ce623fd92adea920bbc9c0568ff34ec2b45b5dc27fc670c48c47d52640e22aee", "phash": "def041e03c9e54b3", "dhash": "c4d02839a4e0e160", "phash_int": -2.3823317715335035e+18, "collected_at": "2026-05-22T04:32:39.086225+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-03-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-03-54 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-03-54 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-03-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1665723.0, "mtime": "2003-12-21T14:03:52+00:00", "mtime_ts": 1072015432.0, "ctime": "2024-12-21T07:57:56.752227+00:00", "sha256_file": "a27630d7966cb423af069f834cca6f3d788dfc3921cc221c46ae8226378c89be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:03:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6100", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:03:54", "EXIF DateTimeDigitized": "2003:12:21 15:03:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[53, 212, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6249e5c0c25874696bd70ff883bc90765203c73197fcd39aa67fc49b068ea5a", "phash": "f9f427638836231b", "dhash": "1230183010181830", "phash_int": -4.3567995550760064e+17, "collected_at": "2026-05-22T04:32:39.250658+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-45-31 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-45-31 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-45-31 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-45-31 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 351712.0, "mtime": "2003-11-01T00:45:31+00:00", "mtime_ts": 1067647531.0, "ctime": "2024-12-21T07:57:50.407022+00:00", "sha256_file": "166271254ec8339a3395fdb359a9c9bf85922fe809c7f9f86347896a4ed7de63", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:45:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3925", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:45:31", "EXIF DateTimeDigitized": "2003:11:01 01:45:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 486, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292932", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1989"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75ea9c772646c5f10d23b313b319a3199933fe05427decfbe790bc05eb9eea68", "phash": "fd489f6264b144e9", "dhash": "10121616545e5e56", "phash_int": -1.9573133884566608e+17, "collected_at": "2026-05-22T04:32:39.310325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 14-00-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 14-00-32 CanonPowerShotS40.jpg", "file_name": "2003-03-30 14-00-32 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 14-00-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2400807.0, "mtime": "2003-03-30T13:00:30+00:00", "mtime_ts": 1049029230.0, "ctime": "2024-12-21T07:57:43.188789+00:00", "sha256_file": "cd03735b1833d040884f800ab74f0d3a014b8773ae6a05fc0f415a2b7a980ccd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 14:00:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6609", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 14:00:32", "EXIF DateTimeDigitized": "2003:03:30 14:00:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "224", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "02d7be87e9acb4c34a6e016d2a4deca1143a88168662595a3ba2d908ea30fc3d", "phash": "9e9e6a6e613074c6", "dhash": "6d697c7072473939", "phash_int": -7.017054147087142e+18, "collected_at": "2026-05-22T04:32:39.593382+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-23 15-03-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-23 15-03-18 CanonPowerShotS40.jpg", "file_name": "2003-03-23 15-03-18 CanonPowerShotS40.jpg", "file_stem": "2003-03-23 15-03-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2864853.0, "mtime": "2003-03-23T14:03:16+00:00", "mtime_ts": 1048428196.0, "ctime": "2024-12-21T07:57:42.038752+00:00", "sha256_file": "aa9e9e746eb0546477754a8c60ca0cb1bd3fc4672471d631e1f16e90dd5ef8fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:23 15:03:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7810", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:23 15:03:18", "EXIF DateTimeDigitized": "2003:03:23 15:03:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2393/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4786"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2d109f62584fe21b6a847ee28fbcdfe2b4771ee1c37149d751bf106cd424089", "phash": "dcaca6c3651a9ad8", "dhash": "aa2630321218a82c", "phash_int": -2.545476331226097e+18, "collected_at": "2026-05-22T04:32:39.688598+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 21-21-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 21-21-17 CanonPowerShotS40.jpg", "file_name": "2003-12-27 21-21-17 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 21-21-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1825306.0, "mtime": "2003-12-27T20:21:16+00:00", "mtime_ts": 1072556476.0, "ctime": "2024-12-21T07:57:58.409280+00:00", "sha256_file": "f0ac503699651acaae698bcd98cd1c380b43521ed65a6ed83677f60da2868f13", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 21:21:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7678", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 21:21:17", "EXIF DateTimeDigitized": "2003:12:27 21:21:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "310", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b3acd0b551978a63b35d50a6e662b05a99708e0aac3aabc74c6895459ca1c810", "phash": "80b8e6aff5c61616", "dhash": "ae3af4d058d1c5cc", "phash_int": -9.17132699772295e+18, "collected_at": "2026-05-22T04:32:39.871781+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-28 23-13-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-28 23-13-56 CanonPowerShotS40.jpg", "file_name": "2003-03-28 23-13-56 CanonPowerShotS40.jpg", "file_stem": "2003-03-28 23-13-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2087151.0, "mtime": "2003-03-30T09:43:07+00:00", "mtime_ts": 1049017387.0, "ctime": "2024-12-21T07:57:42.280759+00:00", "sha256_file": "345434c11363c443edf4a1da8a86ebba57da3e2c6b4645aa840d19f282368906", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:28 23:13:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6860", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:28 23:13:56", "EXIF DateTimeDigitized": "2003:03:28 23:13:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0bedcab97a936dea61199567daac2371601c521b626bf923b0f0333eedfa8377", "phash": "e7330f36e043e899", "dhash": "cc4dd5c494a76292", "phash_int": -1.7870678987707574e+18, "collected_at": "2026-05-22T04:32:40.000939+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-55-48 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-55-48 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-55-48 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-55-48 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 480966.0, "mtime": "2003-11-29T11:55:48+00:00", "mtime_ts": 1070106948.0, "ctime": "2024-12-21T07:57:54.133142+00:00", "sha256_file": "adaba5d2f049b0ec7493f3e552cbc3e62792abb5c879a32fbf21bfd9acc2a957", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:55:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5701", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:55:48", "EXIF DateTimeDigitized": "2003:11:29 12:55:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303004", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "79", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "857"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a112e5deec322b541d7c14b48afb765fead3cc6e1d8ac8fa5bb295fefeff5b58", "phash": "9a0a439cff25236d", "dhash": "7d39b939393cb49e", "phash_int": -7.34698550052696e+18, "collected_at": "2026-05-22T04:32:40.080070+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-21 13-12-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-21 13-12-54 CanonPowerShotS40.jpg", "file_name": "2003-10-21 13-12-54 CanonPowerShotS40.jpg", "file_stem": "2003-10-21 13-12-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1951491.0, "mtime": "2003-10-21T12:12:54+00:00", "mtime_ts": 1066738374.0, "ctime": "2024-12-21T07:57:48.874972+00:00", "sha256_file": "21fb3ed45e7889fc99b8847cc664ab88d55d8f90129e6f7e2ba86858dc83c0e9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:21 13:12:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5292", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:21 13:12:54", "EXIF DateTimeDigitized": "2003:10:21 13:12:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "16", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0d23b2900ca2c65670c0ca885d8d24302a22aacc367d9a0e4b9513d27fc7d11d", "phash": "d2f2452cb2b4839f", "dhash": "8889581c18b232e2", "phash_int": -3.246456323101654e+18, "collected_at": "2026-05-22T04:32:40.232228+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-17 18-36-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-17 18-36-00 CanonPowerShotA40.jpg", "file_name": "2003-10-17 18-36-00 CanonPowerShotA40.jpg", "file_stem": "2003-10-17 18-36-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 447153.0, "mtime": "2003-10-17T17:36:00+00:00", "mtime_ts": 1066412160.0, "ctime": "2024-12-21T07:57:48.718967+00:00", "sha256_file": "7ef061bfb4028618a385c3e60f30253e867ecc13061e6581eac5099832db92c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:17 18:36:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4111", "EXIF ExposureTime": "1/200", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:17 18:36:00", "EXIF DateTimeDigitized": "2003:10:17 18:36:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292907", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2041"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61ce84841beb1d1ac7695f5fa4376fa898deba96f21b0c416298287c54a4388c", "phash": "baaa69168729b653", "dhash": "1d919d85ccbc9125", "phash_int": -4.996065291136289e+18, "collected_at": "2026-05-22T04:32:40.268569+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-41-23 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-41-23 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-41-23 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-41-23 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 339854.0, "mtime": "2003-04-05T15:41:22+00:00", "mtime_ts": 1049557282.0, "ctime": "2024-12-21T07:57:43.930813+00:00", "sha256_file": "1a67dac6068c2e5f0e48bcf04f230759b42ceedb3b67e8575ec6c44be3a33c56", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:41:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4886", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:41:23", "EXIF DateTimeDigitized": "2003:04:05 16:41:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "363/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "24", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "363"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "86d0be5e2fe481ba1a5fa5883330b6c06ec87363a64853f781873e2fe291b1a6", "phash": "d09e5f60386749c7", "dhash": "987860889890c291", "phash_int": -3.414186600632465e+18, "collected_at": "2026-05-22T04:32:40.398929+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 16-10-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 16-10-40 CanonPowerShotS40.jpg", "file_name": "2003-11-07 16-10-40 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 16-10-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1228070.0, "mtime": "2003-11-07T15:10:40+00:00", "mtime_ts": 1068217840.0, "ctime": "2024-12-21T07:57:51.892070+00:00", "sha256_file": "8baf80272449177983dcb9341e86b535f63823757a131d33201eccaac67da9ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 16:10:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2989", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 16:10:40", "EXIF DateTimeDigitized": "2003:11:07 16:10:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0cc681a9375cc2119634dba85ad29f08fdb55252dc0145ae9139d349c13f7c2f", "phash": "95966a257a6a9768", "dhash": "3afcdcfcfcccc71b", "phash_int": -7.66782460635155e+18, "collected_at": "2026-05-22T04:32:40.544690+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 17-08-24 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 17-08-24 CanonPowerShotS40.jpg", "file_name": "2003-12-27 17-08-24 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 17-08-24 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2666956.0, "mtime": "2003-12-27T16:08:22+00:00", "mtime_ts": 1072541302.0, "ctime": "2024-12-21T07:57:57.993267+00:00", "sha256_file": "286c9dde84169f6ce02dbae2de8ddbec12c20b03938ac891cd88bc0aaa47b6c2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 17:08:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6298", "EXIF ExposureTime": "1/25", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 17:08:24", "EXIF DateTimeDigitized": "2003:12:27 17:08:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9d34c6ce100231e1fc4600e342a7dcd2dda585fd21f3974a65e3e554472c75e", "phash": "e529a270d976ccc3", "dhash": "8b8b473232a68c08", "phash_int": -1.933835959410439e+18, "collected_at": "2026-05-22T04:32:40.709211+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 14-48-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 14-48-56 CanonPowerShotS40.jpg", "file_name": "2003-04-29 14-48-56 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 14-48-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2236208.0, "mtime": "2003-04-29T13:48:54+00:00", "mtime_ts": 1051624134.0, "ctime": "2024-12-21T07:57:46.075882+00:00", "sha256_file": "c9f7b9f8b48b92ed21bbeed41bc73feb514507f753bd5f8ef694e216d84fd07e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 14:48:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7730", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 14:48:56", "EXIF DateTimeDigitized": "2003:04:29 14:48:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "287", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "592f006a98d86da7a1d9b66dde19a1c163d627aabbf06ed2d27eee355ef2c2b2", "phash": "959f193a7ae1114e", "dhash": "7878624a2cac86e0", "phash_int": -7.665380301800927e+18, "collected_at": "2026-05-22T04:32:40.739498+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 01-38-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 01-38-52 CanonPowerShotS40.jpg", "file_name": "2004-01-01 01-38-52 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 01-38-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 425957.0, "mtime": "2004-01-01T00:38:50+00:00", "mtime_ts": 1072917530.0, "ctime": "2024-12-21T07:58:00.074334+00:00", "sha256_file": "ddc6c1e3e1b81d2ac835f923fa164057e843dc6c61442303d2341e228f854f87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 01:38:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7393", "EXIF ExposureTime": "1/200", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 01:38:52", "EXIF DateTimeDigitized": "2004:01:01 01:38:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "113", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "819f8ccbd1eb40d208249d7dc319bebb64b2824917d6720375f829b166850c14", "phash": "fc0772dea0614f94", "dhash": "756575333230309a", "phash_int": -2.8613375081569904e+17, "collected_at": "2026-05-22T04:32:40.916012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-24-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-24-11 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-24-11 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-24-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1757154.0, "mtime": "2003-09-16T11:24:11+00:00", "mtime_ts": 1063711451.0, "ctime": "2024-12-21T07:57:47.772937+00:00", "sha256_file": "c2f22e5b496b0a8a2828bee3e808e47897e1480f6dff10315d31618535c75a52", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:24:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5024", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:24:11", "EXIF DateTimeDigitized": "2003:09:16 13:24:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "296", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0104fce80e1fbac19d0852e68d2da01c8ae1ab537f6f99973563ea9a52db55f2", "phash": "afa1d4c28a5f8b0d", "dhash": "cd8e177b5b4d6e2e", "phash_int": -5.791113713811486e+18, "collected_at": "2026-05-22T04:32:40.989014+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-57-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-57-50 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-57-50 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-57-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1540347.0, "mtime": "2003-04-05T12:57:48+00:00", "mtime_ts": 1049547468.0, "ctime": "2024-12-21T07:57:43.762807+00:00", "sha256_file": "1a2a6afbb95c727e07d2f6f67963f9731d6f15075cbad0a3712238158370b091", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:57:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5722", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:57:50", "EXIF DateTimeDigitized": "2003:04:05 13:57:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "302", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4995dd2fb2ed965de3865765cf64dd8359faa837bf4cea139ae07b978c55659", "phash": "e5f29a1a5ae52712", "dhash": "a0318e4761e2c251", "phash_int": -1.8772686566752812e+18, "collected_at": "2026-05-22T04:32:41.209524+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-17-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-17-33 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-17-33 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-17-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1316590.0, "mtime": "2002-09-28T13:17:32+00:00", "mtime_ts": 1033219052.0, "ctime": "2024-12-21T07:57:36.071559+00:00", "sha256_file": "80f5351c6a42a2c84bb0683d7d80ed9de30dd3005d0190897ed2bde7f03f9bfd", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:17:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3081", "EXIF ExposureTime": "1/15", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:17:33", "EXIF DateTimeDigitized": "2002:09:28 13:17:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "125/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[115, 153, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "124", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "125", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "201", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cfeab7103cb479949853679ed555d6a4c279e20831bdc2116f5d6761e9dd40fc", "phash": "fc8f5285944ba55a", "dhash": "3c232336262609ac", "phash_int": -2.4788872080997443e+17, "collected_at": "2026-05-22T04:32:41.290364+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 12-18-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 12-18-13 CanonPowerShotS40.jpg", "file_name": "2003-10-25 12-18-13 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 12-18-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1935788.0, "mtime": "2003-10-25T11:18:13+00:00", "mtime_ts": 1067080693.0, "ctime": "2024-12-21T07:57:49.040978+00:00", "sha256_file": "e760ed2fdabbd78acf36a8758b50480212ce4dea5486b2b9a53f864220ec8325", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 12:18:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3631", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 12:18:13", "EXIF DateTimeDigitized": "2003:10:25 12:18:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79f070ec1efea5a56c90729527772e33c70bc78c5907f5622a95da17dd9c3e73", "phash": "d5d4ad02717fd0a8", "dhash": "b0f0b00090e060b2", "phash_int": -3.0386136225625006e+18, "collected_at": "2026-05-22T04:32:42.671231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-02-18 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-02-18 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-02-18 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-02-18 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 531800.0, "mtime": "2003-11-29T12:02:18+00:00", "mtime_ts": 1070107338.0, "ctime": "2024-12-21T07:57:54.316148+00:00", "sha256_file": "7a6ee4e6166556f63b97a17ac3de275786c79fd6c81d58dd2c4aaba129ca2fab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:02:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5490", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:02:18", "EXIF DateTimeDigitized": "2003:11:29 13:02:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1012, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303023", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "85", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "20322"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99356d559a366e5f5d32306708b006e77f074d807ef6837accd21447fc761be5", "phash": "9ca262ed46e5ad29", "dhash": "e37dba3832323624", "phash_int": -7.160051686329439e+18, "collected_at": "2026-05-22T04:32:42.675231+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-17-17 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-17-17 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-17-17 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-17-17 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 487717.0, "mtime": "2003-02-16T08:17:18+00:00", "mtime_ts": 1045383438.0, "ctime": "2024-12-21T07:57:37.624609+00:00", "sha256_file": "745dfddccd33be5a2a7f31077da147fcb0a25110bc35f85306ee907f75c4ee1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:17:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1372", "Thumbnail JPEGInterchangeFormatLength": "7901", "EXIF ExposureTime": "1/80", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:17:17", "EXIF DateTimeDigitized": "2003:02:01 14:17:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 43, 0, 0, 0, 180, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1200", "Interoperability RelatedImageLength": "1600", "EXIF InteroperabilityOffset": "1200", "EXIF FocalPlaneXResolution": "240000/31", "EXIF FocalPlaneYResolution": "800000/103", "EXIF FocalPlaneResolutionUnit": "2", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1161622", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "158", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a020f7bf5f9bb6befc450ab3a07c2cb795dc6375ed8e397b1b0946ce73ca2204", "phash": "bd43171ae8b6c436", "dhash": "4c4a060f373b3f37", "phash_int": -4.808974572760677e+18, "collected_at": "2026-05-22T04:32:43.434642+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-24 08-13-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-24 08-13-44 CanonPowerShotS40.jpg", "file_name": "2003-03-24 08-13-44 CanonPowerShotS40.jpg", "file_stem": "2003-03-24 08-13-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1810916.0, "mtime": "2003-03-24T07:13:42+00:00", "mtime_ts": 1048490022.0, "ctime": "2024-12-21T07:57:42.179756+00:00", "sha256_file": "081ace7cb87c83e22543600cecdf6d569ff931dcf1f00c200ae1ac6aa260d9f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:24 08:13:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4693", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:24 08:13:44", "EXIF DateTimeDigitized": "2003:03:24 08:13:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1877/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1877"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d0c560694e6cba64acad8b25e999faa358d84f35defb9121c079ec6cd4f7d810", "phash": "e6d661b89759181d", "dhash": "adecec696c1713cf", "phash_int": -1.8131543545289708e+18, "collected_at": "2026-05-22T04:32:43.695266+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 15-44-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 15-44-01 CanonPowerShotS40.jpg", "file_name": "2003-04-29 15-44-01 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 15-44-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1541970.0, "mtime": "2003-04-29T14:44:00+00:00", "mtime_ts": 1051627440.0, "ctime": "2024-12-21T07:57:46.263888+00:00", "sha256_file": "64a84ca1420deb906174ca17fa7eec0b3d54971a449bf9ccb0f44ecb3dfde760", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 15:44:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4749", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 15:44:01", "EXIF DateTimeDigitized": "2003:04:29 15:44:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65474", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "147", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4ebd3fa66293a49eded66186af5c72f80431b69a9cfd95ed1cba2c30b9bd821", "phash": "8983674c3ef2750e", "dhash": "c3d3d3d1f3b2ea72", "phash_int": -8.537866891393076e+18, "collected_at": "2026-05-22T04:32:44.534904+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-19-49 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-19-49 CanonPowerShotA40.jpg", "file_name": "2003-02-15 14-19-49 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 14-19-49 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 752697.0, "mtime": "2003-02-15T12:19:48+00:00", "mtime_ts": 1045311588.0, "ctime": "2024-12-21T07:57:38.513638+00:00", "sha256_file": "0805a62d0a905e747416fa7d8ebddbbd7d9840f3fe5353402481a6d6b7f75d85", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:19:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5615", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 14:19:49", "EXIF DateTimeDigitized": "2003:02:15 14:19:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181822", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "229", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2221"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f466704092362f790ead0110761a55e3393c1355270ae4c912aa78f9634f8456", "phash": "fc99c3219dc608e7", "dhash": "d2d6243036150d65", "phash_int": -2.4495015556664298e+17, "collected_at": "2026-05-22T04:32:44.603236+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-36-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-36-09 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-36-09 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-36-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1194618.0, "mtime": "2003-11-02T08:36:09+00:00", "mtime_ts": 1067762169.0, "ctime": "2024-12-21T07:57:51.104044+00:00", "sha256_file": "ba347db053c44be67390b068085a0afcfd3e0ed67bfc88dbe95a61348160715e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:36:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3767", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:36:09", "EXIF DateTimeDigitized": "2003:11:02 09:36:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "679/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65534", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "204", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1358"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9874d7e91fb130419873fd841cc8c7eb063f00b278cc5b86d862662dbe098036", "phash": "d55b6b448e6ba194", "dhash": "51d8d4646486b4e2", "phash_int": -3.072744378558865e+18, "collected_at": "2026-05-22T04:32:45.038835+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 01-13-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 01-13-14 CanonPowerShotS40.jpg", "file_name": "2004-01-01 01-13-14 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 01-13-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 733434.0, "mtime": "2004-01-01T00:13:12+00:00", "mtime_ts": 1072915992.0, "ctime": "2024-12-21T07:58:00.007332+00:00", "sha256_file": "27a79b01ffac1f680c79ce8972088f3304a6aa2333974b15e4824854245a64f9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 01:13:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4319", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 01:13:14", "EXIF DateTimeDigitized": "2004:01:01 01:13:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65481", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7b3ce0363b9b8bebb0a976b2c0ebe80e98a1d28c1a04242e11f5e74dd7dfc1c", "phash": "953fb14cc3505a6e", "dhash": "2a3e3bea62a0b6da", "phash_int": -7.692234695273063e+18, "collected_at": "2026-05-22T04:32:45.780340+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-23-47 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-23-47 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-23-47 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-23-47 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1746890.0, "mtime": "2002-12-01T11:30:18+00:00", "mtime_ts": 1038742218.0, "ctime": "2024-12-21T07:57:37.360600+00:00", "sha256_file": "5fced46555da8de6c3d9bb3b9e85e624ad0ca2c26551e1a492530dfcf2c36ac1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:23:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3671", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:23:47", "EXIF DateTimeDigitized": "2002:11:28 17:23:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 270, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd1bc707fb2393fcc04ab65e94e9092fa99a22e8299a56dca312ded9dff3ee86", "phash": "c1dc7f8a346b942a", "dhash": "e2c2d0c8ecc8cbc6", "phash_int": -4.477563697951436e+18, "collected_at": "2026-05-22T04:32:46.695038+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 12-08-01 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 12-08-01 CanonPowerShotA40.jpg", "file_name": "2003-02-23 12-08-01 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 12-08-01 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 553939.0, "mtime": "2003-02-23T10:08:00+00:00", "mtime_ts": 1045994880.0, "ctime": "2024-12-21T07:57:39.795679+00:00", "sha256_file": "54fd2ec0cc8e596a41d9e1ff51ac2302d7df4062812e538b33dfff06e46f45ef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 12:08:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4662", "EXIF ExposureTime": "1/200", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 12:08:01", "EXIF DateTimeDigitized": "2003:02:23 12:08:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191904", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "314", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "10036"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b390fc226816629c1e1cd04ab7f1bb52c97177b1952c871401fc61b02776a699", "phash": "c5dbb7c53106a439", "dhash": "e870c5c0a3e2e0ad", "phash_int": -4.1895529707791555e+18, "collected_at": "2026-05-22T04:32:46.870418+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 14-55-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 14-55-00 CanonPowerShotS40.jpg", "file_name": "2003-04-29 14-55-00 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 14-55-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1875637.0, "mtime": "2003-04-29T13:54:58+00:00", "mtime_ts": 1051624498.0, "ctime": "2024-12-21T07:57:46.145884+00:00", "sha256_file": "f4291af15490ce8146ccd22127d49ce08c01b732de65b1d4aef69f7e391deba3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 14:55:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6603", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 14:55:00", "EXIF DateTimeDigitized": "2003:04:29 14:55:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2d33c2aa68145a2c753a06facf939a7dcc60844c584df0c694bd3a3094d8b289", "phash": "a455d52e6ad107ce", "dhash": "e6866e1b236fdeb8", "phash_int": -6.605138883131668e+18, "collected_at": "2026-05-22T04:32:47.087843+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 18-59-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 18-59-27 CanonPowerShotS40.jpg", "file_name": "2003-10-08 18-59-27 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 18-59-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1976179.0, "mtime": "2003-10-09T06:48:17+00:00", "mtime_ts": 1065682097.0, "ctime": "2024-12-21T07:57:48.430958+00:00", "sha256_file": "1f39b1c0bb823dbcde0c65b694927e0869e6f3a5a5cc629fa64c3cb4258640e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 18:59:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6408", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 18:59:27", "EXIF DateTimeDigitized": "2003:10:08 18:59:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "24", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f5ed3e0ec4661d7ae0d52ba657cfc20f2c3e76c1d81f883f9fb34bc33cd502ca", "phash": "aaca55cac96aadd0", "dhash": "e3cc4763cde7919a", "phash_int": -6.140000812515284e+18, "collected_at": "2026-05-22T04:32:47.147951+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 17-55-43 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 17-55-43 CanonPowerShotA40.jpg", "file_name": "2003-03-06 17-55-43 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 17-55-43 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 421130.0, "mtime": "2003-03-30T10:01:23+00:00", "mtime_ts": 1049018483.0, "ctime": "2024-12-21T07:57:40.147691+00:00", "sha256_file": "b648ff46441d92af8948d611f72f8aada05dbc7082bd06a88a2c53c987e6677b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 17:55:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4822", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 17:55:43", "EXIF DateTimeDigitized": "2003:03:06 17:55:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 72, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191928", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "121", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3045"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "db58095cd2b118cde05b3205d7ca4bf5426e2af6d43715c518468a0400c52ffa", "phash": "d58eace88e7343d0", "dhash": "78766878181a1814", "phash_int": -3.058316982115679e+18, "collected_at": "2026-05-22T04:32:47.696801+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-40-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-40-12 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-40-12 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-40-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 376937.0, "mtime": "2003-04-05T15:40:10+00:00", "mtime_ts": 1049557210.0, "ctime": "2024-12-21T07:57:43.893811+00:00", "sha256_file": "ff56cb1aa4ef7dd43df0ea7c126a1088d0cc326e12a557602c4be6d6c1ed856c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:40:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5491", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:40:12", "EXIF DateTimeDigitized": "2003:04:05 16:40:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b390250f8600da44efbd18f54fe5baf5daa25addec8f2d7a36546b5b16b9794", "phash": "e3e2395386246bcb", "dhash": "c98b87e5c0429697", "phash_int": -2.0259938514676992e+18, "collected_at": "2026-05-22T04:32:47.888950+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-01 12-50-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-01 12-50-04 CanonPowerShotS40.jpg", "file_name": "2003-09-01 12-50-04 CanonPowerShotS40.jpg", "file_stem": "2003-09-01 12-50-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1880767.0, "mtime": "2003-09-01T10:50:04+00:00", "mtime_ts": 1062413404.0, "ctime": "2024-12-21T07:57:46.911909+00:00", "sha256_file": "70e30e19769b0b81d0433c51fe3953316f6ea88ac80daeb625fd99efeb7220ce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:01 12:50:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5403", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:01 12:50:04", "EXIF DateTimeDigitized": "2003:09:01 12:50:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[88, 250, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "144", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d38ce5b5545c704dd145b3d55d936756cf4e517a34080830ff154ff5af521bb", "phash": "b89986774a7271d1", "dhash": "f4f09b3b3b1e54f1", "phash_int": -5.144933252385837e+18, "collected_at": "2026-05-22T04:32:48.177214+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-23 14-25-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-23 14-25-46 CanonPowerShotS40.jpg", "file_name": "2003-12-23 14-25-46 CanonPowerShotS40.jpg", "file_stem": "2003-12-23 14-25-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1641967.0, "mtime": "2003-12-23T13:25:44+00:00", "mtime_ts": 1072185944.0, "ctime": "2024-12-21T07:57:57.539252+00:00", "sha256_file": "11811636fae46d21458ea1eeb7daf8b7e1b66848b7a0549cd04094394e5c0d66", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:23 14:25:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5081", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:23 14:25:46", "EXIF DateTimeDigitized": "2003:12:23 14:25:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[24, 240, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "12", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "63", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9e69eb49a2da6f307b6632c005b401fa1c47183fa7b96065dc2d7cffcb98ceb2", "phash": "d0d6cd56312fc139", "dhash": "c4f4d4dc9cd47498", "phash_int": -3.3983030987283656e+18, "collected_at": "2026-05-22T04:32:48.238993+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-32-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-32-26 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-32-26 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-32-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1636366.0, "mtime": "2003-11-09T00:32:26+00:00", "mtime_ts": 1068337946.0, "ctime": "2024-12-21T07:57:52.030074+00:00", "sha256_file": "e5646b37e50c3e337007729d396ec1b508a6e055e829fec1ba634c165864d06d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:32:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4456", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:32:26", "EXIF DateTimeDigitized": "2003:11:09 01:32:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "457/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "914"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "995135764a2b4c40dd304afc49f61b3edd30ca89d8abda24f4d7b6a2c0547a0d", "phash": "b5e56e4727237830", "dhash": "26363c3a1e542636", "phash_int": -5.339740531299486e+18, "collected_at": "2026-05-22T04:32:48.441208+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 21-14-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 21-14-27 CanonPowerShotS40.jpg", "file_name": "2003-12-26 21-14-27 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 21-14-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2268030.0, "mtime": "2003-12-26T20:14:26+00:00", "mtime_ts": 1072469666.0, "ctime": "2024-12-21T07:57:57.883263+00:00", "sha256_file": "c2b58e15dee7fbcf29f86e885502e94796448801c90679abbe360201a0fb86d9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 21:14:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8414", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 21:14:27", "EXIF DateTimeDigitized": "2003:12:26 21:14:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "698294b31875fb5fc1c9fb53860eeed309aab4955a4b730024da347489572f2f", "phash": "a3b586d25589b8da", "dhash": "cc8e8e1b0d29a9c3", "phash_int": -6.650261036806326e+18, "collected_at": "2026-05-22T04:32:48.464370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-24 19-28-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-24 19-28-09 CanonPowerShotS40.jpg", "file_name": "2003-12-24 19-28-09 CanonPowerShotS40.jpg", "file_stem": "2003-12-24 19-28-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1346510.0, "mtime": "2003-12-24T18:28:08+00:00", "mtime_ts": 1072290488.0, "ctime": "2024-12-21T07:57:57.655256+00:00", "sha256_file": "00130b960b2657d5d7568ae00279ff971df01911c777713b2c7aa17b63f34652", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:24 19:28:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4348", "EXIF ExposureTime": "1", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:24 19:28:09", "EXIF DateTimeDigitized": "2003:12:24 19:28:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "0", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "711/500", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Manual", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65440", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1422"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "112afb029a8365cf287b498cbf762f5b6983112d55cc75f9ca7cefc17a112642", "phash": "e6aa18d46b988d5b", "dhash": "a4e4c7c7c2e6e4c4", "phash_int": -1.8256193983280218e+18, "collected_at": "2026-05-22T04:32:48.667442+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 12-03-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 12-03-37 CanonPowerShotS40.jpg", "file_name": "2003-11-02 12-03-37 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 12-03-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1469826.0, "mtime": "2003-11-02T11:03:37+00:00", "mtime_ts": 1067771017.0, "ctime": "2024-12-21T07:57:51.180047+00:00", "sha256_file": "9bc598040b0c4289abbb3fe4903500dbf752c936af8833920f4f2def1cb67542", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 12:03:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5699", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 12:03:37", "EXIF DateTimeDigitized": "2003:11:02 12:03:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[110, 153, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "144", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c6cd756010db5abb9d82e12579d63856c5b3203073d81d61b64fb4d6205a8b2", "phash": "e58e34e1d482def0", "dhash": "46f66be2c2c29696", "phash_int": -1.9055274477935086e+18, "collected_at": "2026-05-22T04:32:48.670438+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-37-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-37-18 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-37-18 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-37-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1818299.0, "mtime": "2003-12-21T17:37:16+00:00", "mtime_ts": 1072028236.0, "ctime": "2024-12-21T07:57:57.329245+00:00", "sha256_file": "0233fd56184956130fddbbbcbb2b4fde2c1ecff5aa45560d2dc7441772266359", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:37:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6401", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:37:18", "EXIF DateTimeDigitized": "2003:12:21 18:37:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "166", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6df00f066d18e0f1c82a63ab88bbb3a5b7adaf21fd878845aba9558516db44c5", "phash": "9216e94b9f644db1", "dhash": "e0bc94cc68e0c492", "phash_int": -7.919886383678469e+18, "collected_at": "2026-05-22T04:32:48.998463+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 15-41-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 15-41-27 CanonPowerShotS40.jpg", "file_name": "2003-04-20 15-41-27 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 15-41-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2606199.0, "mtime": "2003-04-20T14:41:26+00:00", "mtime_ts": 1050849686.0, "ctime": "2024-12-21T07:57:45.769872+00:00", "sha256_file": "f61c90520b58b03c96b2849be205b68045e306ccca9f0a749eb092869758d5a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 15:41:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6721", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 15:41:27", "EXIF DateTimeDigitized": "2003:04:20 15:41:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "03b3317167a868292a9c11c236e2907aa1eff005ef0283ba601dc4fb58786d3c", "phash": "e0651d98a7a5a5e3", "dhash": "e2b38b8b89b1b028", "phash_int": -2.2773814950810322e+18, "collected_at": "2026-05-22T04:32:49.056454+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 16-09-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 16-09-37 CanonPowerShotS40.jpg", "file_name": "2003-11-07 16-09-37 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 16-09-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1266539.0, "mtime": "2003-11-07T15:09:37+00:00", "mtime_ts": 1068217777.0, "ctime": "2024-12-21T07:57:51.872069+00:00", "sha256_file": "9fedbb09ccd3395b35ff8bc7dda3d8392022c852b84ce9d822ae4a1336f3947c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 16:09:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3520", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 16:09:37", "EXIF DateTimeDigitized": "2003:11:07 16:09:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000076", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "6", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "52", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "abd4544c34799f6f20766ae9e4789314c88ad55a01bd929e03f382c63017be06", "phash": "974a688f649bb34c", "dhash": "7170dcccccdc708e", "phash_int": -7.545103260628307e+18, "collected_at": "2026-05-22T04:32:49.174660+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 13-17-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 13-17-00 CanonPowerShotA40.jpg", "file_name": "2003-11-01 13-17-00 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 13-17-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 471866.0, "mtime": "2003-11-01T12:17:00+00:00", "mtime_ts": 1067689020.0, "ctime": "2024-12-21T07:57:50.953039+00:00", "sha256_file": "3a8c0c62e899e6a6968b35b0b8077a490a1cdc5677e0bb74973c8d08d380b138", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 13:17:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5142", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 13:17:00", "EXIF DateTimeDigitized": "2003:11:01 13:17:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 20551, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292976", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "69", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "496"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "660ff54524d68cc67bc3f2930c26ff10717dc62ff042712626aad79dad923efe", "phash": "87cd5a2b4d9b145a", "dhash": "e3d6f46664fdf97c", "phash_int": -8.661167366331493e+18, "collected_at": "2026-05-22T04:32:49.206655+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-04-31 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-04-31 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-04-31 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-04-31 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 313501.0, "mtime": "2003-03-30T10:02:06+00:00", "mtime_ts": 1049018526.0, "ctime": "2024-12-21T07:57:40.376698+00:00", "sha256_file": "f2167b97fa149d36aca22c96ce506f843a2011f61b40788b037b1e3ed5efe5ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:04:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3754", "EXIF ExposureTime": "1/30", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:04:31", "EXIF DateTimeDigitized": "2003:03:06 19:04:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "157/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191960", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "157", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1748"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e38cbd96a5948f70131c219cf829621f0a04da7ba77935c7462aa26ffee1489c", "phash": "94d239e3c924dcf2", "dhash": "f8fcfcf4fcfc7c3c", "phash_int": -7.723046760491984e+18, "collected_at": "2026-05-22T04:32:49.440044+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-13 18-54-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-13 18-54-17 CanonPowerShotS40.jpg", "file_name": "2003-11-13 18-54-17 CanonPowerShotS40.jpg", "file_stem": "2003-11-13 18-54-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2040381.0, "mtime": "2003-11-13T17:54:17+00:00", "mtime_ts": 1068746057.0, "ctime": "2024-12-21T07:57:52.796099+00:00", "sha256_file": "d2f5f6c21427b77e8c401dd7f7b036eb26b3786b885540045f14f94aa10a7162", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:13 18:54:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:13 18:54:17", "EXIF DateTimeDigitized": "2003:11:13 18:54:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65484", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "531a621ba89ec4fa50a1162a301b662a79f06225e86dde62c34e9339b69b42be", "phash": "c23d79c0cf093667", "dhash": "9c3e6c6164d59991", "phash_int": -4.450266987758013e+18, "collected_at": "2026-05-22T04:32:49.487313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-19-59 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-19-59 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-19-59 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-19-59 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1140766.0, "mtime": "2003-12-31T23:19:58+00:00", "mtime_ts": 1072912798.0, "ctime": "2024-12-21T07:57:59.907329+00:00", "sha256_file": "c778252414c9853888c3f517e87f81a2ce5b559b4321a4d4f235e46648a66d05", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:19:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5505", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:19:59", "EXIF DateTimeDigitized": "2004:01:01 00:19:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000069", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3db33a44e973fd000c8a0b4a7c6ec71b4b065478bf16ff5976b77cc267072dc9", "phash": "98cad6c6e2d3c661", "dhash": "f1b0b8b9f97470b0", "phash_int": -7.436895684951554e+18, "collected_at": "2026-05-22T04:32:49.559318+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-36-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-36-11 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-36-11 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-36-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1770315.0, "mtime": "2003-12-21T14:36:10+00:00", "mtime_ts": 1072017370.0, "ctime": "2024-12-21T07:57:56.958233+00:00", "sha256_file": "67c9797fc8936ce0b3855fcc6db86db6312d108c5e7da44b2b826ebda75d345d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:36:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5440", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:36:11", "EXIF DateTimeDigitized": "2003:12:21 15:36:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "161/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[32, 235, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1288"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1e36effc1462c8ce52ef07c219c5bd842bb684bebe6465721e256d8ceb879ce7", "phash": "d4e003cbe5ce99cc", "dhash": "988c343438387c5c", "phash_int": -3.1074795686168755e+18, "collected_at": "2026-05-22T04:32:49.663388+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 05-52-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 05-52-15 CanonPowerShotS40.jpg", "file_name": "2003-12-26 05-52-15 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 05-52-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1749828.0, "mtime": "2003-12-26T04:52:14+00:00", "mtime_ts": 1072414334.0, "ctime": "2024-12-21T07:57:57.739259+00:00", "sha256_file": "234e1040699ab1e6fcec4ca95ebdf6c7a00cfb924516c9fbadf02518349bf280", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 05:52:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5907", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 05:52:15", "EXIF DateTimeDigitized": "2003:12:26 05:52:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 249, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a4f30927f09e0b51f5748a3146080e5833e24e12155f2aaa326a7168d0378a7c", "phash": "d53d8a32be2392c6", "dhash": "3a1256562494a4a0", "phash_int": -3.081154619508551e+18, "collected_at": "2026-05-22T04:32:49.764148+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-17 13-16-07 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-17 13-16-07 CanonPowerShotA40.jpg", "file_name": "2003-10-17 13-16-07 CanonPowerShotA40.jpg", "file_stem": "2003-10-17 13-16-07 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 270902.0, "mtime": "2003-10-17T12:16:07+00:00", "mtime_ts": 1066392967.0, "ctime": "2024-12-21T07:57:48.698967+00:00", "sha256_file": "2deb7d0c95493de8add996a045d4784f7d242e18947a6083bd1f390eb25ad56f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:17 13:16:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2939", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:17 13:16:07", "EXIF DateTimeDigitized": "2003:10:17 13:16:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 699, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292904", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1014"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20ae826d00c9183ad3663647e8fd69e2d72c0562677b529361b48062ca0b0989", "phash": "cf98e49983376e48", "dhash": "f8a42051d16608c4", "phash_int": -3.487786563415872e+18, "collected_at": "2026-05-22T04:32:49.809313+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-46-36 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-46-36 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-46-36 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-46-36 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 450747.0, "mtime": "2003-02-01T12:46:34+00:00", "mtime_ts": 1044103594.0, "ctime": "2024-12-21T07:57:37.758613+00:00", "sha256_file": "d65dd0bea7f6db0e4c515d19e94df3d1fc765a9236a04782859c48edb22e4eab", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:46:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6835", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:46:36", "EXIF DateTimeDigitized": "2003:02:01 14:46:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161641", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "721"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c6a01ea43acf3fd578fd519994efe8c04cf3d8312f98afaa1f6adedc9a452dbd", "phash": "865a5422e95f9c6d", "dhash": "c9cdf053c6edeee6", "phash_int": -8.765601215802271e+18, "collected_at": "2026-05-22T04:32:49.890477+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 15-03-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 15-03-58 CanonPowerShotS40.jpg", "file_name": "2003-12-21 15-03-58 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 15-03-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1404029.0, "mtime": "2003-12-21T14:03:56+00:00", "mtime_ts": 1072015436.0, "ctime": "2024-12-21T07:57:56.764227+00:00", "sha256_file": "9f6773f3bd05aeb2a5627d20ae37d992107370ec9e9dd0e59d16e0c47c96b2e6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 15:03:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5809", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 15:03:58", "EXIF DateTimeDigitized": "2003:12:21 15:03:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "166", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "05d9704018421595264443dca90841967bd042f270c60c2babab91cb3d61aeb0", "phash": "f9e4813e8ce4172d", "dhash": "1098981011181818", "phash_int": -4.400847579237521e+17, "collected_at": "2026-05-22T04:32:50.015027+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 11-35-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 11-35-54 CanonPowerShotS40.jpg", "file_name": "2003-11-29 11-35-54 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 11-35-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1384802.0, "mtime": "2003-11-29T10:35:54+00:00", "mtime_ts": 1070102154.0, "ctime": "2024-12-21T07:57:53.688128+00:00", "sha256_file": "b1182cd2406afae58414d5acbad1818363b2977b7c9571f24e1a24511b031829", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 11:35:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4521", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 11:35:54", "EXIF DateTimeDigitized": "2003:11:29 11:35:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "299/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000057", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "6", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1495"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5fef1ed505813234c6eee7114eeed6fd0af34d4fb4ed01af04529da8a0ca9576", "phash": "9c7a63fd65244253", "dhash": "3919bd3432347464", "phash_int": -7.171309516659342e+18, "collected_at": "2026-05-22T04:32:50.050028+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-32-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-32-00 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-32-00 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-32-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1728655.0, "mtime": "2003-09-14T13:32:00+00:00", "mtime_ts": 1063546320.0, "ctime": "2024-12-21T07:57:47.404925+00:00", "sha256_file": "3fa711a864cb716de5eefeade76157b21bbdbed5ef0412a6cee4ba4deb28eb33", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:32:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5074", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:32:00", "EXIF DateTimeDigitized": "2003:09:14 15:32:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "133/50", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "213", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2660"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "528672a50a9d70e12e19b52e66f609be1f83c2cb367cb1c6acade26c135d093a", "phash": "ea2fa298b7a414b5", "dhash": "edc9a32519999182", "phash_int": -1.5718589681293012e+18, "collected_at": "2026-05-22T04:32:50.211467+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-37-23 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-37-23 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-37-23 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-37-23 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1954007.0, "mtime": "2003-12-21T17:37:22+00:00", "mtime_ts": 1072028242.0, "ctime": "2024-12-21T07:57:57.343246+00:00", "sha256_file": "2e62cd8d2a6a4364c47cc39160022c2e2cfba7e50463882623575456c527f5c7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:37:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6145", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:37:23", "EXIF DateTimeDigitized": "2003:12:21 18:37:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f35adac60e203b225d1e73304a86ad7cb6e5413df99b1ea4ba4936f37412c017", "phash": "c81bf508b4779b38", "dhash": "e0f1397033f19218", "phash_int": -4.0273560240164956e+18, "collected_at": "2026-05-22T04:32:50.256983+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-00-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-00-39 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-00-39 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-00-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1788279.0, "mtime": "2003-12-28T23:00:38+00:00", "mtime_ts": 1072652438.0, "ctime": "2024-12-21T07:57:58.844294+00:00", "sha256_file": "40ffe8babd63bc0a21e1bae61065b37e9528f973c89aaa1317b8567c14b6b739", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:00:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4761", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:00:39", "EXIF DateTimeDigitized": "2003:12:29 00:00:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "274", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3262ad8d8785e7c97d648a863c89e2e379400c55f5134b6945c2eb8350f2c958", "phash": "90c0bfbf6f4e808a", "dhash": "f0a8c0c0b1b03058", "phash_int": -8.016196507792409e+18, "collected_at": "2026-05-22T04:32:50.591222+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-12 09-09-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-12 09-09-18 CanonPowerShotS40.jpg", "file_name": "2002-11-12 09-09-18 CanonPowerShotS40.jpg", "file_stem": "2002-11-12 09-09-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1519312.0, "mtime": "2002-11-12T08:09:16+00:00", "mtime_ts": 1037088556.0, "ctime": "2024-12-21T07:57:36.736580+00:00", "sha256_file": "4d2d10e5692db07d14c7af8de5e58468a90532c0c2a5a85fa79517ff3246603e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:12 09:09:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4648", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:12 09:09:18", "EXIF DateTimeDigitized": "2002:11:12 09:09:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "264", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7ae60bb1c28776b3029be5380460a1be0106a57774fb275b1ab8bae2f9f45ae8", "phash": "d4d41a0be9e4359b", "dhash": "f4f8c4842060e4e6", "phash_int": -3.1108328041351603e+18, "collected_at": "2026-05-22T04:32:50.622283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-08 18-20-37 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-08 18-20-37 CanonPowerShotA40.jpg", "file_name": "2003-02-08 18-20-37 CanonPowerShotA40.jpg", "file_stem": "2003-02-08 18-20-37 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 455294.0, "mtime": "2003-02-08T16:20:36+00:00", "mtime_ts": 1044721236.0, "ctime": "2024-12-21T07:57:38.209628+00:00", "sha256_file": "2ab707752faa1893dccacfe3fbc82b17b8a3a8fed40beda676a0c692e91dc97e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:08 18:20:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4102", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:08 18:20:37", "EXIF DateTimeDigitized": "2003:02:08 18:20:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 3348, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171711", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "199", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aaba49b783611e5c433f70ff65d6c06f5b8899b662c3020e0b9f01f8acbb7bdc", "phash": "8fa5365a34926c9b", "dhash": "e4e2e2e261e1e961", "phash_int": -8.096004994071631e+18, "collected_at": "2026-05-22T04:32:50.861990+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 22-53-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 22-53-56 CanonPowerShotS40.jpg", "file_name": "2003-12-31 22-53-56 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 22-53-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1495693.0, "mtime": "2003-12-31T21:53:54+00:00", "mtime_ts": 1072907634.0, "ctime": "2024-12-21T07:57:59.416313+00:00", "sha256_file": "46fb2d20c2e1bf4015002d8e03ebddc84bda421c4f12c20af1f6c5ee20202158", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 22:53:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4813", "EXIF ExposureTime": "1/100", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 22:53:56", "EXIF DateTimeDigitized": "2003:12:31 22:53:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "539/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "231", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4312"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "496108a5adeddaf49cd6273b5d8d9e9ca7a820c4e97018dc3131ddc595710ef1", "phash": "873c7c47d272d88a", "dhash": "04b67949484e4d91", "phash_int": -8.701943732071377e+18, "collected_at": "2026-05-22T04:32:50.898988+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 08-34-23 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 08-34-23 CanonPowerShotA40.jpg", "file_name": "2003-10-18 08-34-23 CanonPowerShotA40.jpg", "file_stem": "2003-10-18 08-34-23 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 486017.0, "mtime": "2003-10-18T07:34:23+00:00", "mtime_ts": 1066462463.0, "ctime": "2024-12-21T07:57:48.739968+00:00", "sha256_file": "65476042395d4564a442861da09177bdae2839f5a4c1c1059b81dc444827bcef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 08:34:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3750", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:18 08:34:23", "EXIF DateTimeDigitized": "2003:10:18 08:34:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 33, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292910", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "102", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1367"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c63c2857d9dc303a1eae7305ec5fe16add4985f2eeea056b163ca9f48298915", "phash": "810ff63fd90ee409", "dhash": "f0f0f0f2f2f2f8e0", "phash_int": -9.146821564081184e+18, "collected_at": "2026-05-22T04:32:51.013853+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-28 19-35-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-28 19-35-29 CanonPowerShotS40.jpg", "file_name": "2003-10-28 19-35-29 CanonPowerShotS40.jpg", "file_stem": "2003-10-28 19-35-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1674339.0, "mtime": "2003-10-28T18:35:29+00:00", "mtime_ts": 1067366129.0, "ctime": "2024-12-21T07:57:49.902005+00:00", "sha256_file": "87deebe1bb6c00970e3571846e2ef4d4a5336b278a32e6ae1716ba26be63d241", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:28 19:35:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4364", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:28 19:35:29", "EXIF DateTimeDigitized": "2003:10:28 19:35:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 349, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65514", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "29f868e9585c390546671609eecbc18da0bbab7ac65a30f90fcb4e0145e55123", "phash": "8b61719738cb9c99", "dhash": "9b733373717071f9", "phash_int": -8.403310535389767e+18, "collected_at": "2026-05-22T04:32:51.136303+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 12-03-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 12-03-53 CanonPowerShotS40.jpg", "file_name": "2003-11-02 12-03-53 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 12-03-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1381530.0, "mtime": "2003-11-02T11:03:53+00:00", "mtime_ts": 1067771033.0, "ctime": "2024-12-21T07:57:51.213048+00:00", "sha256_file": "d5f3cb316a75284b3edff54e29b09038880a3764f5f734b7341b2010d32696bb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 12:03:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5380", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 12:03:53", "EXIF DateTimeDigitized": "2003:11:02 12:03:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "175", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bb4c4c0ec10f4896a54594a6969a44e615661923e15034900d5c8acc3d720674", "phash": "c206277b6c7818fb", "dhash": "65cc88a1c1990943", "phash_int": -4.4658385694369976e+18, "collected_at": "2026-05-22T04:32:51.284805+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-10 23-53-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-10 23-53-01 CanonPowerShotS40.jpg", "file_name": "2003-11-10 23-53-01 CanonPowerShotS40.jpg", "file_stem": "2003-11-10 23-53-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1170899.0, "mtime": "2003-11-10T22:53:01+00:00", "mtime_ts": 1068504781.0, "ctime": "2024-12-21T07:57:52.602093+00:00", "sha256_file": "91e4daa6bf307fbe0862b0559b3afee3b76b0ede0cc7438dc036dfb9bb75f9ee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:10 23:53:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4759", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:10 23:53:01", "EXIF DateTimeDigitized": "2003:11:10 23:53:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[92, 85, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-2 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5664e69556b5ea8d09670b6ad8fbf378f9618b57169409c249684a661a28030d", "phash": "d2896e339556718d", "dhash": "b3f1d078180c8da4", "phash_int": -3.2759660861074673e+18, "collected_at": "2026-05-22T04:32:51.294892+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 17-53-27 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 17-53-27 CanonPowerShotA40.jpg", "file_name": "2003-10-25 17-53-27 CanonPowerShotA40.jpg", "file_stem": "2003-10-25 17-53-27 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 422569.0, "mtime": "2003-10-25T16:53:27+00:00", "mtime_ts": 1067100807.0, "ctime": "2024-12-21T07:57:49.173982+00:00", "sha256_file": "07210fc52e496a35bb982725b85a0fb8f9a6c08a324282adc89442a2d3d61baf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 17:53:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4242", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:25 17:53:27", "EXIF DateTimeDigitized": "2003:10:25 17:53:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 904, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292920", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6d145624665bc83079e8efe4c1dde9e9da04ba54410d18bb38bf1b01d1ff2ac", "phash": "832bd428372f3f38", "dhash": "ddd9594f9dd5e0e0", "phash_int": -8.99486256155281e+18, "collected_at": "2026-05-22T04:32:51.433028+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-37-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-37-33 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-37-33 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-37-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1424143.0, "mtime": "2003-04-06T15:37:32+00:00", "mtime_ts": 1049643452.0, "ctime": "2024-12-21T07:57:44.638835+00:00", "sha256_file": "13a51f0b21dbe91aa6da36e89c5d79e9161b922e105997301e3268434eddb4ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:37:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5147", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:37:33", "EXIF DateTimeDigitized": "2003:04:06 16:37:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "270", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8509c5542a30137350b83bbf20d1156ae967520a8216fc09c6d8f9d6eb16b333", "phash": "feeea0a2a88a871d", "dhash": "2f0e50712a4cf990", "phash_int": -7.694752314592278e+16, "collected_at": "2026-05-22T04:32:51.492029+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-40-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-40-06 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-40-06 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-40-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1852446.0, "mtime": "2003-04-06T15:40:04+00:00", "mtime_ts": 1049643604.0, "ctime": "2024-12-21T07:57:44.729838+00:00", "sha256_file": "130b793312bf2472e211a6ed9c3692053355adcae21fa0beb10b73baf09d7667", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:40:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4927", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:40:06", "EXIF DateTimeDigitized": "2003:04:06 16:40:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 114, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "139", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "217", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c92d41fb0c9fc5630c2d6d881814627f56b278fdec4d1629cc2a125bfe13673f", "phash": "91864a3a5a4f1fcd", "dhash": "f9dce4f2ba7ed9f8", "phash_int": -7.960593676847079e+18, "collected_at": "2026-05-22T04:32:51.669235+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-14-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-14-58 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-14-58 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-14-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1884886.0, "mtime": "2003-11-02T08:14:58+00:00", "mtime_ts": 1067760898.0, "ctime": "2024-12-21T07:57:51.065043+00:00", "sha256_file": "05163001d0b0afadc95b3d0d60836b4841063df027b8d195e4e3d3a55a2a04fa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:14:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4629", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:14:58", "EXIF DateTimeDigitized": "2003:11:02 09:14:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1061/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "165/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "113", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1061"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "92064082a73bf0ed508be61721f9351262bc124b3439d28d218a61ec3febca7e", "phash": "d1268a1cae30d73f", "dhash": "3cdc4c963050d0f0", "phash_int": -3.375859014881454e+18, "collected_at": "2026-05-22T04:32:51.715298+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-47-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-47-07 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-47-07 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-47-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1602444.0, "mtime": "2003-04-05T12:47:06+00:00", "mtime_ts": 1049546826.0, "ctime": "2024-12-21T07:57:43.698805+00:00", "sha256_file": "a7801e04bec5d8827bb5d7adc0415d680b3d61f55de4cc8163576d7bfb66ec78", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:47:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7133", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:47:07", "EXIF DateTimeDigitized": "2003:04:05 13:47:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "272", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "edb3c6cdac08e8327fc63654ad44476425e44239a778c56ab42b09662548d5da", "phash": "d7edb1c734313830", "dhash": "4e4a3a6c6468d8dc", "phash_int": -2.887456316942371e+18, "collected_at": "2026-05-22T04:32:51.852305+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-40-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-40-42 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-40-42 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-40-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1961765.0, "mtime": "2003-11-16T18:40:42+00:00", "mtime_ts": 1069008042.0, "ctime": "2024-12-21T07:57:53.407119+00:00", "sha256_file": "94e53d62f263cac1fd5ffbc506878ebbde6312e294ae17662380e74024dc0eb6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:40:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5331", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:40:42", "EXIF DateTimeDigitized": "2003:11:16 19:40:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eea60abb0f4378fd8af4567dfa02ee156e32038d58cd3cb3cb4f094eb5f5d41b", "phash": "f3a944d62b669549", "dhash": "c8c4de89d9cc4c88", "phash_int": -8.89103764787129e+17, "collected_at": "2026-05-22T04:32:51.984225+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-56-47 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-56-47 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-56-47 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-56-47 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1739635.0, "mtime": "2003-04-06T15:56:46+00:00", "mtime_ts": 1049644606.0, "ctime": "2024-12-21T07:57:44.807841+00:00", "sha256_file": "e1ae37d4770933b4bfa563b6580920f58b859f52a3437c08275f8c64ea6f49be", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:56:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5009", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:56:47", "EXIF DateTimeDigitized": "2003:04:06 16:56:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "311", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "21696ce7c1fc363b1664c6f5217b27b6be0ffae87f44b8447d72c9b080caa38f", "phash": "a0ed8e304d7ed0d9", "dhash": "03860047df9dbdfb", "phash_int": -6.850663120050926e+18, "collected_at": "2026-05-22T04:32:52.147370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-07-11 09-28-09 DCR-PC115E.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-07-11 09-28-09 DCR-PC115E.jpg", "file_name": "2003-07-11 09-28-09 DCR-PC115E.jpg", "file_stem": "2003-07-11 09-28-09 DCR-PC115E", "file_ext": ".jpg", "file_size": 769443.0, "mtime": "2003-07-15T11:40:00+00:00", "mtime_ts": 1058269200.0, "ctime": "2024-12-21T07:57:46.609899+00:00", "sha256_file": "c069156bb653bc0726b0d48d26f28938a88082e283849064dc3b2d5d2017ae9e", "exif": {"Image Make": "SONY", "Image Model": "DCR-PC115E ", "Image Orientation": "Horizontal (normal)", "Image XResolution": "72", "Image YResolution": "72", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:07:11 09:28:09", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "176", "Thumbnail JPEGInterchangeFormat": "751", "Thumbnail JPEGInterchangeFormatLength": "5803", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:07:11 09:28:09", "EXIF DateTimeDigitized": "2003:07:11 09:28:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/10", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "21/5", "EXIF MakerNote": "[83, 79, 78, 89, 32, 67, 65, 77, 32, 0, 0, 0, 1, 0, 0, 14, 7, 0, 28, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1360", "EXIF ExifImageLength": "1020", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "540", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]", "MakerNote Tag 0x0000": "[]", "MakerNote Tag 0x0103": "6", "MakerNote Tag 0x010F": "SONY", "MakerNote Tag 0x0110": "DCR-PC115E ", "MakerNote WhiteBalanceFineTune": "1", "MakerNote Tag 0x011A": "72", "MakerNote Tag 0x011B": "72", "MakerNote Tag 0x0128": "2", "MakerNote Tag 0x0132": "2003:07:11 09:28:09", "MakerNote Tag 0x0201": "[]", "MakerNote Tag 0x0202": "5803", "MakerNote Tag 0x0101": "[]", "MakerNote Tag 0x0405": "[]", "MakerNote Tag 0x0B0A": "[]", "MakerNote Tag 0x4586": "[]", "MakerNote Tag 0xF596": "[]", "MakerNote Tag 0x37BD": "[]", "MakerNote Tag 0x5C92": "[]", "MakerNote Tag 0xCB32": "[]", "MakerNote Tag 0x3380": "[]", "MakerNote Tag 0x202B": "[]", "MakerNote Tag 0xA80A": "[]", "MakerNote Tag 0xDC12": "[]", "MakerNote Tag 0x6324": "[]", "MakerNote Tag 0x3670": "[]"}, "format": "JPEG", "mode": "RGB", "width": 1360.0, "height": 1020.0, "megapixels": 1.39, "has_transparency": 0.0, "dpi": [72.0, 72.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ee55a9bd4471e78c031c6fb9b339b6d7eaf00f6cf91c1042ff01c65449625489", "phash": "cd1290e937ab4ad6", "dhash": "fef4642e4633b3fc", "phash_int": -3.6697114150177807e+18, "collected_at": "2026-05-22T04:32:52.271844+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-27 10-29-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-27 10-29-25 CanonPowerShotS40.jpg", "file_name": "2003-09-27 10-29-25 CanonPowerShotS40.jpg", "file_stem": "2003-09-27 10-29-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1314853.0, "mtime": "2003-09-27T08:29:25+00:00", "mtime_ts": 1064651365.0, "ctime": "2024-12-21T07:57:48.073946+00:00", "sha256_file": "25dd1facc7542e625f291a9fce98d59bee493165afbcfbba9904d438d604a804", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:27 10:29:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3871", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:27 10:29:25", "EXIF DateTimeDigitized": "2003:09:27 10:29:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000067", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "161", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c158dcb16741f903b2a32529b8ffbc343abe259cfbfc588d54cf97c98681d68a", "phash": "86b0b5c1ee59415f", "dhash": "8eaed4e4e4e06062", "phash_int": -8.741287032193991e+18, "collected_at": "2026-05-22T04:32:52.418972+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-26 16-20-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-26 16-20-53 CanonPowerShotS40.jpg", "file_name": "2003-04-26 16-20-53 CanonPowerShotS40.jpg", "file_stem": "2003-04-26 16-20-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1348507.0, "mtime": "2003-04-26T15:20:52+00:00", "mtime_ts": 1051370452.0, "ctime": "2024-12-21T07:57:45.953878+00:00", "sha256_file": "470dc37c97809f6556560bd8e8d9a00bdf0d11ebf514dc535a954b5dae37ab3e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:26 16:20:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3769", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:26 16:20:53", "EXIF DateTimeDigitized": "2003:04:26 16:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2eb32e5206ecd6b8fefecbebb57f5b78610e4a5ebb1888ee0b5f8eb62cf546f8", "phash": "d5d8220e316fd0b7", "dhash": "e0f0c8d0f0e060cc", "phash_int": -3.0376405043071017e+18, "collected_at": "2026-05-22T04:32:52.457976+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-16-34 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-16-34 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-16-34 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-16-34 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 375459.0, "mtime": "2003-11-29T15:16:34+00:00", "mtime_ts": 1070118994.0, "ctime": "2024-12-21T07:57:54.897167+00:00", "sha256_file": "493d50e5a785c3963c198442c6a805bf486dcff6ec28763f8bdbe092bda48b3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:16:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3445", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:16:34", "EXIF DateTimeDigitized": "2003:11:29 16:16:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 5585, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303066", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a356db8d758562f65d3aa1d4c003fc69adba2a92e0d9c2dff455a22442b67a1", "phash": "8b46f4b86ed2b829", "dhash": "6442e1697b9bd9db", "phash_int": -8.410766181097359e+18, "collected_at": "2026-05-22T04:32:52.597985+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-58-16 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-58-16 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-58-16 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-58-16 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 340245.0, "mtime": "2003-12-03T16:09:00+00:00", "mtime_ts": 1070467740.0, "ctime": "2024-12-21T07:57:54.194144+00:00", "sha256_file": "3c10c5357ee3f6ff6b80fd8257fe129998a41dacfd18802f0f022c4263c8444f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:58:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1430", "Thumbnail JPEGInterchangeFormatLength": "3592", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:58:16", "EXIF DateTimeDigitized": "2003:11:29 12:58:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1200", "EXIF ExifImageLength": "1600", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1303010", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "0", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd0a7c88cf4d197e6048204a175b6d8e428f1eb021282ce47fd72d1ea44b4bf1", "phash": "956b6a859462dbe4", "dhash": "ccd9d9bcfcf8f8b0", "phash_int": -7.679927617597548e+18, "collected_at": "2026-05-22T04:32:52.820055+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-30-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-30-14 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-30-14 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-30-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1177207.0, "mtime": "2002-11-13T08:30:12+00:00", "mtime_ts": 1037176212.0, "ctime": "2024-12-21T07:57:37.125593+00:00", "sha256_file": "4264154e7561cb547da80d15b698d199625fa312114b1309c782a665ac7ab0d7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:30:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3552", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:30:14", "EXIF DateTimeDigitized": "2002:11:13 09:30:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a3c2d88bfba0d3dfba168a874aa538a6d2faf7f293ade1d4645b064375c4a6e8", "phash": "e4f7190d190f1d27", "dhash": "060606a6a6a7a783", "phash_int": -1.94806076976876e+18, "collected_at": "2026-05-22T04:32:53.334394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-09-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-09-20 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-09-20 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-09-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2861111.0, "mtime": "2003-03-30T12:09:18+00:00", "mtime_ts": 1049026158.0, "ctime": "2024-12-21T07:57:42.974782+00:00", "sha256_file": "17f5dfd19f435de7de4261242a1addf7b60accb873ab129533f54ec42516f1db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:09:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7059", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:09:20", "EXIF DateTimeDigitized": "2003:03:30 13:09:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "178", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0afb049fdbf8668452b2442d2257986fc40a1a404a322c09face4b3ab68119c", "phash": "dd940972f626cd32", "dhash": "d4d0f0e00c71d0f2", "phash_int": -2.4803471054136407e+18, "collected_at": "2026-05-22T04:32:53.339394+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-11-44 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-11-44 E5000.jpg", "file_name": "2003-05-25 11-11-44 E5000.jpg", "file_stem": "2003-05-25 11-11-44 E5000", "file_ext": ".jpg", "file_size": 613624.0, "mtime": "2003-05-25T10:11:44+00:00", "mtime_ts": 1053857504.0, "ctime": "2024-12-21T07:57:46.404892+00:00", "sha256_file": "58e1eca8f02a6ac61f2e911b059160e78ccf3e7f3efe1a08530704fbf4de53f4", "exif": {"Image ImageDescription": " ", "Image Make": "NIKON", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "E5000v1.6", "Image DateTime": "2003:05:25 11:11:44", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "284", "Thumbnail JPEGInterchangeFormat": "4084", "Thumbnail JPEGInterchangeFormatLength": "3315", "EXIF ExposureTime": "10/2441", "EXIF FNumber": "24/5", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:05:25 11:11:44", "EXIF DateTimeDigitized": "2003:05:25 11:11:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "1", "EXIF ExposureBiasValue": "-7/10", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Daylight", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "149/10", "EXIF MakerNote": "[21, 0, 1, 0, 7, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2560", "EXIF ExifImageLength": "1920", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "886", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote MakernoteVersion": "0100", "MakerNote ISOSetting": "[0, 100]", "MakerNote ColorMode": "COLOR", "MakerNote Quality": "BASIC ", "MakerNote Whitebalance": "SUNNY ", "MakerNote ImageSharpening": "NONE ", "MakerNote FocusMode": "AF-C ", "MakerNote FlashSetting": " ", "MakerNote LensMount": "1104/125", "MakerNote ISOSelection": "MANUAL", "MakerNote ImageAdjustment": "NORMAL ", "MakerNote AuxiliaryLens": "OFF ", "MakerNote ManualFocusDistance": "0/0", "MakerNote DigitalZoomFactor": "1", "MakerNote AFFocusPosition": "Center2CenterCenter", "MakerNote SceneMode": " ", "MakerNote Saturation": "0", "MakerNote NoiseReduction": "OFF ", "MakerNote DataDump": "[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 72, 28, 80, ... ]", "MakerNote NikonPreview": "1764", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 13, 0, 1, 0, 22, 0, ... ]"}, "format": "JPEG", "mode": "RGB", "width": 2560.0, "height": 1920.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e72001482e863575688955fbcc3d43b7c7de51eb6d71fd34f1ff33da0d72a49", "phash": "d4741d06a0f2db8f", "dhash": "aca6008cc4e07070", "phash_int": -3.137851126063113e+18, "collected_at": "2026-05-22T04:32:54.262877+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-31-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-31-05 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-31-05 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-31-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1577216.0, "mtime": "2003-11-04T09:31:05+00:00", "mtime_ts": 1067938265.0, "ctime": "2024-12-21T07:57:51.419055+00:00", "sha256_file": "16969292fa238e958ba96d903de271e3fb69a6fc89d91c04814d093ad9da1091", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:31:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5839", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:31:05", "EXIF DateTimeDigitized": "2003:11:04 10:31:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[80, 187, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000036", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "adccc91d5334ddf9b146e6addcca772d885f35fdc4ebd90005647838df855787", "phash": "95c5071dcc871fb4", "dhash": "e28a9cb83038faec", "phash_int": -7.654704167079436e+18, "collected_at": "2026-05-22T04:32:54.275883+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-58-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-58-40 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-58-40 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-58-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2031651.0, "mtime": "2003-04-06T15:58:38+00:00", "mtime_ts": 1049644718.0, "ctime": "2024-12-21T07:57:45.008847+00:00", "sha256_file": "55585dd33cca7bdf3c274fd4dac8fe1d7118993a31896c1f6db80de7ef47fca9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:58:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5890", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:58:40", "EXIF DateTimeDigitized": "2003:04:06 16:58:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "561/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000052", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "335", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4488"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "292512e5aa1e286e8e69721b4e443176c8e1540df7aa7a78e5f2d55611e30d23", "phash": "c5ba4fb50aec013e", "dhash": "0018a48368c466c0", "phash_int": -4.198956063578652e+18, "collected_at": "2026-05-22T04:32:54.870075+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-05 20-22-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-05 20-22-34 CanonPowerShotS40.jpg", "file_name": "2003-10-05 20-22-34 CanonPowerShotS40.jpg", "file_stem": "2003-10-05 20-22-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1882061.0, "mtime": "2003-10-09T06:46:44+00:00", "mtime_ts": 1065682004.0, "ctime": "2024-12-21T07:57:48.187950+00:00", "sha256_file": "883126daa9d59d56db2cfd171b84a65bfb251a288f08912e4602cfd73951eea2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:05 20:22:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4702", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:05 20:22:34", "EXIF DateTimeDigitized": "2003:10:05 20:22:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 338, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d00ba7b75be23522602a33bedae0a420f945cb608dcfceac1f3759aef3512ba6", "phash": "946b58534cadc796", "dhash": "d1cde6e6fcf8f8b0", "phash_int": -7.75200521879619e+18, "collected_at": "2026-05-22T04:32:54.884071+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-03-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-03-54 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-03-54 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-03-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1498434.0, "mtime": "2003-02-22T16:03:52+00:00", "mtime_ts": 1045929832.0, "ctime": "2024-12-21T07:57:39.293663+00:00", "sha256_file": "a0b64d16532636173b1ff239d7d4c4cf837bed979c0b292619c86250cc29cc08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:03:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5550", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:03:54", "EXIF DateTimeDigitized": "2003:02:22 17:03:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[35, 231, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c3f97dfc335f446fab2a41abfdef527ad00fe0ffb2f86173b9145901f4403812", "phash": "d08f7d40ff82142f", "dhash": "f2e2debca9a88a1a", "phash_int": -3.4183758740328233e+18, "collected_at": "2026-05-22T04:32:55.087164+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 17-57-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 17-57-06 CanonPowerShotS40.jpg", "file_name": "2003-03-08 17-57-06 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 17-57-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2192439.0, "mtime": "2003-03-09T17:42:56+00:00", "mtime_ts": 1047231776.0, "ctime": "2024-12-21T07:57:40.805712+00:00", "sha256_file": "eb5882d816f614915b3a8f25e529027cafbc166cc65da7094788de75a2a0012f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 17:57:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "5715", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 17:57:06", "EXIF DateTimeDigitized": "2003:03:08 17:57:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "27", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43472b660a39fea24b257dec42ce948fa1c88cafc83b1a2ff483b46b8d16fb73", "phash": "8db02fe6580f5b1c", "dhash": "2696d0d292426252", "phash_int": -8.237031052094252e+18, "collected_at": "2026-05-22T04:32:55.173171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-35-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-35-21 CanonPowerShotS40.jpg", "file_name": "2003-02-15 14-35-21 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 14-35-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1965649.0, "mtime": "2003-02-15T13:35:21+00:00", "mtime_ts": 1045316121.0, "ctime": "2024-12-21T07:57:38.535638+00:00", "sha256_file": "4c6a7f1430f301dbffe046c734279120c9bd96d02c5dfbd9ea58358ceb8b151a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:35:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6366", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 14:35:21", "EXIF DateTimeDigitized": "2003:02:15 14:35:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "220e05b1b291be738c66af71b09105c21e0d7dc5effae24b6ce456b5e679cbf2", "phash": "f4598ca61c5b8d3c", "dhash": "38981b190e2e2d24", "phash_int": -8.394852104596652e+17, "collected_at": "2026-05-22T04:32:55.334742+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-06 10-36-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-06 10-36-45 CanonPowerShotS40.jpg", "file_name": "2003-09-06 10-36-45 CanonPowerShotS40.jpg", "file_stem": "2003-09-06 10-36-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1326955.0, "mtime": "2003-09-06T08:36:45+00:00", "mtime_ts": 1062837405.0, "ctime": "2024-12-21T07:57:47.047913+00:00", "sha256_file": "665df2469310ce1b469b7ee800c6271cb75d1a4728a7a830a3ae42fe7d13fcc4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:06 10:36:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5079", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:06 10:36:45", "EXIF DateTimeDigitized": "2003:09:06 10:36:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "192", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "35d698593e9e7e1915716edb6b8c161cc70fbee377b42e0eb2f936329f4ecb00", "phash": "c03e78633fc5c4a3", "dhash": "1cb8e4f6c6c29292", "phash_int": -4.5941022022043064e+18, "collected_at": "2026-05-22T04:32:55.377741+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 19-35-29 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 19-35-29 CanonPowerShotA40.jpg", "file_name": "2003-02-22 19-35-29 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 19-35-29 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 315424.0, "mtime": "2003-02-22T17:35:28+00:00", "mtime_ts": 1045935328.0, "ctime": "2024-12-21T07:57:39.595673+00:00", "sha256_file": "5d89e21069af4778f47ea0193f2dd1cc43a6c0e39755d8b70b469b85ff964799", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 19:35:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3520", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 19:35:29", "EXIF DateTimeDigitized": "2003:02:22 19:35:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 6684, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181861", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "106", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "63dae41563ea07b4ae68173aed68375cdf9a4077ceb5ee4c0c42666dc9b38683", "phash": "dae4249bda18c967", "dhash": "3046f27169703022", "phash_int": -2.6739720269536435e+18, "collected_at": "2026-05-22T04:32:55.545747+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 15-18-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 15-18-16 CanonPowerShotS40.jpg", "file_name": "2003-04-29 15-18-16 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 15-18-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1792819.0, "mtime": "2003-04-29T14:18:14+00:00", "mtime_ts": 1051625894.0, "ctime": "2024-12-21T07:57:46.179885+00:00", "sha256_file": "10c3652d2b585686196153d7cf5c0126fedda8fbeebf1d8d482e2efc577c9fc9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 15:18:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6981", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 15:18:16", "EXIF DateTimeDigitized": "2003:04:29 15:18:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "327", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6d59fbc7530ec5462b5787a5d851fccff1978877a175515d8efbb380b3776ec2", "phash": "cf8676a4bc525a0e", "dhash": "a4e3e87263a30303", "phash_int": -3.492974011073013e+18, "collected_at": "2026-05-22T04:32:55.589749+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-24 21-19-09 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-24 21-19-09 CanonPowerShotA40.jpg", "file_name": "2003-02-24 21-19-09 CanonPowerShotA40.jpg", "file_stem": "2003-02-24 21-19-09 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 465417.0, "mtime": "2003-02-24T19:19:08+00:00", "mtime_ts": 1046114348.0, "ctime": "2024-12-21T07:57:40.087688+00:00", "sha256_file": "7276cd310154d8e6d3031bb765f48f78e11a7a5c208a450330d659a3bc272614", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:24 21:19:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4603", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:24 21:19:09", "EXIF DateTimeDigitized": "2003:02:24 21:19:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2667, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191920", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "123", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1745"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68b6f972be6657580e0c9893f119cedadcfcb52c2620746c42ef628fcf3f0669", "phash": "d63469da00ba16ef", "dhash": "22866cace42821e2", "phash_int": -3.011665865768037e+18, "collected_at": "2026-05-22T04:32:56.424184+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-23-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-23-02 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-23-02 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-23-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2052809.0, "mtime": "2003-09-14T13:23:02+00:00", "mtime_ts": 1063545782.0, "ctime": "2024-12-21T07:57:47.354923+00:00", "sha256_file": "3e098bffde24d6d0ebaf592961072b00f3d13a066a678a06802c074645918724", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:23:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6229", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:23:02", "EXIF DateTimeDigitized": "2003:09:14 15:23:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "19", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9688fd51102409d261d7c4459bbcc53e9e0d5307bd4627047c576115bc09b6db", "phash": "e3785a6c2c373361", "dhash": "03918aaa834462e2", "phash_int": -2.0557938092498486e+18, "collected_at": "2026-05-22T04:32:56.474172+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 17-12-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 17-12-58 CanonPowerShotS40.jpg", "file_name": "2003-02-15 17-12-58 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 17-12-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1090910.0, "mtime": "2003-02-15T16:12:58+00:00", "mtime_ts": 1045325578.0, "ctime": "2024-12-21T07:57:38.893650+00:00", "sha256_file": "903c05f92415587b5839163f2419df4d25037e2ec12f5987f6fad1dcad2f95db", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 17:12:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3232", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 17:12:58", "EXIF DateTimeDigitized": "2003:02:15 17:12:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "9/20", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65506", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "157", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "450"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a76ffdabf2c47bd92ec1b23116aa039118121cffcf1d3b446aff44f25353917", "phash": "a4961bf2f10fb3c0", "dhash": "bcfc66e694276372", "phash_int": -6.587046674742398e+18, "collected_at": "2026-05-22T04:32:58.317594+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 16-24-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 16-24-50 CanonPowerShotS40.jpg", "file_name": "2003-11-07 16-24-50 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 16-24-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1910412.0, "mtime": "2003-11-07T15:24:50+00:00", "mtime_ts": 1068218690.0, "ctime": "2024-12-21T07:57:51.952072+00:00", "sha256_file": "06f0c9a2f4d80bea22d00b73876e4b35d6ea589ff20e04f83080918e193e3c82", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 16:24:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3681", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 16:24:50", "EXIF DateTimeDigitized": "2003:11:07 16:24:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000083", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a269300d0714033b57a88855f4a2797fc4481138a3dde47e417729faa1a3a9a7", "phash": "cd8f3630cdcf3070", "dhash": "f0ccf070b09cc0e0", "phash_int": -3.6346267910254633e+18, "collected_at": "2026-05-22T04:32:58.466982+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 23-05-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 23-05-03 CanonPowerShotS40.jpg", "file_name": "2003-12-27 23-05-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 23-05-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1798103.0, "mtime": "2003-12-27T22:05:02+00:00", "mtime_ts": 1072562702.0, "ctime": "2024-12-21T07:57:58.621287+00:00", "sha256_file": "b11f368bef8785f986a81f7f2557836dc12ad4561070bfa49fc37b3d30ac5666", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 23:05:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7012", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 23:05:03", "EXIF DateTimeDigitized": "2003:12:27 23:05:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[33, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "187", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "756d98e567d92095454ea939ab89dfc825b52f5f28d530cde21fe16b36fccb9c", "phash": "ef47382825df5a60", "dhash": "23e0486ae7511b0d", "phash_int": -1.2049326302130765e+18, "collected_at": "2026-05-22T04:32:59.124435+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-13 20-01-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-13 20-01-16 CanonPowerShotS40.jpg", "file_name": "2003-03-13 20-01-16 CanonPowerShotS40.jpg", "file_stem": "2003-03-13 20-01-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2774585.0, "mtime": "2003-03-19T09:56:05+00:00", "mtime_ts": 1048067765.0, "ctime": "2024-12-21T07:57:41.590737+00:00", "sha256_file": "34c3cc184f93aae19d3c62f355a7fbf0f5826356daeb3fcebef5f21755e01034", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:13 20:01:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8497", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:03:13 20:01:16", "EXIF DateTimeDigitized": "2003:03:13 20:01:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3cc5675ec3ecbb5b808212c6142ae9986e674ba7101d2d7e6dedb983d61c3165", "phash": "d1edf2990d30c38e", "dhash": "d04b8c1270983828", "phash_int": -3.3197306111369697e+18, "collected_at": "2026-05-22T04:32:59.129434+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-14-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-14-27 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-14-27 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-14-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2124051.0, "mtime": "2003-12-21T17:14:26+00:00", "mtime_ts": 1072026866.0, "ctime": "2024-12-21T07:57:57.191241+00:00", "sha256_file": "984ff5c7e911554e4ade1fb1329b8579e9a4d5340f1dc08f04da102642923b0c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:14:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6774", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:14:27", "EXIF DateTimeDigitized": "2003:12:21 18:14:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "eb82a3001a633c41cce95abe52d5a02692faa46984e41ae23ad7159547d7abb6", "phash": "b9f144f635094f61", "dhash": "9a981a1b1c2d28ee", "phash_int": -5.048177883063169e+18, "collected_at": "2026-05-22T04:32:59.985395+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-35-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-35-13 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-35-13 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-35-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1868750.0, "mtime": "2003-11-16T18:35:13+00:00", "mtime_ts": 1069007713.0, "ctime": "2024-12-21T07:57:53.143110+00:00", "sha256_file": "d86fa672430627d1897b66245929d73b1ac64d2724e962a0c9dea2cef48538e1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:35:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5255", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:35:13", "EXIF DateTimeDigitized": "2003:11:16 19:35:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1647/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000015", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1647"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c4d3d7e540e66b62fcd2d0cf3399c2e89d5aae7d59a407845b65d759d639a0a", "phash": "f76a68a58dd39a04", "dhash": "03151958767c1434", "phash_int": -6.185669385516744e+17, "collected_at": "2026-05-22T04:33:00.001400+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-00-47 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-00-47 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-00-47 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-00-47 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 531181.0, "mtime": "2003-11-29T12:00:47+00:00", "mtime_ts": 1070107247.0, "ctime": "2024-12-21T07:57:54.271147+00:00", "sha256_file": "9c66d45ff68c1e3ac49a01dd3b6600e36f4e49ac98dbe21cf5ab3b51b1fa4e39", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:00:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5779", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:00:47", "EXIF DateTimeDigitized": "2003:11:29 13:00:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 689, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303018", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "82", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1276"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7bb8dcf6eac20c24f86f112c5b11331d9348f4edfb13db4a727a392da8e931e1", "phash": "8eab6da562a3a82e", "dhash": "c3d9f9f9f4726624", "phash_int": -8.166312942214339e+18, "collected_at": "2026-05-22T04:33:00.233486+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-13-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-13-41 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-13-41 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-13-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 805255.0, "mtime": "2002-09-28T13:13:40+00:00", "mtime_ts": 1033218820.0, "ctime": "2024-12-21T07:57:35.930554+00:00", "sha256_file": "0beb51e47926644fc91e29d997f533fed05d5e81cc86ed9c52f4d4d00b2c5ba0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:13:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2952", "EXIF ExposureTime": "1/500", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:13:41", "EXIF DateTimeDigitized": "2002:09:28 13:13:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "241", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "96d0ba2eafe26e4e1e067adddef2f7d3deedb595d68caff3eb4a00b4e19988dc", "phash": "cea131cec79c8c63", "dhash": "e29b6062626499e4", "phash_int": -3.557507466464032e+18, "collected_at": "2026-05-22T04:33:00.281487+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 12-22-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 12-22-12 CanonPowerShotA40.jpg", "file_name": "2003-02-23 12-22-12 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 12-22-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 756727.0, "mtime": "2003-02-23T10:22:10+00:00", "mtime_ts": 1045995730.0, "ctime": "2024-12-21T07:57:39.821680+00:00", "sha256_file": "0647fe60060a09b98384cc8e0e773b2c007d9446e8f41ce4823ffc35b3ad036d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 12:22:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5783", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 12:22:12", "EXIF DateTimeDigitized": "2003:02:23 12:22:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "181/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191908", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "129", "MakerNote MinAperture": "224", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "318", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "11f2d3ca13aa24e99608fe66b749c3ea6fedbcf14dfc1ed78c7d7acc554bdc8b", "phash": "d434ea53b44a35b3", "dhash": "9c943c243e68e98d", "phash_int": -3.1556397936519276e+18, "collected_at": "2026-05-22T04:33:00.462579+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-50-09 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-50-09 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-50-09 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-50-09 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 447027.0, "mtime": "2003-02-09T10:50:08+00:00", "mtime_ts": 1044787808.0, "ctime": "2024-12-21T07:57:38.310631+00:00", "sha256_file": "d64f609489d036b388e0414f2f18b6f5f501d0b274e1ca10d55de2bfeb1af6f7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:50:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4160", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:50:09", "EXIF DateTimeDigitized": "2003:02:09 12:50:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 993, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171775", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "97", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "91", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "730"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5086696fa80f92081933cfb37f0cdbbf92ad3af8ae3fecaa2b0d65ce0aca3bb3", "phash": "ad95da0d17f83906", "dhash": "73f7c6c6c653a307", "phash_int": -5.938600783846558e+18, "collected_at": "2026-05-22T04:33:00.514582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-17 16-20-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-17 16-20-30 CanonPowerShotS40.jpg", "file_name": "2003-02-17 16-20-30 CanonPowerShotS40.jpg", "file_stem": "2003-02-17 16-20-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1801983.0, "mtime": "2003-02-17T15:20:28+00:00", "mtime_ts": 1045495228.0, "ctime": "2024-12-21T07:57:39.118657+00:00", "sha256_file": "3b1f4a97f0b160e0aabb922c42888fd3a010b403b53449299ba2f8ecdfa14f62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:17 16:20:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4703", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:17 16:20:30", "EXIF DateTimeDigitized": "2003:02:17 16:20:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "278", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d522bfaa89bce093bf53aacdc2e2dc62195dae9b6bc06cf60699b14c9e22d50", "phash": "8683e16078b8df4f", "dhash": "80c0f0b9e3e3e1c8", "phash_int": -8.75390544621962e+18, "collected_at": "2026-05-22T04:33:00.739681+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 14-14-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 14-14-21 CanonPowerShotS40.jpg", "file_name": "2003-03-29 14-14-21 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 14-14-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1613332.0, "mtime": "2003-03-30T09:43:39+00:00", "mtime_ts": 1049017419.0, "ctime": "2024-12-21T07:57:42.372762+00:00", "sha256_file": "e5f16c735928809399b97002109e164e370895e3fd9ac613349f7df2432d3b5e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 14:14:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6757", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 14:14:21", "EXIF DateTimeDigitized": "2003:03:29 14:14:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "589/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[47, 177, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "170", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "219", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1178"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8518fc8b76bde770f657c5aceb2ca9d1006c907cd5ffb560a1c372257e5817e9", "phash": "ff007377ce822067", "dhash": "091a932122085015", "phash_int": -7.1930635634991e+16, "collected_at": "2026-05-22T04:33:00.799248+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 17-25-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 17-25-52 CanonPowerShotS40.jpg", "file_name": "2003-04-19 17-25-52 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 17-25-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1329436.0, "mtime": "2003-04-19T17:25:52+00:00", "mtime_ts": 1050773152.0, "ctime": "2024-12-21T07:57:45.497863+00:00", "sha256_file": "bcd1958add451a52a9424dbf03cce8c034682f004a20d2f1b1983b53ceba56f2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 17:25:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3620", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 17:25:52", "EXIF DateTimeDigitized": "2003:04:19 17:25:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "168", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef9f52d2d569d01f104d5bd5512630f3b877d53d57c0b3996f08219f9357e597", "phash": "c61739f8e407d2d2", "dhash": "3369e8ccaaa8f0e0", "phash_int": -4.172802788595085e+18, "collected_at": "2026-05-22T04:33:00.978860+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-58-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-58-28 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-58-28 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-58-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2452526.0, "mtime": "2003-04-06T15:58:26+00:00", "mtime_ts": 1049644706.0, "ctime": "2024-12-21T07:57:44.979846+00:00", "sha256_file": "6125fba2af11ac71e52eca627fc1adedb08c327634d64abdd7972c19b9db1429", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:58:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8148", "EXIF ExposureTime": "1/800", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:58:28", "EXIF DateTimeDigitized": "2003:04:06 16:58:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "822/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000050", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "337", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6576"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e66a226f03533162325c6d9392f779b3b3177d8e58aebca9ddddc271a33660d8", "phash": "d4aa93581a8f33cd", "dhash": "70d06624b49042ec", "phash_int": -3.12252138501602e+18, "collected_at": "2026-05-22T04:33:01.108040+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 17-07-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 17-07-07 CanonPowerShotS40.jpg", "file_name": "2003-10-26 17-07-07 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 17-07-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1737076.0, "mtime": "2003-10-26T16:07:07+00:00", "mtime_ts": 1067184427.0, "ctime": "2024-12-21T07:57:49.395989+00:00", "sha256_file": "55960ae68bdf03fe72951f5d9553359febb11c19e6b52356dda0da5793491bdb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 17:07:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6738", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 17:07:07", "EXIF DateTimeDigitized": "2003:10:26 17:07:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d6ddeef56c1cdf19ce6cb9485e34fb3b3634d896cb8eba7b46d37abd0d908037", "phash": "8f65322853a967ce", "dhash": "0dec60d26363b9c8", "phash_int": -8.114024004854389e+18, "collected_at": "2026-05-22T04:33:01.200757+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 20-56-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 20-56-43 CanonPowerShotS40.jpg", "file_name": "2003-03-07 20-56-43 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 20-56-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1500073.0, "mtime": "2003-03-07T19:56:42+00:00", "mtime_ts": 1047067002.0, "ctime": "2024-12-21T07:57:40.563704+00:00", "sha256_file": "654798494947fcb20f7cfad98ca519e9cf62c274735f3e3867051e0298698f31", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 20:56:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5531", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 20:56:43", "EXIF DateTimeDigitized": "2003:03:07 20:56:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "14", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a8deb929154bd3e99c4ea8b49b7140ccd3401da51b2d57d7cc25edd59ef1b077", "phash": "8d7965873cd30a2b", "dhash": "763639386664e676", "phash_int": -8.252453210664269e+18, "collected_at": "2026-05-22T04:33:01.237912+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-31-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-31-32 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-31-32 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-31-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1405173.0, "mtime": "2003-11-04T09:31:32+00:00", "mtime_ts": 1067938292.0, "ctime": "2024-12-21T07:57:51.476056+00:00", "sha256_file": "6691d8d951e3aaaf7756858e427c50daae6f92b38510c67aac9fc27c7d9f7bf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:31:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5180", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:31:32", "EXIF DateTimeDigitized": "2003:11:04 10:31:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[64, 203, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "126", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "714c3f5c5c8163eda36682bcc87abd6cd05d82d13770cd884283e748a234561d", "phash": "cc4f22063f7e383c", "dhash": "63c3917170b42c9d", "phash_int": -3.724720956581726e+18, "collected_at": "2026-05-22T04:33:01.383090+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 10-58-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 10-58-50 CanonPowerShotS40.jpg", "file_name": "2003-11-09 10-58-50 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 10-58-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1293470.0, "mtime": "2003-11-09T09:58:50+00:00", "mtime_ts": 1068371930.0, "ctime": "2024-12-21T07:57:52.222080+00:00", "sha256_file": "5eeebbada95c90aecf7ac342d0dab61bbf73321e2da18b9a4e1dd7016caab0a6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 10:58:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3739", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 10:58:50", "EXIF DateTimeDigitized": "2003:11:09 10:58:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "7", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6bf19cef8d76bd1277f7068f40583ab402e54bf5f2fc298fedf67b71fffa8823", "phash": "d2e2ad58d28d7962", "dhash": "c085c3cd1cb8e66c", "phash_int": -3.2508453840068623e+18, "collected_at": "2026-05-22T04:33:01.401286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-28 16-55-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-28 16-55-38 CanonPowerShotS40.jpg", "file_name": "2003-12-28 16-55-38 CanonPowerShotS40.jpg", "file_stem": "2003-12-28 16-55-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1902912.0, "mtime": "2003-12-28T15:55:36+00:00", "mtime_ts": 1072626936.0, "ctime": "2024-12-21T07:57:58.691289+00:00", "sha256_file": "eb9b2208b100b38981c46af33d78aafc05f3e835d44729866171beb16d672545", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:28 16:55:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5040", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:28 16:55:38", "EXIF DateTimeDigitized": "2003:12:28 16:55:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 293, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000031", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65414", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3aa56d82af053931f27cb75b4112407fce79a86032ff0a9c2e06c0a091c39e81", "phash": "a046b4b792525df9", "dhash": "cec7a3e9cf1e1cbc", "phash_int": -6.89762707874445e+18, "collected_at": "2026-05-22T04:33:01.619878+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 14-54-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 14-54-55 CanonPowerShotS40.jpg", "file_name": "2003-04-29 14-54-55 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 14-54-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2226708.0, "mtime": "2003-04-29T13:54:54+00:00", "mtime_ts": 1051624494.0, "ctime": "2024-12-21T07:57:46.133884+00:00", "sha256_file": "7122564a2a93299e52cc65db9194d1e3b0f6c13f6cf3efb2998d74e4d8c7b534", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 14:54:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7442", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 14:54:55", "EXIF DateTimeDigitized": "2003:04:29 14:54:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "261", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4a19b6b75cb55f22c2ecb0ff697579b793b2811a3eb6fa39ec414b6771c4838d", "phash": "c67ab864c233f8a5", "dhash": "30300641c0244efa", "phash_int": -4.144797764146694e+18, "collected_at": "2026-05-22T04:33:01.627955+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 15-18-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 15-18-21 CanonPowerShotS40.jpg", "file_name": "2003-04-29 15-18-21 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 15-18-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1714417.0, "mtime": "2003-04-29T14:18:20+00:00", "mtime_ts": 1051625900.0, "ctime": "2024-12-21T07:57:46.189886+00:00", "sha256_file": "2e1d1b81cbb62ede1b0d83e0ed6ea8b15db063a2a07830f28159a79adc5ef6c8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 15:18:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6750", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 15:18:21", "EXIF DateTimeDigitized": "2003:04:29 15:18:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdd32dbdb97a07afc93a3a2d424b004beef4d43bcc4e770ad7ba22f112d099b7", "phash": "834cd5e3aa7099e5", "dhash": "c9e3f1e9c9d9ccce", "phash_int": -8.985571982717184e+18, "collected_at": "2026-05-22T04:33:01.877636+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 14-32-08 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 14-32-08 CanonPowerShotS40.jpg", "file_name": "2003-12-21 14-32-08 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 14-32-08 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1792934.0, "mtime": "2003-12-21T13:32:06+00:00", "mtime_ts": 1072013526.0, "ctime": "2024-12-21T07:57:56.663224+00:00", "sha256_file": "476b4cbc60f94e543844db58c785533d30bf049009d1734f5eb51b3170b4e6d0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 14:32:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5534", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 14:32:08", "EXIF DateTimeDigitized": "2003:12:21 14:32:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[79, 186, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "128", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1c4fcddaa842749de3f8fe72c1bc92d3cb533f8208673291738350a71b0a4858", "phash": "9ccf26a6a933332c", "dhash": "6772b2bab0dcb494", "phash_int": -7.147451586368556e+18, "collected_at": "2026-05-22T04:33:01.899810+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 16-11-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 16-11-50 CanonPowerShotS40.jpg", "file_name": "2003-04-20 16-11-50 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 16-11-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1878338.0, "mtime": "2003-04-20T15:11:48+00:00", "mtime_ts": 1050851508.0, "ctime": "2024-12-21T07:57:45.809873+00:00", "sha256_file": "10414889ab6c28694bed17169b0f68fe62ae47b1237ac4b44fead8bc42b10647", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 16:11:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6537", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 16:11:50", "EXIF DateTimeDigitized": "2003:04:20 16:11:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "35", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f4002b1da8dd1d4d55a86be27121f64db3bc6f9af131d6b0353aa6e8ae48d245", "phash": "855a6dd0b45fd819", "dhash": "f1e1e9edfce4f2b6", "phash_int": -8.837630575614372e+18, "collected_at": "2026-05-22T04:33:02.218167+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-39-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-39-34 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-39-34 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-39-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1948427.0, "mtime": "2003-11-29T11:39:34+00:00", "mtime_ts": 1070105974.0, "ctime": "2024-12-21T07:57:54.002138+00:00", "sha256_file": "f777aa9e5249bfce7fc72cab0ac5fb820015b4002ee217aa2a4c3f01cccb453f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:39:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6799", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:39:34", "EXIF DateTimeDigitized": "2003:11:29 12:39:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1733/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "5", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1733"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5c144a377457630e889dd6aca501226af9b8963f2fd163b73d98f4fa18921c09", "phash": "bfd221dbb7425908", "dhash": "9c1cb86c783b532f", "phash_int": -4.624596639799945e+18, "collected_at": "2026-05-22T04:33:02.265438+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-03-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-03-04 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-03-04 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-03-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1851215.0, "mtime": "2003-12-28T23:03:02+00:00", "mtime_ts": 1072652582.0, "ctime": "2024-12-21T07:57:58.916296+00:00", "sha256_file": "b1613894b9ee2fd7bada4d76be9bbd7abc15c46ad1bbb19d3bd5982624694006", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:03:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7057", "EXIF ExposureTime": "1/320", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:03:04", "EXIF DateTimeDigitized": "2003:12:29 00:03:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "168/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1344"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4d07ccdffff9fbbea670943e1f5ad45cbfe1dc3871c8f4dd6d5e9cca174bfe85", "phash": "e59e48711f4f306c", "dhash": "d2e6c66a1e9e9797", "phash_int": -1.901002342009983e+18, "collected_at": "2026-05-22T04:33:02.404665+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-08 09-38-42 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-08 09-38-42 CanonPowerShotS40.jpg", "file_name": "2003-09-08 09-38-42 CanonPowerShotS40.jpg", "file_stem": "2003-09-08 09-38-42 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1288457.0, "mtime": "2003-09-08T07:38:42+00:00", "mtime_ts": 1063006722.0, "ctime": "2024-12-21T07:57:47.110915+00:00", "sha256_file": "8530bb86d69f0e7ebdaa2c59409d05df17ecf35d8e9886b55158622a49d308a0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:08 09:38:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3545", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:08 09:38:42", "EXIF DateTimeDigitized": "2003:09:08 09:38:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[55, 210, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "119", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c237c69277b0e39f7f4853b200e458230257ef04dc6fd5aa331e13d7c4a8c393", "phash": "d177cc6c944334ce", "dhash": "f0c8c8d89c9ec9f0", "phash_int": -3.3529866308380785e+18, "collected_at": "2026-05-22T04:33:02.458004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 16-01-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 16-01-04 CanonPowerShotS40.jpg", "file_name": "2003-03-29 16-01-04 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 16-01-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1658537.0, "mtime": "2003-03-30T09:46:08+00:00", "mtime_ts": 1049017568.0, "ctime": "2024-12-21T07:57:42.750774+00:00", "sha256_file": "d0644c9e2855b7e44155dcb16b809f78c7a803d5b68043c18bcc071642c837ae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 16:01:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6840", "EXIF ExposureTime": "1/250", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 16:01:04", "EXIF DateTimeDigitized": "2003:03:29 16:01:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "225", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8d1ab0781d8ec3ffd9f365172deba245f7af946efbd60a6526debea348005e4e", "phash": "d5e9c98efc191918", "dhash": "b2c29aaa6868e064", "phash_int": -3.032671258105276e+18, "collected_at": "2026-05-22T04:33:02.759206+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 16-55-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 16-55-04 CanonPowerShotS40.jpg", "file_name": "2003-02-22 16-55-04 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 16-55-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1486178.0, "mtime": "2003-02-22T15:55:02+00:00", "mtime_ts": 1045929302.0, "ctime": "2024-12-21T07:57:39.214660+00:00", "sha256_file": "8d42a315f9858fee30a5430d5a1fd30b3d0d6317e6824019a14f79fc6e18291e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 16:55:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5221", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 16:55:04", "EXIF DateTimeDigitized": "2003:02:22 16:55:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "80", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d0587d8cbed28e7777457da4edbce17037af339120d25dd2613f8d4c37e9bf0c", "phash": "95e6ece361cc6231", "dhash": "8e3cbcfcdcfc3c3c", "phash_int": -7.645162856072322e+18, "collected_at": "2026-05-22T04:33:02.769204+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-58-23 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-58-23 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-58-23 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-58-23 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 347685.0, "mtime": "2003-03-30T10:01:55+00:00", "mtime_ts": 1049018515.0, "ctime": "2024-12-21T07:57:40.313696+00:00", "sha256_file": "8380af10662f5281d04c317659d4ff2174a66dc9a2c36392a18338240b9e2a1a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:58:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3976", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:58:23", "EXIF DateTimeDigitized": "2003:03:06 18:58:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 116, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191951", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "87", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "97", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b364dfe51021f38763a3f980a1dabde957ad1fd79210e4a431bb283b9876502a", "phash": "ba80dd8f0967c333", "dhash": "f6b9a9255b6d6d2d", "phash_int": -5.007759179228134e+18, "collected_at": "2026-05-22T04:33:02.969648+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-59-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-59-36 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-59-36 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-59-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2435348.0, "mtime": "2003-03-30T12:59:34+00:00", "mtime_ts": 1049029174.0, "ctime": "2024-12-21T07:57:43.123787+00:00", "sha256_file": "c7fe6f1f66a11a605ff8e910dc3b52ec6067e6030298adc64bd6b193f5522722", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:59:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7060", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:59:36", "EXIF DateTimeDigitized": "2003:03:30 13:59:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "779936497c54b2c907ee611a9b425184dd0ee3a75958994e50e811a336b76f7a", "phash": "9e2b792010cfcf3c", "dhash": "6b4b69696d6d6d29", "phash_int": -7.04940761309041e+18, "collected_at": "2026-05-22T04:33:03.046183+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-57-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-57-22 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-57-22 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-57-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 416110.0, "mtime": "2003-03-30T10:01:52+00:00", "mtime_ts": 1049018512.0, "ctime": "2024-12-21T07:57:40.299695+00:00", "sha256_file": "3c84fd199457b8ce47fb4f98673f9bf24111ff86906436832d0c81860cc45b8b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:57:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3209", "EXIF ExposureTime": "1/200", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:57:22", "EXIF DateTimeDigitized": "2003:03:06 18:57:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 24, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191949", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2805"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b58b58992189683832f492f01f36384edcd9615b9890e2de31d798dbe9e28352", "phash": "f01f87f08f82d89c", "dhash": "6c0e11080a918de0", "phash_int": -1.1440463130591988e+18, "collected_at": "2026-05-22T04:33:03.121315+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 15-04-16 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 15-04-16 CanonPowerShotA40.jpg", "file_name": "2003-02-15 15-04-16 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 15-04-16 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 447959.0, "mtime": "2003-02-15T13:04:14+00:00", "mtime_ts": 1045314254.0, "ctime": "2024-12-21T07:57:38.662642+00:00", "sha256_file": "5f378ef2de0fe85722f6c56262b1e97ddc5438a1f6651de10c74107bbc095aa4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 15:04:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4893", "EXIF ExposureTime": "1/160", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 15:04:16", "EXIF DateTimeDigitized": "2003:02:15 15:04:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181832", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "294", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "910"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc83775267054831221eb26811383816da701da3a92028e03398886331f1abfb", "phash": "b80ed664a5927bc9", "dhash": "fc7179ed970f2df2", "phash_int": -5.183970393293948e+18, "collected_at": "2026-05-22T04:33:03.230396+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 14-48-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 14-48-12 CanonPowerShotA40.jpg", "file_name": "2003-11-29 14-48-12 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 14-48-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 496604.0, "mtime": "2003-11-29T13:48:12+00:00", "mtime_ts": 1070113692.0, "ctime": "2024-12-21T07:57:54.672159+00:00", "sha256_file": "340cde44b6b8d9e122fc7c44c802288c781d220823662ed4e26ef232eaa2c286", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 14:48:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5330", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 14:48:12", "EXIF DateTimeDigitized": "2003:11:29 14:48:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303047", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2888"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff1f93471ab805a2a7f5742f3a1191a6f8289ef6bdd894355e4c516edcc74766", "phash": "ec9e53d8a8b1b684", "dhash": "3b63663737151216", "phash_int": -1.3965866444300147e+18, "collected_at": "2026-05-22T04:33:03.314460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-19 18-44-19 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-19 18-44-19 CanonPowerShotA40.jpg", "file_name": "2003-03-19 18-44-19 CanonPowerShotA40.jpg", "file_stem": "2003-03-19 18-44-19 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 648709.0, "mtime": "2003-03-30T10:02:53+00:00", "mtime_ts": 1049018573.0, "ctime": "2024-12-21T07:57:41.743742+00:00", "sha256_file": "745e2bc41bbb5811d3fc853feb53102ecd1a157833236adb7d37dec0559c3b48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:19 18:44:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "7551", "EXIF ExposureTime": "1/100", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:19 18:44:19", "EXIF DateTimeDigitized": "2003:03:19 18:44:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[4, 31, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191994", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1281"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "210d9584a3a0a45eaf8b6e8e9dcb64e64039afe6d8692669d3223b3f0180b7f3", "phash": "8126823de669e35f", "dhash": "e1ccdad21cd2fac8", "phash_int": -9.140475191331528e+18, "collected_at": "2026-05-22T04:33:03.397577+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-06 13-46-43 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-06 13-46-43 CanonPowerShotA40.jpg", "file_name": "2003-02-06 13-46-43 CanonPowerShotA40.jpg", "file_stem": "2003-02-06 13-46-43 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 411161.0, "mtime": "2003-02-06T11:46:42+00:00", "mtime_ts": 1044532002.0, "ctime": "2024-12-21T07:57:38.119625+00:00", "sha256_file": "e61dffae3f9aa443cd76094f8263edc548c6eace5bd925b4bf47c2b0bc3b1dd0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:06 13:46:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4825", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:06 13:46:43", "EXIF DateTimeDigitized": "2003:02:06 13:46:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161694", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "195", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1065"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a26ccaeddc54ad3c19e207d996cd98cd21f1430efae07e56515c45a1a6569a89", "phash": "c1613616c7d99c9b", "dhash": "cc86b2b2f2b0f0e4", "phash_int": -4.5122658801784187e+18, "collected_at": "2026-05-22T04:33:03.454714+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-50-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-50-45 CanonPowerShotS40.jpg", "file_name": "2003-02-15 14-50-45 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 14-50-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1527967.0, "mtime": "2003-02-15T13:50:45+00:00", "mtime_ts": 1045317045.0, "ctime": "2024-12-21T07:57:38.623641+00:00", "sha256_file": "6cd35c52da7df7753139fd2ec4ea5852a2bb7c2de08841e842879fd86a00f802", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:50:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5742", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 14:50:45", "EXIF DateTimeDigitized": "2003:02:15 14:50:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3017/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3017"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c1d5c33faf8b90abab08416132cfda6751dea4b90e3b1cf606da635b20ea37f7", "phash": "edd0147b39298e9c", "dhash": "1286e2870323076f", "phash_int": -1.3105249720922565e+18, "collected_at": "2026-05-22T04:33:03.622948+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-05 18-29-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-05 18-29-52 CanonPowerShotS40.jpg", "file_name": "2003-11-05 18-29-52 CanonPowerShotS40.jpg", "file_stem": "2003-11-05 18-29-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1735266.0, "mtime": "2003-11-05T17:29:52+00:00", "mtime_ts": 1068053392.0, "ctime": "2024-12-21T07:57:51.758065+00:00", "sha256_file": "9bbd0c5182678855d9258dcc0ebe3526f86183a6698b7985aa241234c90d8362", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:05 18:29:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6009", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:05 18:29:52", "EXIF DateTimeDigitized": "2003:11:05 18:29:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 271, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "14", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a54de487d25bb5e60c8f776a34b5c0019afa4a673e39e16693769a5342aafc6", "phash": "b16ce527026339f9", "dhash": "82b69bd9fbdbdfde", "phash_int": -5.661898675805014e+18, "collected_at": "2026-05-22T04:33:03.731688+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-52-46 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-52-46 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-52-46 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-52-46 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 308676.0, "mtime": "2003-10-23T20:19:41+00:00", "mtime_ts": 1066940381.0, "ctime": "2024-12-21T07:57:46.763904+00:00", "sha256_file": "a5d17738ec619d2929377b5fd9c51f38b090b6738f617ee2c9cc067138172a7a", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/45", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:52:46", "EXIF DateTimeDigitized": "2003:08:12 15:52:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "11/2", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "109/50", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e95a18613f52a7b18026d3218e3819af397d535fe0a885df067adce0157bf14a", "phash": "a994b7d2e26d1d0c", "dhash": "9fde7383831383c3", "phash_int": -6.227150268376737e+18, "collected_at": "2026-05-22T04:33:03.899694+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 22-19-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 22-19-38 CanonPowerShotS40.jpg", "file_name": "2003-03-07 22-19-38 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 22-19-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1554672.0, "mtime": "2003-03-07T21:19:36+00:00", "mtime_ts": 1047071976.0, "ctime": "2024-12-21T07:57:40.631706+00:00", "sha256_file": "ad031177aa598a9036ed5e4d736cd32b92a83141f460fc1b7c54ed9a1f358aa3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 22:19:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5453", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 22:19:38", "EXIF DateTimeDigitized": "2003:03:07 22:19:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "31", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "169", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6487aba34d23c88789002efb416bac18f759664bb8bbc75390dbc7b958bd8ea", "phash": "9b3566522cd99ca9", "dhash": "985e12726969f1e1", "phash_int": -7.262786320939247e+18, "collected_at": "2026-05-22T04:33:03.911695+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-30-11 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-30-11 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-30-11 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-30-11 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 414613.0, "mtime": "2003-11-29T15:30:11+00:00", "mtime_ts": 1070119811.0, "ctime": "2024-12-21T07:57:54.932168+00:00", "sha256_file": "fc7000499edd31bce4f29bcc3a8267cd50ff2cb9fe784784432226b647f3eef5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:30:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3554", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:30:11", "EXIF DateTimeDigitized": "2003:11:29 16:30:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2786, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303070", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "106", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "90931c49f12a0fb4b009c441563701329fdce3bbd95c075105f7c5aaca9c9734", "phash": "94cb67b2092e3dd8", "dhash": "1e4e22a2b89cac36", "phash_int": -7.724966721468089e+18, "collected_at": "2026-05-22T04:33:04.101004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-07-31 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-07-31 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-07-31 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-07-31 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1272839.0, "mtime": "2003-11-30T12:07:31+00:00", "mtime_ts": 1070194051.0, "ctime": "2024-12-21T07:57:55.717193+00:00", "sha256_file": "8b086f9222a7b7e53487ffd076ecf0b27b6a8bbd1673ef7e0cc0ce9b877ee22d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:07:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5682", "EXIF ExposureTime": "3/10", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:07:31", "EXIF DateTimeDigitized": "2003:11:30 13:07:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "7/4", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[82, 182, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "56", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ad6784fbd5e8af92b438d66478ee494a5904e979313a9c839354dfba40200cde", "phash": "a4db93b25cac0976", "dhash": "cc8d17272fde2ef6", "phash_int": -6.567493237321497e+18, "collected_at": "2026-05-22T04:33:04.735866+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 06-21-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 06-21-04 CanonPowerShotS40.jpg", "file_name": "2003-04-19 06-21-04 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 06-21-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1530334.0, "mtime": "2003-04-19T06:21:04+00:00", "mtime_ts": 1050733264.0, "ctime": "2024-12-21T07:57:45.380860+00:00", "sha256_file": "a6803b29a432d8dedf7be93c2af2ac6a45c751b4f679d641d15ea632f174c592", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 06:21:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4243", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 06:21:04", "EXIF DateTimeDigitized": "2003:04:19 06:21:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31a2fa37c3a1848339157470d6c1abe25606cbfe11ce1eb178cb151d94a20b58", "phash": "f24fd9f0c4c331c1", "dhash": "10210164849c8880", "phash_int": -9.863301652543442e+17, "collected_at": "2026-05-22T04:33:04.809873+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 10-17-09 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 10-17-09 CanonPowerShotA40.jpg", "file_name": "2003-11-01 10-17-09 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 10-17-09 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 420828.0, "mtime": "2003-11-01T09:17:09+00:00", "mtime_ts": 1067678229.0, "ctime": "2024-12-21T07:57:50.613028+00:00", "sha256_file": "40ef72e24dbcfbd7029a7f8de7998c876d5c4898cdfcd03ffc6a763fe02b24e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 10:17:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4008", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 10:17:09", "EXIF DateTimeDigitized": "2003:11:01 10:17:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 32767, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292956", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "85", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "530"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08ecc954246c9cde4c04a91e95b7e20e4b0721ff6fc1974b18141ea84b4a27e0", "phash": "896b72c543967695", "dhash": "f1f3b3f3d3f6f6f9", "phash_int": -8.544609676437326e+18, "collected_at": "2026-05-22T04:33:04.866871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-24 21-18-56 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-24 21-18-56 CanonPowerShotA40.jpg", "file_name": "2003-02-24 21-18-56 CanonPowerShotA40.jpg", "file_stem": "2003-02-24 21-18-56 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 484916.0, "mtime": "2003-02-24T19:18:54+00:00", "mtime_ts": 1046114334.0, "ctime": "2024-12-21T07:57:40.081688+00:00", "sha256_file": "11a9f2bc1367f5beb76e22ad7a97d90b5790962eb2469d1b358db38df4a78288", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:24 21:18:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5384", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:24 21:18:56", "EXIF DateTimeDigitized": "2003:02:24 21:18:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 794, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191919", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1770"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c38176877c4abbb3c165ff4b7556c0d8d7d5c55e6efced18617aac935815d700", "phash": "c93b2c1736c11f8d", "dhash": "7c32b3c9f9f8d2e1", "phash_int": -3.9465121702456115e+18, "collected_at": "2026-05-22T04:33:04.925024+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-13 20-01-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-13 20-01-10 CanonPowerShotS40.jpg", "file_name": "2003-03-13 20-01-10 CanonPowerShotS40.jpg", "file_stem": "2003-03-13 20-01-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2736740.0, "mtime": "2003-03-19T09:57:38+00:00", "mtime_ts": 1048067858.0, "ctime": "2024-12-21T07:57:41.575737+00:00", "sha256_file": "4cbda0b052df83bca8c8a8426ba89909db1bb29a93ab175282aa67dc7eebf92c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:13 20:01:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "8363", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:03:13 20:01:10", "EXIF DateTimeDigitized": "2003:03:13 20:01:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "717ee48a93fac30c63b87de8429def94cf5f2d1f526b93eb8c89927387a28374", "phash": "f5d80e258e9f4529", "dhash": "2db49a7496864e4f", "phash_int": -7.318193849783242e+17, "collected_at": "2026-05-22T04:33:05.154227+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-52-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-52-05 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-52-05 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-52-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1308778.0, "mtime": "2003-11-30T11:52:05+00:00", "mtime_ts": 1070193125.0, "ctime": "2024-12-21T07:57:55.298180+00:00", "sha256_file": "c3a673ea3996ce1add94949b68e626c9deb912abe8d428795ac2368451770bfa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:52:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4704", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:52:05", "EXIF DateTimeDigitized": "2003:11:30 12:52:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[78, 188, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "13", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef49f51d3c4765f80160d5e65e39cbb7c0be9b06b30f5f90625cb3ccf5475adb", "phash": "d2e04f1e30f32d96", "dhash": "c4e0d59d3c745979", "phash_int": -3.2515119398726415e+18, "collected_at": "2026-05-22T04:33:05.205229+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-09-24 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-09-24 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-09-24 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-09-24 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 883963.0, "mtime": "2003-12-28T23:09:22+00:00", "mtime_ts": 1072652962.0, "ctime": "2024-12-21T07:57:58.993299+00:00", "sha256_file": "1f0983cd9ac28df1f0cfac0e570bec209675e04184a4e37f5ab9e40b3115fa95", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:09:24", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4592", "EXIF ExposureTime": "1/500", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:09:24", "EXIF DateTimeDigitized": "2003:12:29 00:09:24", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6211/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "260", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6211"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "20e123dd66b07b8731edc7bbb4ddcabeaf782b64a303da2eef2c5224ac4a74b9", "phash": "f3e338de46843d21", "dhash": "4c1c4a42090c1c1e", "phash_int": -8.727913754627776e+17, "collected_at": "2026-05-22T04:33:05.301706+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-51-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-51-43 CanonPowerShotS40.jpg", "file_name": "2003-02-15 14-51-43 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 14-51-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1662275.0, "mtime": "2003-02-15T13:51:43+00:00", "mtime_ts": 1045317103.0, "ctime": "2024-12-21T07:57:38.652642+00:00", "sha256_file": "16c96fba3d4f717a8af5dd8817163759ae43f3b539fc3f94c6a8b36584e7d99d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:51:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5570", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 14:51:43", "EXIF DateTimeDigitized": "2003:02:15 14:51:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "287", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cfcc976d69edf567eb58bb34f7183e93675e2cf8daf635ceff7ab1159fdf37d5", "phash": "f8054daab1ba4f51", "dhash": "afd5282c1f0f0f0c", "phash_int": -5.749679818983139e+17, "collected_at": "2026-05-22T04:33:05.347897+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-07-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-07-55 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-07-55 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-07-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1784564.0, "mtime": "2003-12-31T22:07:54+00:00", "mtime_ts": 1072908474.0, "ctime": "2024-12-21T07:57:59.646320+00:00", "sha256_file": "a910c0810303f1e0fd4db5bf912f46fcf71a5ed4073a8f76d2e0a92067076196", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:07:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6610", "EXIF ExposureTime": "1/250", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:07:55", "EXIF DateTimeDigitized": "2003:12:31 23:07:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2057/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "253", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2057"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdf773e2f32dce1ebb0384697b3f35d7ad42235f0b3b927a5f1247833f5b4185", "phash": "98e467da06686ab7", "dhash": "258e32b0b8313b65", "phash_int": -7.429699299146438e+18, "collected_at": "2026-05-22T04:33:05.419294+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 22-50-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 22-50-07 CanonPowerShotS40.jpg", "file_name": "2003-10-25 22-50-07 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 22-50-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1682873.0, "mtime": "2003-10-25T21:50:07+00:00", "mtime_ts": 1067118607.0, "ctime": "2024-12-21T07:57:49.234984+00:00", "sha256_file": "f38381e1906280d0a799bccb96f3fe4c31908fd4710c6e18e2b8a74ef3871a2c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 22:50:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5161", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 22:50:07", "EXIF DateTimeDigitized": "2003:10:25 22:50:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1263/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "9", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "181", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1263"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b798fc49028931332d127def2515fc694057192415e92ebe9e72969067ffff20", "phash": "acc51a8fd32a0f66", "dhash": "f3f7f7d7333f3f3f", "phash_int": -5.997358123748553e+18, "collected_at": "2026-05-22T04:33:05.668898+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-06-02 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-06-02 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-06-02 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-06-02 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 378531.0, "mtime": "2003-11-29T16:06:02+00:00", "mtime_ts": 1070121962.0, "ctime": "2024-12-21T07:57:55.032171+00:00", "sha256_file": "00fc668e75c2f61a5e7c9d8c31b834a237cc384d5063392727dd5ca187853d70", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:06:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3991", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:06:02", "EXIF DateTimeDigitized": "2003:11:29 17:06:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 32767, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303082", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "60", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "502"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b82a632245d839f29b298291d8672fc03dcb8bbf0a3ab42902f6e72dd1523807", "phash": "c5c42a8b3f8dd866", "dhash": "e4c4e6e6c6d0c067", "phash_int": -4.1961821752473784e+18, "collected_at": "2026-05-22T04:33:05.671901+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 20-40-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 20-40-38 CanonPowerShotS40.jpg", "file_name": "2003-02-15 20-40-38 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 20-40-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2033414.0, "mtime": "2003-02-15T19:40:38+00:00", "mtime_ts": 1045338038.0, "ctime": "2024-12-21T07:57:39.040655+00:00", "sha256_file": "337a5f6bf20fd43d92bb994b842f6df5bfaec1de7abd45d863cb1bfd1d8cb834", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 20:40:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7440", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 20:40:38", "EXIF DateTimeDigitized": "2003:02:15 20:40:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 268, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e806ccc4069dac007cdf8245b910346cf5468125133014e066367d5bbcbdf415", "phash": "c4e42963b45d5397", "dhash": "c6c7e4a48cc8f274", "phash_int": -4.25923383938113e+18, "collected_at": "2026-05-22T04:33:06.213734+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-02-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-02-16 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-02-16 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-02-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1270046.0, "mtime": "2003-11-30T12:02:16+00:00", "mtime_ts": 1070193736.0, "ctime": "2024-12-21T07:57:55.562188+00:00", "sha256_file": "3848d62454750f255f29ffa1d3a4a1731d4cfc783cf7054f1007e363a08a8259", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:02:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5892", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:02:16", "EXIF DateTimeDigitized": "2003:11:30 13:02:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[90, 178, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "198", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4821eb025d3d7f500977d25146f2a8525d33d2a9e3db34b1ff7ee96e4b10c81", "phash": "dcc3e115ec128fe8", "dhash": "90b8692034343db7", "phash_int": -2.5389382806356255e+18, "collected_at": "2026-05-22T04:33:06.225737+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-19 18-46-15 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-19 18-46-15 CanonPowerShotA40.jpg", "file_name": "2003-03-19 18-46-15 CanonPowerShotA40.jpg", "file_stem": "2003-03-19 18-46-15 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 517001.0, "mtime": "2003-03-30T10:02:58+00:00", "mtime_ts": 1049018578.0, "ctime": "2024-12-21T07:57:41.765743+00:00", "sha256_file": "2e58e307bfa4a52abb24f618581fc86c3eb4d4aa3af9d12ef5a701faef96ff7b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:19 18:46:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4992", "EXIF ExposureTime": "1/200", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:19 18:46:15", "EXIF DateTimeDigitized": "2003:03:19 18:46:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "245/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[13, 14, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191997", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "54", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "98", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "245", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "526"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f37716d5ce361cc85ea28b554cf17f9f37c40ec1f15d8b878c439f3d6c60c726", "phash": "9d78c42cbaa39959", "dhash": "343410573776cefc", "phash_int": -7.099709116160698e+18, "collected_at": "2026-05-22T04:33:06.306736+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-19 06-18-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-19 06-18-22 CanonPowerShotS40.jpg", "file_name": "2003-04-19 06-18-22 CanonPowerShotS40.jpg", "file_stem": "2003-04-19 06-18-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1852935.0, "mtime": "2003-04-19T06:18:22+00:00", "mtime_ts": 1050733102.0, "ctime": "2024-12-21T07:57:45.338858+00:00", "sha256_file": "1188faaf564dcc52f46c5b1ff254cf2433187858b4150bcd9c0311dc50eb2daa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:19 06:18:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6373", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:19 06:18:22", "EXIF DateTimeDigitized": "2003:04:19 06:18:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "2", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6ba01c24552de21c3a94c1c64b9db51f4bd85c2a96df2fb12ac2d66903b6b21b", "phash": "c3c7e3e1b058cce8", "dhash": "c3cbe9689f120b0d", "phash_int": -4.3392491574824274e+18, "collected_at": "2026-05-22T04:33:06.413804+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 13-04-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 13-04-26 CanonPowerShotS40.jpg", "file_name": "2003-11-09 13-04-26 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 13-04-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1478137.0, "mtime": "2003-11-09T12:04:26+00:00", "mtime_ts": 1068379466.0, "ctime": "2024-12-21T07:57:52.325084+00:00", "sha256_file": "2b20cc96bd48bafe44c18dbf0dae63be3201bc44b83b6539d860ba2524e32d8f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 13:04:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5289", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 13:04:26", "EXIF DateTimeDigitized": "2003:11:09 13:04:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "699/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[50, 218, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "699"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a12325049e6248c0e0ab25b728e7c730b711d239d0852ec67bf8b20b219e8498", "phash": "c9bcbfc0494e1c63", "dhash": "767632909090c8d0", "phash_int": -3.9100395438799514e+18, "collected_at": "2026-05-22T04:33:06.425801+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-14-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-14-33 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-14-33 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-14-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 831680.0, "mtime": "2003-12-31T22:14:32+00:00", "mtime_ts": 1072908872.0, "ctime": "2024-12-21T07:57:59.774324+00:00", "sha256_file": "ebce035bc1e28013132f904871eca931b9d99ebbe443c04e066086c114a92445", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:14:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3628", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:14:33", "EXIF DateTimeDigitized": "2003:12:31 23:14:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000056", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "289", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2255fbdcb1b28d72e145fb85015c88d9bbd6b4b4dec19733dbee4e170bdddf33", "phash": "95d5d5d161789487", "dhash": "9c607c0f7c3cb2e0", "phash_int": -7.649973296758746e+18, "collected_at": "2026-05-22T04:33:06.803238+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 03-07-33 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 03-07-33 CanonPowerShotS40.jpg", "file_name": "2003-12-27 03-07-33 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 03-07-33 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2104435.0, "mtime": "2003-12-27T02:07:32+00:00", "mtime_ts": 1072490852.0, "ctime": "2024-12-21T07:57:57.967266+00:00", "sha256_file": "52af5648cac4c25439ef6aed1823e833ac62be1d18a55131976b961a149e5a1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 03:07:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5709", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 03:07:33", "EXIF DateTimeDigitized": "2003:12:27 03:07:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "38", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65530", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fdc56cec55e1583262a8fc9085bc1d915f1b3ed79b72986f4d7c3459a02f644a", "phash": "aa2a460b5cf39376", "dhash": "d38f9d9773dbcdf0", "phash_int": -6.185054123621903e+18, "collected_at": "2026-05-22T04:33:06.833239+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-56-20 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-56-20 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-56-20 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-56-20 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 503957.0, "mtime": "2003-11-29T11:56:20+00:00", "mtime_ts": 1070106980.0, "ctime": "2024-12-21T07:57:54.150143+00:00", "sha256_file": "8821ad0b4587de31ac29878a0bbfcdb5f940ce9d85bc507d73088be4c6320c76", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:56:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5173", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:56:20", "EXIF DateTimeDigitized": "2003:11:29 12:56:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303006", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "108", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3045"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13432776c90df8892f69856053a54c504a34896028877f565d2c63355f5faef1", "phash": "c3e43c3cc81b0fcd", "dhash": "3c8cc0c9c1e159f9", "phash_int": -4.3312707098706534e+18, "collected_at": "2026-05-22T04:33:06.901242+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 18-31-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 18-31-11 CanonPowerShotS40.jpg", "file_name": "2003-11-07 18-31-11 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 18-31-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1348699.0, "mtime": "2003-11-07T17:31:11+00:00", "mtime_ts": 1068226271.0, "ctime": "2024-12-21T07:57:51.964072+00:00", "sha256_file": "0fb864a57fdacd5ab1e645e08dee49639fed6128c29fca9a55e392d215496f87", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 18:31:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3650", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 18:31:11", "EXIF DateTimeDigitized": "2003:11:07 18:31:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000084", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9b5db311d07203cc8e3d457dfc6433b2446173fe60b3b2a17768f2efeac867e", "phash": "9bd66c116c646675", "dhash": "e8696d6d59595b27", "phash_int": -7.217462530725878e+18, "collected_at": "2026-05-22T04:33:07.022510+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-04-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-04-00 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-04-00 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-04-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1556951.0, "mtime": "2003-12-31T22:03:58+00:00", "mtime_ts": 1072908238.0, "ctime": "2024-12-21T07:57:59.533317+00:00", "sha256_file": "74f617feb3ec5569511703d91d85de454edccc978acf20c557d6b6ec406dc1ca", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:04:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4637", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:04:00", "EXIF DateTimeDigitized": "2003:12:31 23:04:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "22", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c76cd72e24238a8762e9a085ff4c02d61cc00a51c03b9eb8fc0d3dfae5d74308", "phash": "c94dcea632cd7069", "dhash": "e2e393999bbbe389", "phash_int": -3.9412668856670986e+18, "collected_at": "2026-05-22T04:33:07.071743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 17-43-47 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 17-43-47 CanonPowerShotA40.jpg", "file_name": "2003-02-01 17-43-47 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 17-43-47 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 451576.0, "mtime": "2003-02-01T15:43:46+00:00", "mtime_ts": 1044114226.0, "ctime": "2024-12-21T07:57:37.886617+00:00", "sha256_file": "51cab11e23db776ab6d75bd9459c0be938e1ae1735d71c83dd138014353394f6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 17:43:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3924", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 17:43:47", "EXIF DateTimeDigitized": "2003:02:01 17:43:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 3562, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161658", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "39", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "508"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9c4648dcab079fb2c491b116cb0dafcf073cd6579fd8649330e28f4bd145ee82", "phash": "c23e0d6d6193763a", "dhash": "f0b0ccccccd4d0f0", "phash_int": -4.450104618355821e+18, "collected_at": "2026-05-22T04:33:07.160799+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 13-09-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 13-09-03 CanonPowerShotS40.jpg", "file_name": "2003-10-08 13-09-03 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 13-09-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1257653.0, "mtime": "2003-10-09T06:47:59+00:00", "mtime_ts": 1065682079.0, "ctime": "2024-12-21T07:57:48.377956+00:00", "sha256_file": "34bf172fa249a7282de9d67ce0ff220890df66c23bd3a49bbf367682b558c142", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 13:09:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5314", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 13:09:03", "EXIF DateTimeDigitized": "2003:10:08 13:09:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 239, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "89", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a2789d00a345de3520e52d530f3f1e92973070f37c1b02917ba83a8917e200dc", "phash": "ce35d063f16e8cd0", "dhash": "dadeb466ca61e1e0", "phash_int": -3.5877324004598385e+18, "collected_at": "2026-05-22T04:33:07.286871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 12-10-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 12-10-52 CanonPowerShotS40.jpg", "file_name": "2003-03-08 12-10-52 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 12-10-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1523349.0, "mtime": "2003-03-08T11:10:50+00:00", "mtime_ts": 1047121850.0, "ctime": "2024-12-21T07:57:40.698708+00:00", "sha256_file": "1cfd460923f897eb2434431267af1f3eb911657343c8f14ed0a95ecc5ef99619", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 12:10:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4065", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 12:10:52", "EXIF DateTimeDigitized": "2003:03:08 12:10:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "613/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[42, 292, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000046", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "115", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "613"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "de88a848db387259f23d4013e72c93e306b5345cbbcc7d6863313a557463526a", "phash": "c3688cc43733d9dc", "dhash": "e0b28bccccc0e0f0", "phash_int": -4.366085064368072e+18, "collected_at": "2026-05-22T04:33:07.348446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-08 17-43-46 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-08 17-43-46 CanonPowerShotA40.jpg", "file_name": "2003-02-08 17-43-46 CanonPowerShotA40.jpg", "file_stem": "2003-02-08 17-43-46 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 498077.0, "mtime": "2003-02-08T15:43:44+00:00", "mtime_ts": 1044719024.0, "ctime": "2024-12-21T07:57:38.150626+00:00", "sha256_file": "e9cb733d77530c838f0464c7e970f033356c8bfcc9a999b1e3fd71d04abc793e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:08 17:43:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4430", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:08 17:43:46", "EXIF DateTimeDigitized": "2003:02:08 17:43:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 2012, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161699", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "51", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "505"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "82e57279f29c5a818c5c4fa322fff2398b4dde494ca9f8095623d08dd1c12b43", "phash": "c930c76bb4cb2674", "dhash": "f2f2b2333173e1f0", "phash_int": -3.9494376077952845e+18, "collected_at": "2026-05-22T04:33:07.397466+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-58-27 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-58-27 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-58-27 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-58-27 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 568402.0, "mtime": "2003-11-29T11:58:27+00:00", "mtime_ts": 1070107107.0, "ctime": "2024-12-21T07:57:54.202144+00:00", "sha256_file": "ce126b33f8a27b6b09dc8fbc41d9f72d9f61133160467fd98c0dd0861f3073e2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:58:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6056", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:58:27", "EXIF DateTimeDigitized": "2003:11:29 12:58:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 343, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303011", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "3345"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c91fa50ac80e978d46e93d123f6a24a69511423624f5b989870d5cd0a7297f98", "phash": "9c48dba5878f9e90", "dhash": "f0b3b1e2a63e3a38", "phash_int": -7.185251701479203e+18, "collected_at": "2026-05-22T04:33:07.443465+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-13 11-47-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-13 11-47-43 CanonPowerShotS40.jpg", "file_name": "2003-12-13 11-47-43 CanonPowerShotS40.jpg", "file_stem": "2003-12-13 11-47-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1602040.0, "mtime": "2003-12-13T10:47:43+00:00", "mtime_ts": 1071312463.0, "ctime": "2024-12-21T07:57:56.195209+00:00", "sha256_file": "eaf624cbd422f5f449a088627649b23b3f47f0f55092be99f6368195bc20db86", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:13 11:47:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5570", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:13 11:47:43", "EXIF DateTimeDigitized": "2003:12:13 11:47:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "43dcf0c418fa4ca0e0e12cbc3915f99c6c97052068cd693797a70fd9a16c42de", "phash": "8be6381dc1661e8f", "dhash": "a33869c1d278b890", "phash_int": -8.365937557344215e+18, "collected_at": "2026-05-22T04:33:07.576469+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-06-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-06-51 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-06-51 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-06-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1540988.0, "mtime": "2003-12-03T16:08:08+00:00", "mtime_ts": 1070467688.0, "ctime": "2024-12-21T07:57:53.786131+00:00", "sha256_file": "15c8503165dfa3edf4aba8cdde45522e1a4ef881d47c999692baea06bba2a918", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:06:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "4592", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:06:51", "EXIF DateTimeDigitized": "2003:11:29 12:06:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "597/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000065", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "20", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4124588630879074bb503e92e4f9dfcc985a9229b5ef148bb6f3f7e3d0e87c2a", "phash": "944cdf54b98ac837", "dhash": "7666e7b71ebcfc58", "phash_int": -7.76058250288308e+18, "collected_at": "2026-05-22T04:33:07.614469+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-53-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-53-25 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-53-25 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-53-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 318699.0, "mtime": "2003-11-01T00:53:25+00:00", "mtime_ts": 1067648005.0, "ctime": "2024-12-21T07:57:50.446023+00:00", "sha256_file": "8095aa39169813c9a0c7ceb0bdbed12a02e6a8df92cfebb99656a8ed553ad58b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:53:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4878", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:53:25", "EXIF DateTimeDigitized": "2003:11:01 01:53:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 7814, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292937", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "47", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9d0db9d947dcdbd295f94f54ed7b51f9c88825de008acaac461a7ea344fed598", "phash": "84393c3764636767", "dhash": "beb8fae3e2e6ef74", "phash_int": -8.919031378425453e+18, "collected_at": "2026-05-22T04:33:07.985900+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-09-33 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-09-33 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-09-33 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-09-33 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 405646.0, "mtime": "2003-02-09T10:09:32+00:00", "mtime_ts": 1044785372.0, "ctime": "2024-12-21T07:57:38.247629+00:00", "sha256_file": "dbd959034c1587391f9a17f96b6e1fa3290179cab1b6dddcafa3206a7ceec9da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:09:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3858", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:09:33", "EXIF DateTimeDigitized": "2003:02:09 12:09:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 596, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171741", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "82", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "839"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fc5341f693dc3000e622fcc86099b543aa2565bba2f2588920f8d04519f0e466", "phash": "b549704853d29fb9", "dhash": "8f07564756372e1c", "phash_int": -5.383648423598449e+18, "collected_at": "2026-05-22T04:33:08.195756+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 18-17-00 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 18-17-00 CanonPowerShotS40.jpg", "file_name": "2003-04-06 18-17-00 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 18-17-00 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1842753.0, "mtime": "2003-04-06T17:16:58+00:00", "mtime_ts": 1049649418.0, "ctime": "2024-12-21T07:57:45.108851+00:00", "sha256_file": "5ed5fe630ae15dfe6eb5516e14d73873c6003bb375e6519d0cd83663ad9a64a3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 18:17:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5802", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 18:17:00", "EXIF DateTimeDigitized": "2003:04:06 18:17:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000060", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "179", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a3152f788feda1cbf0456ab8532ffb5304f9591ab0170729731e61fbbe251a5", "phash": "c53f107273c60abb", "dhash": "f44af24012c7e0f8", "phash_int": -4.233647040950302e+18, "collected_at": "2026-05-22T04:33:08.505722+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 21-14-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 21-14-45 CanonPowerShotS40.jpg", "file_name": "2003-12-26 21-14-45 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 21-14-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2261859.0, "mtime": "2003-12-26T20:14:44+00:00", "mtime_ts": 1072469684.0, "ctime": "2024-12-21T07:57:57.926265+00:00", "sha256_file": "d16b1fa0b66ceec00cec825ca8b2a8986c3c80ec488d15a5f6caf39c68b0d63c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 21:14:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7600", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 21:14:45", "EXIF DateTimeDigitized": "2003:12:26 21:14:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000019", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "239", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7bdcd864f302064802dcaa27c31e264274523570dc727bf86d474b7d8f62c44e", "phash": "9a99ad9a652d538c", "dhash": "fab8b919893937e6", "phash_int": -7.306618041797881e+18, "collected_at": "2026-05-22T04:33:08.659042+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 14-25-57 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 14-25-57 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 14-25-57 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 14-25-57 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 362418.0, "mtime": "2003-10-23T20:19:37+00:00", "mtime_ts": 1066940377.0, "ctime": "2024-12-21T07:57:46.626900+00:00", "sha256_file": "4d682901fe6f5063026788e87a812912b94fa1b32b118734d1df6be15ce17eeb", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/30", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 14:25:57", "EXIF DateTimeDigitized": "2003:08:12 14:25:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "5", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "22/25", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "984839eb2aba58e5574ae9ab55a12d8b8858151917332ed50450f09b758ada37", "phash": "e1ad4f4195ab4d13", "dhash": "428615a79cc0c965", "phash_int": -2.1850031011023224e+18, "collected_at": "2026-05-22T04:33:08.944774+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 13-55-59 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 13-55-59 CanonPowerShotA40.jpg", "file_name": "2003-02-15 13-55-59 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 13-55-59 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 420313.0, "mtime": "2003-02-15T11:55:58+00:00", "mtime_ts": 1045310158.0, "ctime": "2024-12-21T07:57:38.445636+00:00", "sha256_file": "0c6a5b7e5a8d3cf77c217c9afccfc47c1d39d71efdaadc102cec8dc7766f01fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 13:55:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4928", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 13:55:59", "EXIF DateTimeDigitized": "2003:02:15 13:55:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181809", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "194", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "caa0abcad3af53e31eff298c6a33626d8dca6061721e0b87ac1119827b0dda07", "phash": "d19db4070e786b3a", "dhash": "38389a9a68cc8da8", "phash_int": -3.342317406038496e+18, "collected_at": "2026-05-22T04:33:09.010957+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-53-30 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-53-30 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-53-30 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-53-30 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 447205.0, "mtime": "2003-11-29T11:53:30+00:00", "mtime_ts": 1070106810.0, "ctime": "2024-12-21T07:57:54.063140+00:00", "sha256_file": "ebc6bcf74aa03084fae5f2c2bbc7333c9eac4d656fbe3b6c74d6a347076f73eb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:53:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4965", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:53:30", "EXIF DateTimeDigitized": "2003:11:29 12:53:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 367, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292997", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "85", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "840"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "62a6357974c5bde640a209595687509952835fe79fa5d0b2ac5717258fbd5415", "phash": "cc1b7f6d0491e10f", "dhash": "3a3cf8f4649321e5", "phash_int": -3.7392549593962327e+18, "collected_at": "2026-05-22T04:33:09.132970+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-24 17-50-47 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-24 17-50-47 CanonPowerShotS40.jpg", "file_name": "2003-02-24 17-50-47 CanonPowerShotS40.jpg", "file_stem": "2003-02-24 17-50-47 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 3248726.0, "mtime": "2003-03-08T11:23:18+00:00", "mtime_ts": 1047122598.0, "ctime": "2024-12-21T07:57:40.033687+00:00", "sha256_file": "2d143ed8d5896e9766fe42f1e331d58cc276ab9cef62c2440846379e12f5c463", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:24 17:50:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1180", "Thumbnail JPEGInterchangeFormatLength": "9906", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:02:24 17:50:47", "EXIF DateTimeDigitized": "2003:02:24 17:50:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[7, 0, 1, 0, 3, 0, 40, 0, 0, 0, 56, 2, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1704", "EXIF ExifImageLength": "2272", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Unknown", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Unknown", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "215", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "66ad2c32bc7d9e16cc8846a23c0b471bee36980a950ff7cef43193d02f36e065", "phash": "d71b6460191b273f", "dhash": "c1c05cd8888c8ec6", "phash_int": -2.9466511672830095e+18, "collected_at": "2026-05-22T04:33:09.182674+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 18-10-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 18-10-37 CanonPowerShotS40.jpg", "file_name": "2003-12-21 18-10-37 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 18-10-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1826811.0, "mtime": "2003-12-21T17:10:36+00:00", "mtime_ts": 1072026636.0, "ctime": "2024-12-21T07:57:57.129239+00:00", "sha256_file": "bd281f0c9d3250ba735ebfd757de88e27d1b93bbbd496477001b490260e94983", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 18:10:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5526", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 18:10:37", "EXIF DateTimeDigitized": "2003:12:21 18:10:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "663/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 352, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000040", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65518", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "663"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b0170ed48e4179970917756cf4235511cf702a7905f460e4e8b52b5c520ec748", "phash": "8bd06dc28cb563b9", "dhash": "e0f9d8f9fdcb5bb3", "phash_int": -8.372071024929971e+18, "collected_at": "2026-05-22T04:33:09.310362+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 18-58-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 18-58-43 CanonPowerShotS40.jpg", "file_name": "2003-10-08 18-58-43 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 18-58-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1506097.0, "mtime": "2003-10-09T06:48:05+00:00", "mtime_ts": 1065682085.0, "ctime": "2024-12-21T07:57:48.400957+00:00", "sha256_file": "cbb165e5688637c3fea48cdd60a91a06305000632fd66bdd585723baf34bb549", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 18:58:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4294", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 18:58:43", "EXIF DateTimeDigitized": "2003:10:08 18:58:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "21", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c75f10b122d2e7eda8e6cbd9e760c1b2b53bec2d595ea76b75e66e0764995fc3", "phash": "9b611cc7388d53b3", "dhash": "e4d0dadac96878b8", "phash_int": -7.250482283116932e+18, "collected_at": "2026-05-22T04:33:09.317372+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 14-06-21 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 14-06-21 CanonPowerShotS40.jpg", "file_name": "2003-04-05 14-06-21 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 14-06-21 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2203473.0, "mtime": "2003-04-05T13:06:20+00:00", "mtime_ts": 1049547980.0, "ctime": "2024-12-21T07:57:43.819809+00:00", "sha256_file": "e6b8819b134aa1ff6fbfa2e4ece496a0efe1053f455cc2be3a53fa3983bfdf43", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 14:06:21", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7617", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 14:06:21", "EXIF DateTimeDigitized": "2003:04:05 14:06:21", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "271", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2fffd476855da9e0a711ba92fd1936ab8045849ca153c65f0642872adb5405d5", "phash": "d39cd53792767009", "dhash": "6ce8f3c9d98c4850", "phash_int": -3.198447200682742e+18, "collected_at": "2026-05-22T04:33:09.536973+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-18 23-06-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-18 23-06-54 CanonPowerShotS40.jpg", "file_name": "2003-03-18 23-06-54 CanonPowerShotS40.jpg", "file_stem": "2003-03-18 23-06-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2255894.0, "mtime": "2003-03-18T22:06:52+00:00", "mtime_ts": 1048025212.0, "ctime": "2024-12-21T07:57:41.682740+00:00", "sha256_file": "ee93a294c93e6cbc995ebe0a00b04ea2f6593797cfe73908732ec6e9ed0e16ff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:18 23:06:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7852", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:18 23:06:54", "EXIF DateTimeDigitized": "2003:03:18 23:06:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65491", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d88c14a909383ec5503536f19d6e36bfbfcdb69f1151bd60732e2c65b96f74a7", "phash": "d56a901f7441beb1", "dhash": "d061a4466a62d6f6", "phash_int": -3.0684817313307203e+18, "collected_at": "2026-05-22T04:33:09.546975+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 13-08-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 13-08-32 CanonPowerShotS40.jpg", "file_name": "2003-10-08 13-08-32 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 13-08-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1650770.0, "mtime": "2003-10-09T06:47:52+00:00", "mtime_ts": 1065682072.0, "ctime": "2024-12-21T07:57:48.358956+00:00", "sha256_file": "3e5600afb29c17891a2332a31db6b672e556f7b3d797c47f9af3dc96c0b96876", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 13:08:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5297", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 13:08:32", "EXIF DateTimeDigitized": "2003:10:08 13:08:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[21, 246, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "75", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e14754766032105803500e84f04bb97d258e887efb458b22b68ff18a5b1fe9fe", "phash": "da398e233266d933", "dhash": "333333a588e8e9ec", "phash_int": -2.7219882179481533e+18, "collected_at": "2026-05-22T04:33:10.123490+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-14 23-12-33 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-14 23-12-33 CanonPowerShotA40.jpg", "file_name": "2003-02-14 23-12-33 CanonPowerShotA40.jpg", "file_stem": "2003-02-14 23-12-33 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 406274.0, "mtime": "2003-02-14T21:12:32+00:00", "mtime_ts": 1045257152.0, "ctime": "2024-12-21T07:57:38.431635+00:00", "sha256_file": "a0aad69e2a7dd93133476051816715ac7e131291f0fed041ace71dcfd51d39fe", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:14 23:12:33", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4175", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:14 23:12:33", "EXIF DateTimeDigitized": "2003:02:14 23:12:33", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1381, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181803", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "120", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "952"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "53a14c89f9257f21a6960139a94de0681e7af64210a7bfee071b020fa58df4b3", "phash": "c73b3c62ce99c12c", "dhash": "e9d7d2e8e8c8e2e2", "phash_int": -4.090609441465319e+18, "collected_at": "2026-05-22T04:33:10.169489+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-21-07 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-21-07 E5000.jpg", "file_name": "2003-05-25 11-21-07 E5000.jpg", "file_stem": "2003-05-25 11-21-07 E5000", "file_ext": ".jpg", "file_size": 704958.0, "mtime": "2003-05-25T18:57:06+00:00", "mtime_ts": 1053889026.0, "ctime": "2024-12-21T07:57:46.443894+00:00", "sha256_file": "6849a3cd987a8964a8b373a13757224d65a0de45b0612c3adce1d1e2badaea28", "exif": {"Image Make": "Canon", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:05:25 11:21:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1008", "Thumbnail JPEGInterchangeFormatLength": "6885", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:05:25 11:21:07", "EXIF DateTimeDigitized": "2003:05:25 11:21:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "509701/65536", "EXIF ApertureValue": "318893/65536", "EXIF ExposureBiasValue": "-1/3", "EXIF MakerNote": "[5, 0, 4, 0, 3, 0, 27, 0, 0, 0, 244, 1, 0, 0, 6, 0, 2, 0, 32, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1920", "EXIF ExifImageLength": "2560", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "0", "MakerNote OwnerName": "", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "156", "MakerNote TargetExposureTime": "249", "MakerNote ExposureCompensation": "65526", "MakerNote WhiteBalance": "Unknown", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote Unknown": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1920.0, "height": 2560.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32112d762bbe44990ba5524cde8dd23d26916601ada943cfa38f4cf7bf271509", "phash": "f103dc1c26e3eb58", "dhash": "c95adccd9e1f9803", "phash_int": -1.0797774721691209e+18, "collected_at": "2026-05-22T04:33:10.312814+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 19-38-15 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 19-38-15 CanonPowerShotA40.jpg", "file_name": "2003-02-22 19-38-15 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 19-38-15 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 538312.0, "mtime": "2003-02-22T17:38:14+00:00", "mtime_ts": 1045935494.0, "ctime": "2024-12-21T07:57:39.603673+00:00", "sha256_file": "47565000a185069b14af7eb9358d971a6905c4251f4ddee3850f0b3197940291", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 19:38:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5194", "EXIF ExposureTime": "1/80", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 19:38:15", "EXIF DateTimeDigitized": "2003:02:22 19:38:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1408, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181866", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1931"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c07f30f76ff34f26617ee35fd604556947734f99fb71dc18c0d565f3999c0aeb", "phash": "f60164d66dc619a7", "dhash": "858cdc7028a8ec26", "phash_int": -7.201835932750906e+17, "collected_at": "2026-05-22T04:33:10.332813+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 12-04-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 12-04-32 CanonPowerShotS40.jpg", "file_name": "2003-12-20 12-04-32 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 12-04-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1668979.0, "mtime": "2003-12-20T11:04:30+00:00", "mtime_ts": 1071918270.0, "ctime": "2024-12-21T07:57:56.432216+00:00", "sha256_file": "74c13f406dd08f059a6810692cf98f361b5799f1b5dff9005cd8574bb9f64088", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 12:04:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7505", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 12:04:32", "EXIF DateTimeDigitized": "2003:12:20 12:04:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "3", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "feec1f0ca7a8a8d89f95b966a32e87ca116a0ae282c7c032298e441eab571d83", "phash": "9a2017cb5c1a6f76", "dhash": "a8adbd3171617971", "phash_int": -7.340841230422872e+18, "collected_at": "2026-05-22T04:33:10.610829+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-57-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-57-18 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-57-18 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-57-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1877543.0, "mtime": "2003-04-06T15:57:16+00:00", "mtime_ts": 1049644636.0, "ctime": "2024-12-21T07:57:44.891844+00:00", "sha256_file": "445bfef8209e46c8b9bb5094f64abe59c061a5fb2a7a04b5360068852cc3eeee", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:57:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5475", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:57:18", "EXIF DateTimeDigitized": "2003:04:06 16:57:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "325", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "121f8f135735a8313fd385aad6329df95c54ddc8611205980d04639910900078", "phash": "81c48f1f1cbb4d36", "dhash": "f6c68598bcd25dff", "phash_int": -9.095987983592764e+18, "collected_at": "2026-05-22T04:33:10.616828+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-57-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-57-25 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-57-25 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-57-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 418678.0, "mtime": "2003-11-29T12:57:25+00:00", "mtime_ts": 1070110645.0, "ctime": "2024-12-21T07:57:54.611157+00:00", "sha256_file": "709df96dbe36b1181cd87532989a7d9b117f408274e0e716a619c4e38bfa6cb0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:57:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5247", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:57:25", "EXIF DateTimeDigitized": "2003:11:29 13:57:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 497, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303045", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "922"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a6c0676dda634efd4493229a41b944d687c83dce2088beeafb8bdf484f9e7c45", "phash": "9cf9611bcd98c8e4", "dhash": "920cb4743474e4e4", "phash_int": -7.135565362550487e+18, "collected_at": "2026-05-22T04:33:11.029675+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-29-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-29-52 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-29-52 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-29-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1458988.0, "mtime": "2002-11-13T08:29:50+00:00", "mtime_ts": 1037176190.0, "ctime": "2024-12-21T07:57:37.094592+00:00", "sha256_file": "ea719cd8ac760f10b43dae6b61b1f52c11bfa252bd42c8f794e3d9506571c9d2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:29:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2107", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:29:52", "EXIF DateTimeDigitized": "2002:11:13 09:29:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 258, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "542c118ebafae16ea266c03150b13f124bdda45a677ceab6944ce624c2761758", "phash": "d13a5c38707874fc", "dhash": "f0f0e0d8f8f0f0f0", "phash_int": -3.370279973658529e+18, "collected_at": "2026-05-22T04:33:11.055237+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 08-57-44 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 08-57-44 E5000.jpg", "file_name": "2003-05-25 08-57-44 E5000.jpg", "file_stem": "2003-05-25 08-57-44 E5000", "file_ext": ".jpg", "file_size": 1071768.0, "mtime": "2003-05-25T18:58:12+00:00", "mtime_ts": 1053889092.0, "ctime": "2024-12-21T07:57:46.365891+00:00", "sha256_file": "b13c24f02e6fc04b68c355176530f4cb2e48630e21cd7adcdaeeefd15258bc76", "exif": {"Image Make": "Canon", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:05:25 08:57:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1008", "Thumbnail JPEGInterchangeFormatLength": "7117", "EXIF ISOSpeedRatings": "800", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:05:25 08:57:44", "EXIF DateTimeDigitized": "2003:05:25 08:57:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "77939/32768", "EXIF ApertureValue": "135685/32768", "EXIF ExposureBiasValue": "-2/3", "EXIF MakerNote": "[5, 0, 4, 0, 3, 0, 27, 0, 0, 0, 244, 1, 0, 0, 6, 0, 2, 0, 32, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1920", "EXIF ExifImageLength": "2560", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "0", "MakerNote OwnerName": "", "MakerNote AutoISO": "0", "MakerNote BaseISO": "256", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "133", "MakerNote TargetExposureTime": "76", "MakerNote ExposureCompensation": "65514", "MakerNote WhiteBalance": "Unknown", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote Unknown": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1920.0, "height": 2560.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9ca1c9b285a38058ea3ac73163fc20fab8c5328c9bc15fd13385fe425e78c048", "phash": "b1bb4c608dbde219", "dhash": "3b19191c5e9d1372", "phash_int": -5.639830130772811e+18, "collected_at": "2026-05-22T04:33:12.087278+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-10 13-58-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-10 13-58-49 CanonPowerShotS40.jpg", "file_name": "2003-11-10 13-58-49 CanonPowerShotS40.jpg", "file_stem": "2003-11-10 13-58-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1388834.0, "mtime": "2003-11-10T12:58:49+00:00", "mtime_ts": 1068469129.0, "ctime": "2024-12-21T07:57:52.478089+00:00", "sha256_file": "b95e033927068ed8a94d3ca0f183227dfceb20f87763f05a14c34fa4df7e5a71", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:10 13:58:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4881", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:10 13:58:49", "EXIF DateTimeDigitized": "2003:11:10 13:58:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[66, 367, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "130", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49cba0d7fa4715f4269375fcdf7bca9051286c801be918f0f8877cf44675540b", "phash": "851b12fdbaed01d4", "dhash": "fad3d2d3e2c2a6cc", "phash_int": -8.855463361321828e+18, "collected_at": "2026-05-22T04:33:12.169283+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 01-27-54 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 01-27-54 CanonPowerShotA40.jpg", "file_name": "2003-11-01 01-27-54 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 01-27-54 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 396978.0, "mtime": "2003-11-01T00:27:54+00:00", "mtime_ts": 1067646474.0, "ctime": "2024-12-21T07:57:50.369020+00:00", "sha256_file": "64d96f79d5e344b79b14464bc5145766bab1e1e7b6d204ffde584e08878159b3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 01:27:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4313", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 01:27:54", "EXIF DateTimeDigitized": "2003:11:01 01:27:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 348, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292927", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2096"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bd6786c1cb9b6ecece1200cb392e30a77fc94a296f7549e751a6a61cad61b88b", "phash": "e056a57a05eb720f", "dhash": "84848585251553c2", "phash_int": -2.2814542177126682e+18, "collected_at": "2026-05-22T04:33:12.365287+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 17-57-11 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 17-57-11 CanonPowerShotS40.jpg", "file_name": "2003-03-08 17-57-11 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 17-57-11 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2266195.0, "mtime": "2003-03-09T17:43:01+00:00", "mtime_ts": 1047231781.0, "ctime": "2024-12-21T07:57:40.817712+00:00", "sha256_file": "de78164b847d1146461cd3bb49374348d8747100bb913b536a75200694e60943", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 17:57:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "5758", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 17:57:11", "EXIF DateTimeDigitized": "2003:03:08 17:57:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "27", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "004d9108a0eacbdbe30122c7be62086440c3776a6203ceb642392beac82477ce", "phash": "8db427a67887533c", "dhash": "6696d092b2527252", "phash_int": -8.235914222613605e+18, "collected_at": "2026-05-22T04:33:12.507292+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-26 16-06-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-26 16-06-15 CanonPowerShotS40.jpg", "file_name": "2003-10-26 16-06-15 CanonPowerShotS40.jpg", "file_stem": "2003-10-26 16-06-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1524971.0, "mtime": "2003-10-26T15:06:15+00:00", "mtime_ts": 1067180775.0, "ctime": "2024-12-21T07:57:49.344987+00:00", "sha256_file": "4ee8e493cc27a6daa9cfd7af8d2e1a4c1e140de3eb3ce16c07a14f7f4b92dc7c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:26 16:06:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7102", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:26 16:06:15", "EXIF DateTimeDigitized": "2003:10:26 16:06:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "64", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2626423099cb27504c1568ad0741dec8cf1b3a3d7da4109d972b130f26bd1f8", "phash": "853172e61d48fb0f", "dhash": "c8cceaf2666ca1f8", "phash_int": -8.849165460146947e+18, "collected_at": "2026-05-22T04:33:12.580294+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 23-05-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 23-05-38 CanonPowerShotS40.jpg", "file_name": "2003-03-06 23-05-38 CanonPowerShotS40.jpg", "file_stem": "2003-03-06 23-05-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1737401.0, "mtime": "2003-03-06T22:05:36+00:00", "mtime_ts": 1046988336.0, "ctime": "2024-12-21T07:57:40.533703+00:00", "sha256_file": "920e5a782ca25253f9755d188cceebec779e64e3ef7880b92c998383e6963645", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 23:05:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4891", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:06 23:05:38", "EXIF DateTimeDigitized": "2003:03:06 23:05:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "23", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1db6b70fc4fec30e7e5f2b15a948628a13b88be3e69758f958316cee1e9fe927", "phash": "e239b5951a4a6d65", "dhash": "9c8e87e9cdc7ccc8", "phash_int": -2.145484095469491e+18, "collected_at": "2026-05-22T04:33:12.643298+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-03 00-53-20 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-03 00-53-20 CanonPowerShotA40.jpg", "file_name": "2003-02-03 00-53-20 CanonPowerShotA40.jpg", "file_stem": "2003-02-03 00-53-20 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 503036.0, "mtime": "2003-02-02T22:53:18+00:00", "mtime_ts": 1044226398.0, "ctime": "2024-12-21T07:57:38.068623+00:00", "sha256_file": "223e6bf7dfe91d706c1c5bb37a3696e2917a47be1337edddd7d0a1f56bb9eac6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:03 00:53:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4764", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:03 00:53:20", "EXIF DateTimeDigitized": "2003:02:03 00:53:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "251/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1368, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161685", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "112", "MakerNote MinAperture": "207", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "32", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "2", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "6330"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "609a91960998d4b85df666b69a15fcd7a0e3ed1243e3dc4f13ccde4539222479", "phash": "d23f90c2bcd4ca3c", "dhash": "f87ce4e6a1c9e0bc", "phash_int": -3.2967572361457966e+18, "collected_at": "2026-05-22T04:33:12.725955+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-31-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-31-39 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-31-39 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-31-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1496745.0, "mtime": "2003-12-31T23:31:38+00:00", "mtime_ts": 1072913498.0, "ctime": "2024-12-21T07:57:59.994331+00:00", "sha256_file": "a617091067ae79b2acab991d4f2a2fa8265eabc6b34e54846c4351d50f472b08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:31:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5022", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:31:39", "EXIF DateTimeDigitized": "2004:01:01 00:31:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000077", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "153", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b001004ed54471dd60c25ab800d0a0247909c6a9f6d8616f4682938b457385b", "phash": "fa74465e7a78e060", "dhash": "2c4c9e3b313929ab", "phash_int": -3.996170953335192e+17, "collected_at": "2026-05-22T04:33:12.825338+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-58-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-58-22 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-58-22 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-58-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1920541.0, "mtime": "2003-04-05T12:58:20+00:00", "mtime_ts": 1049547500.0, "ctime": "2024-12-21T07:57:43.784808+00:00", "sha256_file": "cfd09bb163e6c95c220a0c66156d2546b7bb69769eff12ed0730c033d5a99568", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:58:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7277", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:58:22", "EXIF DateTimeDigitized": "2003:04:05 13:58:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "249", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "07982006a6c2863fc5aa10362318d219ab4aa983d5830b91f765cec0e35c8615", "phash": "a1b890d9ca616dcf", "dhash": "b9bc878be152467c", "phash_int": -6.793520772810708e+18, "collected_at": "2026-05-22T04:33:12.838433+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-59-08 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-59-08 CanonPowerShotA40.jpg", "file_name": "2003-11-01 11-59-08 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 11-59-08 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 314648.0, "mtime": "2003-11-01T10:59:08+00:00", "mtime_ts": 1067684348.0, "ctime": "2024-12-21T07:57:50.877037+00:00", "sha256_file": "73899da0b9a4af70634aff379980c690e80ea6baa6f15fe5f873394c712e4d7e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:59:08", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3136", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 11:59:08", "EXIF DateTimeDigitized": "2003:11:01 11:59:08", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[12, 538, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292967", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "40", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "186dc1e12c1a806059b55d83c73cea7aa94ab25a7693776c606161ed26261cce", "phash": "d5e24237c2ed548e", "dhash": "e4647450703a62f0", "phash_int": -3.034790391633325e+18, "collected_at": "2026-05-22T04:33:12.959759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-06 07-52-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-06 07-52-45 CanonPowerShotS40.jpg", "file_name": "2003-10-06 07-52-45 CanonPowerShotS40.jpg", "file_stem": "2003-10-06 07-52-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1988808.0, "mtime": "2003-10-09T06:47:49+00:00", "mtime_ts": 1065682069.0, "ctime": "2024-12-21T07:57:48.347955+00:00", "sha256_file": "e6f4e837a5ac614a17cd792ffda888aeb1d879ab8ab9ffa4886eefedf4da6aae", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:06 07:52:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:06 07:52:45", "EXIF DateTimeDigitized": "2003:10:06 07:52:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "43", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65525", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1cfac545ea56eb74225e9788dc60f668bef70f78a497827e2f183bba1e2e9a88", "phash": "9c2b61c764ccd59a", "dhash": "c2d9f8b6e8f8f0f0", "phash_int": -7.193548470776704e+18, "collected_at": "2026-05-22T04:33:12.982953+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-04 10-31-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-04 10-31-12 CanonPowerShotS40.jpg", "file_name": "2003-11-04 10-31-12 CanonPowerShotS40.jpg", "file_stem": "2003-11-04 10-31-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1566067.0, "mtime": "2003-11-04T09:31:12+00:00", "mtime_ts": 1067938272.0, "ctime": "2024-12-21T07:57:51.442055+00:00", "sha256_file": "68de9d2b23f3d7687d2e77f80985dab1af0fc1381a2702379fa9b912e89d467e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:04 10:31:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5776", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:04 10:31:12", "EXIF DateTimeDigitized": "2003:11:04 10:31:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[81, 184, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "136", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "16b86f49c84a2d7c1fd76c9d765d188c42b2281d94157b96d26a8565e957d396", "phash": "95c6079d8e073fb0", "dhash": "62aa8ca8b03078ec", "phash_int": -7.65442214339548e+18, "collected_at": "2026-05-22T04:33:13.159862+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-25-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-25-19 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-25-19 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-25-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1761365.0, "mtime": "2002-09-28T13:25:18+00:00", "mtime_ts": 1033219518.0, "ctime": "2024-12-21T07:57:36.370569+00:00", "sha256_file": "29204b0379169310b397d4087e791e52334724be4f77ec978621ac09ba01ff6b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:25:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2863", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:25:19", "EXIF DateTimeDigitized": "2002:09:28 13:25:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2671/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[30, 234, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "AF Point", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "118", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2671"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "afcbedc7e45e055944b103e63b9d1fb534ca966c7581674cf6d629b1cf83051f", "phash": "93e1cc9473ab9c58", "dhash": "f0f0c8cccc7cf0f0", "phash_int": -7.790720942406395e+18, "collected_at": "2026-05-22T04:33:13.233925+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-17 09-42-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-17 09-42-58 CanonPowerShotS40.jpg", "file_name": "2003-09-17 09-42-58 CanonPowerShotS40.jpg", "file_stem": "2003-09-17 09-42-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1148465.0, "mtime": "2003-09-17T07:42:58+00:00", "mtime_ts": 1063784578.0, "ctime": "2024-12-21T07:57:48.034945+00:00", "sha256_file": "ab1c541ce69aa9580da7e929f6b7f4a90719b7436d467f7aca296b1a08b03b3b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:17 09:42:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3445", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:17 09:42:58", "EXIF DateTimeDigitized": "2003:09:17 09:42:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000055", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "356", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "98174515bae31d71afa10d0205ab7e5763f2832f5736aa984ad0573c63700dbf", "phash": "e239398c31cece66", "dhash": "9280c5c0c0e4c0c8", "phash_int": -2.1456204731714893e+18, "collected_at": "2026-05-22T04:33:13.293095+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-57-56 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-57-56 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-57-56 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-57-56 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1862993.0, "mtime": "2003-04-06T15:57:54+00:00", "mtime_ts": 1049644674.0, "ctime": "2024-12-21T07:57:44.916845+00:00", "sha256_file": "ebe4584238a6852b939877efcdb4d13bec06c848038f47a789bf99e9885d2119", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:57:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4837", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:57:56", "EXIF DateTimeDigitized": "2003:04:06 16:57:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "322", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f71881df86a8a4eac90388eb0240f63be3846b7a69e45c84ed7de8c81e49ef23", "phash": "d48f215f72918ce3", "dhash": "a022a1900426da8e", "phash_int": -3.1302465221714545e+18, "collected_at": "2026-05-22T04:33:13.345721+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 17-56-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 17-56-17 CanonPowerShotS40.jpg", "file_name": "2003-03-08 17-56-17 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 17-56-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2153473.0, "mtime": "2003-03-08T16:56:16+00:00", "mtime_ts": 1047142576.0, "ctime": "2024-12-21T07:57:40.794711+00:00", "sha256_file": "626da57317a4b50db62eac5245b0d00f0ebab14ac93b66fb17d15f3b3b8aeb22", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 17:56:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7992", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 17:56:17", "EXIF DateTimeDigitized": "2003:03:08 17:56:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000005", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65499", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c4efc653cf41361412da7fb4dcb464280d4874f5bf4511a0497b1a96c83bff29", "phash": "d584277b15fc40c7", "dhash": "e4c2d434d41b0ed4", "phash_int": -3.061278437101781e+18, "collected_at": "2026-05-22T04:33:13.463852+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-20-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-20-53 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-20-53 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-20-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1100302.0, "mtime": "2003-12-31T23:20:52+00:00", "mtime_ts": 1072912852.0, "ctime": "2024-12-21T07:57:59.931329+00:00", "sha256_file": "4589a40093b5b0e43dc65962788310fb79afb38c743d462b7b43403e218cf311", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:20:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6133", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:20:53", "EXIF DateTimeDigitized": "2004:01:01 00:20:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000071", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65520", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "194", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b6bb601d0296d03161b0b43d29dfd307b90b8ffebd8ed018b3892fe269a4f41a", "phash": "d9e431364e99269b", "dhash": "ced2d3f1a59e9898", "phash_int": -2.7460157634725053e+18, "collected_at": "2026-05-22T04:33:13.473851+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-30-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-30-03 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-30-03 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-30-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1558376.0, "mtime": "2002-11-13T08:30:02+00:00", "mtime_ts": 1037176202.0, "ctime": "2024-12-21T07:57:37.115593+00:00", "sha256_file": "6aaa42bac107d6688ed6ba475056c0d6c906e41562b736087b5c4a3f5ec2047d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:30:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2253", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:30:03", "EXIF DateTimeDigitized": "2002:11:13 09:30:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "06fdbadc5ebc3bacecc03e130f49a8f857d0144bf90204ec8022ed038a91bbd9", "phash": "8ad215c971d331de", "dhash": "f9f9f9fbfbfbfbbf", "phash_int": -8.443662396423983e+18, "collected_at": "2026-05-22T04:33:13.633523+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 00-05-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 00-05-40 CanonPowerShotS40.jpg", "file_name": "2003-03-29 00-05-40 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 00-05-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1789861.0, "mtime": "2003-03-30T09:43:15+00:00", "mtime_ts": 1049017395.0, "ctime": "2024-12-21T07:57:42.306760+00:00", "sha256_file": "bb05874af2b3f143549fb0dc13b69e57ac583340583c2da35cb95f8bfe647b3b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 00:05:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5899", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 00:05:40", "EXIF DateTimeDigitized": "2003:03:29 00:05:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1587/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[1, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65510", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "193", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1587"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dad8eb3feeafa46d0e790be706b5e0bc2a0221a1f1d3bf253421b50c73906451", "phash": "84d78a639a4f722d", "dhash": "cee6d6f49696b7b5", "phash_int": -8.874472380314979e+18, "collected_at": "2026-05-22T04:33:13.641521+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-02 01-37-32 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-02 01-37-32 CanonPowerShotA40.jpg", "file_name": "2003-02-02 01-37-32 CanonPowerShotA40.jpg", "file_stem": "2003-02-02 01-37-32 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 415712.0, "mtime": "2003-04-08T09:30:04+00:00", "mtime_ts": 1049794204.0, "ctime": "2024-12-21T07:57:38.042623+00:00", "sha256_file": "c8438cddf208d920848d97a1b29cf55bdcf1db0a75450b65ab504418a58c8b84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:02 01:37:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1430", "Thumbnail JPEGInterchangeFormatLength": "4150", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:02 01:37:32", "EXIF DateTimeDigitized": "2003:02:02 01:37:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1161682", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "0", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1600.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3ca39fbc843fdb0a0f6048b720a8e5ea83126dfce76cc4300b1766b7a3cab777", "phash": "a1a85e285e564e7e", "dhash": "939b9b8b9387cfc4", "phash_int": -6.798080110041346e+18, "collected_at": "2026-05-22T04:33:13.798399+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-28 20-03-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-28 20-03-58 CanonPowerShotS40.jpg", "file_name": "2003-10-28 20-03-58 CanonPowerShotS40.jpg", "file_stem": "2003-10-28 20-03-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1624710.0, "mtime": "2003-10-28T19:03:58+00:00", "mtime_ts": 1067367838.0, "ctime": "2024-12-21T07:57:49.954007+00:00", "sha256_file": "5c91d7b18d61fa6e4deec3fa54f7873ad0c0fdf13e28bf17afbd46c980afe25e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:28 20:03:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4234", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:28 20:03:58", "EXIF DateTimeDigitized": "2003:10:28 20:03:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "4", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "159", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1dd3d9cef509edf42b9d638fa1d6f2dc15c9f74f481ccfa82aa7e7ec4da826cc", "phash": "911b6a629dae3995", "dhash": "e1d8b8f8f8dcc0b8", "phash_int": -7.990676142054033e+18, "collected_at": "2026-05-22T04:33:13.839754+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-32-55 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-32-55 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-32-55 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-32-55 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1610176.0, "mtime": "2003-11-09T00:32:55+00:00", "mtime_ts": 1068337975.0, "ctime": "2024-12-21T07:57:52.065075+00:00", "sha256_file": "d21de754e7a298af43510e07913771eaf57b92d135e02caf02cae2a29bc3ef97", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:32:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4588", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:32:55", "EXIF DateTimeDigitized": "2003:11:09 01:32:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "721/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "40", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "165", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "721"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "68e9765c42ed57fc605941f00ed0296873fdebccc77542109fd4040bb38adc05", "phash": "bf71ca4745cc4247", "dhash": "501a9d364c586126", "phash_int": -4.651714532634508e+18, "collected_at": "2026-05-22T04:33:13.952655+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 15-02-53 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 15-02-53 CanonPowerShotS40.jpg", "file_name": "2003-11-29 15-02-53 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 15-02-53 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1603231.0, "mtime": "2003-11-29T14:02:53+00:00", "mtime_ts": 1070114573.0, "ctime": "2024-12-21T07:57:54.697160+00:00", "sha256_file": "4f9d1177315c650d5092df596db6ff0553947c74eabac74390b7337702b10ff3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 15:02:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7272", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 15:02:53", "EXIF DateTimeDigitized": "2003:11:29 15:02:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[70, 199, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "120", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "343c8740950d4d637059909e50ba110f16e3554c599e1fdad08df2ca5a9b88cd", "phash": "f48e86a5ece2aca4", "dhash": "e749450b161e1c06", "phash_int": -8.24573634560218e+17, "collected_at": "2026-05-22T04:33:13.972655+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 11-52-26 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 11-52-26 CanonPowerShotA40.jpg", "file_name": "2003-02-09 11-52-26 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 11-52-26 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 467814.0, "mtime": "2003-02-09T09:52:24+00:00", "mtime_ts": 1044784344.0, "ctime": "2024-12-21T07:57:38.215628+00:00", "sha256_file": "e567418c291b71de26c920431561f36f72c48f84ffee9e853404f73b3cce4c3a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 11:52:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5944", "EXIF ExposureTime": "1/100", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 11:52:26", "EXIF DateTimeDigitized": "2003:02:09 11:52:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[1, 49, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171724", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "25", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "132", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1457"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3b288fb9bb2560ef2f3eed1361fb7612fce1e89433753857485308ed44ad9e26", "phash": "ebb581c92af43592", "dhash": "d6e22e2f6143c3f3", "phash_int": -1.4621198030028006e+18, "collected_at": "2026-05-22T04:33:14.122473+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-18 20-58-39 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-18 20-58-39 CanonPowerShotS40.jpg", "file_name": "2003-03-18 20-58-39 CanonPowerShotS40.jpg", "file_stem": "2003-03-18 20-58-39 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2379779.0, "mtime": "2003-03-18T19:58:38+00:00", "mtime_ts": 1048017518.0, "ctime": "2024-12-21T07:57:41.643739+00:00", "sha256_file": "582dbefd4800d61c03017e8450efae1f0f0bd43e064a5362292cf1624b192c83", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:18 20:58:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7895", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:18 20:58:39", "EXIF DateTimeDigitized": "2003:03:18 20:58:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 261, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65484", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "186", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1ad70f7399e171efb3ec274c625b63b78b20bebcbb2f817a50a6a73ef01ef14b", "phash": "d46942b71d41beb1", "dhash": "c2c49252546cdcfc", "phash_int": -3.140905910876914e+18, "collected_at": "2026-05-22T04:33:14.165474+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-19-31 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-19-31 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-19-31 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-19-31 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 730791.0, "mtime": "2003-12-28T23:19:30+00:00", "mtime_ts": 1072653570.0, "ctime": "2024-12-21T07:57:59.004299+00:00", "sha256_file": "a47eafe5671b48c58655f5df27c3eece5f7d03863b72b23b15a1e6ac7b12c73e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:19:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4414", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:19:31", "EXIF DateTimeDigitized": "2003:12:29 00:19:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000054", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "165", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d9a0962400a5d7176760e669190940ec2246d1a827f83466c5662c699c90ecea", "phash": "8958f262ceb96966", "dhash": "f17833f3e10b9e4c", "phash_int": -8.549817386373913e+18, "collected_at": "2026-05-22T04:33:14.238476+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 22-53-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 22-53-41 CanonPowerShotS40.jpg", "file_name": "2003-12-31 22-53-41 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 22-53-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1830990.0, "mtime": "2003-12-31T21:53:40+00:00", "mtime_ts": 1072907620.0, "ctime": "2024-12-21T07:57:59.387312+00:00", "sha256_file": "57bac688554969514e6a54b385aba2b5780143949dade27b46484d19a12be154", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 22:53:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5912", "EXIF ExposureTime": "1/250", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 22:53:41", "EXIF DateTimeDigitized": "2003:12:31 22:53:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "255/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1891/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "255", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "7564"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1afaf6d7bb486c1c14b27f8a8cc62f4318ed026c505e0b8b533ff5db7d813543", "phash": "d2e4c0c7cd9a9a3c", "dhash": "c087390900c8f991", "phash_int": -3.2502610666741693e+18, "collected_at": "2026-05-22T04:33:14.331897+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 20-47-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 20-47-12 CanonPowerShotS40.jpg", "file_name": "2003-12-26 20-47-12 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 20-47-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1675351.0, "mtime": "2003-12-26T19:47:10+00:00", "mtime_ts": 1072468030.0, "ctime": "2024-12-21T07:57:57.816261+00:00", "sha256_file": "a1750319cb7aeb1458bccbbb4333907b346b666dc03c1746c9301308cb1e7dac", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 20:47:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5734", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 20:47:12", "EXIF DateTimeDigitized": "2003:12:26 20:47:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "244", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b5940f779faa21bda1d3a4dc50cdc8c13f7d21eeea9a7aa034d08836b24f385a", "phash": "a89512ea793836fa", "dhash": "3ae2fe369ba7b7cf", "phash_int": -6.299107705542396e+18, "collected_at": "2026-05-22T04:33:14.350961+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-31-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-31-54 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-31-54 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-31-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1622418.0, "mtime": "2002-12-01T11:31:30+00:00", "mtime_ts": 1038742290.0, "ctime": "2024-12-21T07:57:37.583608+00:00", "sha256_file": "745dcd11b99e3653cbbdfd5bbceb643e4a7b2ee6e2fd98b4afacf0511d8e4616", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:31:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2907", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:31:54", "EXIF DateTimeDigitized": "2002:11:28 17:31:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 265, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "190", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "31ee0447d373916df0fc4c0198b4c6c591cab52df87a01bb1982f44cf0cc0a34", "phash": "d17372383c0c4f8f", "dhash": "95cccad090d0c8ac", "phash_int": -3.3542117116097126e+18, "collected_at": "2026-05-22T04:33:14.487157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-31-32 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-31-32 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-31-32 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-31-32 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1290919.0, "mtime": "2002-11-13T08:31:30+00:00", "mtime_ts": 1037176290.0, "ctime": "2024-12-21T07:57:37.207596+00:00", "sha256_file": "bb1498bf1f188335c48433f1ca7aaa36b64d078d3cba67fce99ce8415016e6a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:31:32", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1815", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:31:32", "EXIF DateTimeDigitized": "2002:11:13 09:31:32", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[23, 243, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000037", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "82", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2f1cf595e8bf942a1a93ff7b0156b837926d7c389ae9b33479f6171256dfb5d4", "phash": "d581d5693cba5427", "dhash": "f0f0f0f0e0e8f8f0", "phash_int": -3.0619316236681e+18, "collected_at": "2026-05-22T04:33:14.495157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 22-25-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 22-25-22 CanonPowerShotA40.jpg", "file_name": "2003-03-29 22-25-22 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 22-25-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 389237.0, "mtime": "2003-03-30T10:04:10+00:00", "mtime_ts": 1049018650.0, "ctime": "2024-12-21T07:57:42.967782+00:00", "sha256_file": "5d094f831f569864181762eae7f8692a4376065ea2a3b24a088066d0cbe98b92", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 22:25:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3772", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 22:25:22", "EXIF DateTimeDigitized": "2003:03:29 22:25:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2798, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202043", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "118", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f2d81f7c0e15a07080bae9f1da66eb23d8440e70a08dc3fc4c1d8b1ff28e872c", "phash": "867fc938b14c7686", "dhash": "c2ec6ceeceade8d8", "phash_int": -8.755057905255025e+18, "collected_at": "2026-05-22T04:33:14.987788+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-58-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-58-15 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-58-15 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-58-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1513168.0, "mtime": "2003-04-05T12:58:14+00:00", "mtime_ts": 1049547494.0, "ctime": "2024-12-21T07:57:43.772808+00:00", "sha256_file": "490e7c73c35bcbdd14f3a6a06150066611c49f0db606f991abca2583e182276d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:58:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5533", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:58:15", "EXIF DateTimeDigitized": "2003:04:05 13:58:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef31ad63b4843869247af76179f16ac9d521c16613c4f5a39c6df1651c517738", "phash": "e9a5c15e86aa1cc7", "dhash": "4207130b09300181", "phash_int": -1.6106686799847022e+18, "collected_at": "2026-05-22T04:33:15.028787+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-38-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-38-09 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-38-09 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-38-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2172101.0, "mtime": "2003-11-16T18:38:09+00:00", "mtime_ts": 1069007889.0, "ctime": "2024-12-21T07:57:53.302115+00:00", "sha256_file": "ef9966d7565d220ee4838c4add8da619178e5c10db6dd93dc379b9dd1366476a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:38:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6573", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:38:09", "EXIF DateTimeDigitized": "2003:11:16 19:38:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0bb5d6206765142a4744a8184ca7ce63af29a5007705be55821aa83426870cdd", "phash": "ede2278dc4d32a64", "dhash": "e6069b9932335a46", "phash_int": -1.3054374521379773e+18, "collected_at": "2026-05-22T04:33:15.134851+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-03-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-03-13 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-03-13 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-03-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1685212.0, "mtime": "2003-12-28T23:03:12+00:00", "mtime_ts": 1072652592.0, "ctime": "2024-12-21T07:57:58.930297+00:00", "sha256_file": "7f5c96667c69360f640fdc651f6b5077075b2622bcd254d4bf8042bf09a98924", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:03:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5700", "EXIF ExposureTime": "1/320", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:03:13", "EXIF DateTimeDigitized": "2003:12:29 00:03:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "372/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "238", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2976"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6993fcdc3f763a1ba4227def12099e7bd72a69aa7ced96612bffe64d571127f4", "phash": "b78fc06c20d13f72", "dhash": "7169495a0b5b54cd", "phash_int": -5.21974187245953e+18, "collected_at": "2026-05-22T04:33:15.167935+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 22-19-19 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 22-19-19 CanonPowerShotS40.jpg", "file_name": "2003-11-02 22-19-19 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 22-19-19 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1764125.0, "mtime": "2003-11-02T21:19:19+00:00", "mtime_ts": 1067807959.0, "ctime": "2024-12-21T07:57:51.316051+00:00", "sha256_file": "41c268a5142b18a78b6f44a5c63ec71dc7b9b4d06564559d7cb59055b51830f3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 22:19:19", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4872", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 22:19:19", "EXIF DateTimeDigitized": "2003:11:02 22:19:19", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000027", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65456", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b8ed5302b6e4803accf10c6415a346188470ebccc43a760224df695a76e997b7", "phash": "c8bfa6a0dc4b5964", "dhash": "ececf271b190c4a4", "phash_int": -3.981280335751325e+18, "collected_at": "2026-05-22T04:33:15.466830+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 20-40-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 20-40-29 CanonPowerShotS40.jpg", "file_name": "2003-02-15 20-40-29 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 20-40-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2029750.0, "mtime": "2003-02-15T19:40:29+00:00", "mtime_ts": 1045338029.0, "ctime": "2024-12-21T07:57:39.023654+00:00", "sha256_file": "0b895e98b3e2f25e21cc0126bac3f1995178ad4d7dc9302ca543ddbba64fe646", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 20:40:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7378", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 20:40:29", "EXIF DateTimeDigitized": "2003:02:15 20:40:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 266, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000042", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65396", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "184", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e658656cdebd3755a5544c16153ce5e9c9d2eaabf01f7167912ad017a8342731", "phash": "c4e42d63b45d5395", "dhash": "c6c7e4acccc8f2f4", "phash_int": -4.259229441334619e+18, "collected_at": "2026-05-22T04:33:15.470888+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-13-47 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-13-47 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-13-47 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-13-47 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1701483.0, "mtime": "2003-02-22T16:13:46+00:00", "mtime_ts": 1045930426.0, "ctime": "2024-12-21T07:57:39.438668+00:00", "sha256_file": "db1701982ae27e09b3226018ea4b5de7353fc9ac134306eeed083dfb676d279e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:13:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6682", "EXIF ExposureTime": "1/20", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:13:47", "EXIF DateTimeDigitized": "2003:02:22 17:13:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "69/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000032", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "104", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "138", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5674c3d3fc1e4a0ef0e334962abc6183143e6fd4806f9690e3b3eb2b3181319a", "phash": "d2d86ce3f9d0980d", "dhash": "11ccf0b8f8a8cd27", "phash_int": -3.25373100437061e+18, "collected_at": "2026-05-22T04:33:15.677417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-30-38 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-30-38 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-30-38 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-30-38 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2804604.0, "mtime": "2003-04-06T15:30:36+00:00", "mtime_ts": 1049643036.0, "ctime": "2024-12-21T07:57:44.460830+00:00", "sha256_file": "8393c67a463458a1d1166ea25c5936d41501c5b4d90325ad6b6fcd37ceab01a4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:30:38", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6513", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:30:38", "EXIF DateTimeDigitized": "2003:04:06 16:30:38", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "254", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9393dc9ea26f779658d3c880caf5d144944b76279fb9d4b6110b34a72f1d443", "phash": "f9a880c447ce0ffa", "dhash": "96971b0e1c8e0d1a", "phash_int": -4.5697378167147315e+17, "collected_at": "2026-05-22T04:33:15.713417+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 16-44-28 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 16-44-28 CanonPowerShotS40.jpg", "file_name": "2003-04-05 16-44-28 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 16-44-28 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 326306.0, "mtime": "2003-04-05T15:44:26+00:00", "mtime_ts": 1049557466.0, "ctime": "2024-12-21T07:57:44.019815+00:00", "sha256_file": "3e6de8959e560e18d634a457a55c70fb8b5f0b82e4743905b2cb15205794a28c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 16:44:28", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4801", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 16:44:28", "EXIF DateTimeDigitized": "2003:04:05 16:44:28", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1024", "EXIF ExifImageLength": "768", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1024", "Interoperability RelatedImageLength": "768", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "25600/7", "EXIF FocalPlaneYResolution": "25600/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "57", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "161", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 1024.0, "height": 768.0, "megapixels": 0.79, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "9834d236ae42cedf3b15bde4b8a3eccc8706a847ae448a52840bbe5325ff7e98", "phash": "9a9c75664b61b133", "dhash": "363939b9f9e5cdc9", "phash_int": -7.30583541328998e+18, "collected_at": "2026-05-22T04:33:15.799559+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 22-54-48 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 22-54-48 CanonPowerShotS40.jpg", "file_name": "2003-10-18 22-54-48 CanonPowerShotS40.jpg", "file_stem": "2003-10-18 22-54-48 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1759476.0, "mtime": "2003-10-18T21:54:48+00:00", "mtime_ts": 1066514088.0, "ctime": "2024-12-21T07:57:48.823971+00:00", "sha256_file": "f12be32430764ad90dea47982d5edeee0019ba07803b83d33f61fd04fe40eb30", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 22:54:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4424", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:18 22:54:48", "EXIF DateTimeDigitized": "2003:10:18 22:54:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000016", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "44", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65524", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ec79d10211697daff14451fd7026dceed8ab0397c994d115060ca7d23eaf747c", "phash": "e697996c913649cc", "dhash": "f0e8ccce8f83add0", "phash_int": -1.8308260319310454e+18, "collected_at": "2026-05-22T04:33:15.844633+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 10-13-39 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 10-13-39 CanonPowerShotA40.jpg", "file_name": "2003-11-01 10-13-39 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 10-13-39 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 405389.0, "mtime": "2003-11-01T09:13:39+00:00", "mtime_ts": 1067678019.0, "ctime": "2024-12-21T07:57:50.575027+00:00", "sha256_file": "f01567ab1df5b6b74a3a03d3eef9b46de773fe5a08082d56309de77bdb8763b6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 10:13:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3980", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 10:13:39", "EXIF DateTimeDigitized": "2003:11:01 10:13:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 561, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292952", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "26", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "67", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1305"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f27f4801ec42667560f54260ea742ee2baa06826cafdc1415c1e370330d2a31d", "phash": "9064279fdbb269a4", "dhash": "c786939999d9d8d8", "phash_int": -8.042259467037678e+18, "collected_at": "2026-05-22T04:33:15.936759+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-37-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-37-14 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-37-14 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-37-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1110967.0, "mtime": "2003-11-02T08:37:14+00:00", "mtime_ts": 1067762234.0, "ctime": "2024-12-21T07:57:51.126045+00:00", "sha256_file": "e0fb47a8ec60caeb97b8c85a322a90feb96a0c9e9b7e69e9702deff6261a71f4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:37:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3335", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:37:14", "EXIF DateTimeDigitized": "2003:11:02 09:37:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "833/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000011", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "21", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "833"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "920f43b4d75167beb13eaa6ff54883c77e792f9e01cdb336a57b3c057ef914da", "phash": "d1461c6a9665ab73", "dhash": "e0c8d8cc988a9a98", "phash_int": -3.3669724272975104e+18, "collected_at": "2026-05-22T04:33:15.960012+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 21-07-14 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 21-07-14 CanonPowerShotA40.jpg", "file_name": "2003-03-29 21-07-14 CanonPowerShotA40.jpg", "file_stem": "2003-03-29 21-07-14 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 451394.0, "mtime": "2003-03-30T10:03:37+00:00", "mtime_ts": 1049018617.0, "ctime": "2024-12-21T07:57:42.791776+00:00", "sha256_file": "ff6c5bee11faeb7b6e095e8cd62087f1ef6ca1bb588be17a36b56ad18c0466ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 21:07:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5024", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:29 21:07:14", "EXIF DateTimeDigitized": "2003:03:29 21:07:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1843, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1202020", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "144", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2b45f50a988c5be11fc751598d26bb3d63d71e451d348ecf8216723840fad3ff", "phash": "906e45bb318775c6", "dhash": "0aa4e5cd999cf496", "phash_int": -8.039411614517595e+18, "collected_at": "2026-05-22T04:33:16.014015+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 11-58-39 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 11-58-39 CanonPowerShotA40.jpg", "file_name": "2003-11-01 11-58-39 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 11-58-39 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 307437.0, "mtime": "2003-11-01T10:58:39+00:00", "mtime_ts": 1067684319.0, "ctime": "2024-12-21T07:57:50.859036+00:00", "sha256_file": "252144cef072f73178e829228f6db190bb6fb97ed46e059740d16f97c30804cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 11:58:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3020", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 11:58:39", "EXIF DateTimeDigitized": "2003:11:01 11:58:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[9, 589, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292965", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "78", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "41", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "530"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "aa9575c8a7154203c5506fa7712293284a3b5e997f5c901d5b3ae6724cebb1b0", "phash": "d5e2425bc6785a35", "dhash": "e044147464503070", "phash_int": -3.0347902369550597e+18, "collected_at": "2026-05-22T04:33:16.074018+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 18-31-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 18-31-49 CanonPowerShotS40.jpg", "file_name": "2003-12-27 18-31-49 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 18-31-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1220819.0, "mtime": "2003-12-27T17:31:48+00:00", "mtime_ts": 1072546308.0, "ctime": "2024-12-21T07:57:58.224274+00:00", "sha256_file": "44d9767b3913932ddd210263ddb2f83abaec3bcdec40f5c508764c7325adebf2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 18:31:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5091", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 18:31:49", "EXIF DateTimeDigitized": "2003:12:27 18:31:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 224, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "100", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2a008a9dab98cccd35ee0593890d2a23e0c24d9d3a5f1041c183803e65db7abf", "phash": "f51886e3698824ff", "dhash": "983cbe92024e4c4c", "phash_int": -7.857298236899233e+17, "collected_at": "2026-05-22T04:33:16.081021+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-28-47 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-28-47 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-28-47 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-28-47 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 350981.0, "mtime": "2003-03-30T10:02:32+00:00", "mtime_ts": 1049018552.0, "ctime": "2024-12-21T07:57:40.515702+00:00", "sha256_file": "7aa57bdc2a67dc954aa5463f8ea120fb79ec1dca74ed18d5e57e3ab0536e3003", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:28:47", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4656", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:28:47", "EXIF DateTimeDigitized": "2003:03:06 19:28:47", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[5, 90, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191979", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "134", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "120", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1333"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d7cf5a189aae6e63ce3d50792f71f54c36939c4fa03e3d73bbef83fccd37ae32", "phash": "80b833e466b76e66", "dhash": "9eb3b7b7b3d3deca", "phash_int": -9.171523585071157e+18, "collected_at": "2026-05-22T04:33:16.186353+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-06 07-51-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-06 07-51-27 CanonPowerShotS40.jpg", "file_name": "2003-10-06 07-51-27 CanonPowerShotS40.jpg", "file_stem": "2003-10-06 07-51-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1947913.0, "mtime": "2003-10-09T06:47:18+00:00", "mtime_ts": 1065682038.0, "ctime": "2024-12-21T07:57:48.274953+00:00", "sha256_file": "a7ec7908f7afa6e26dd0cef77b7db47739a3eb53322ffe7106d0eebb9b1b25bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:06 07:51:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6329", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:06 07:51:27", "EXIF DateTimeDigitized": "2003:10:06 07:51:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "158", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2e6248c9a06aab1b2250d6a43d40677c11dc5e43a8184c22baacaffd0ab7fad", "phash": "db1c09c33433e3b6", "dhash": "f0f0e87864c8d8f0", "phash_int": -2.6582389460563466e+18, "collected_at": "2026-05-22T04:33:16.235564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 09-23-23 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 09-23-23 CanonPowerShotS40.jpg", "file_name": "2003-04-06 09-23-23 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 09-23-23 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1751969.0, "mtime": "2003-04-06T08:23:22+00:00", "mtime_ts": 1049617402.0, "ctime": "2024-12-21T07:57:44.373827+00:00", "sha256_file": "255982e3cc49dbd2c02aa168dbefd901fe135ab46cddd1f6a7ff18a32c2b26ec", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 09:23:23", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5438", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 09:23:23", "EXIF DateTimeDigitized": "2003:04:06 09:23:23", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 257, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e0b28f9d2df81d7aeb3da848aa3e27dfec2d0355a02a0bdc742296dd5b70adcc", "phash": "c4311b76676b3c34", "dhash": "d8c4d4c6cee4e1e0", "phash_int": -4.309633173061682e+18, "collected_at": "2026-05-22T04:33:16.313370+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-05 18-29-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-05 18-29-43 CanonPowerShotS40.jpg", "file_name": "2003-11-05 18-29-43 CanonPowerShotS40.jpg", "file_stem": "2003-11-05 18-29-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1719565.0, "mtime": "2003-11-05T17:29:43+00:00", "mtime_ts": 1068053383.0, "ctime": "2024-12-21T07:57:51.734065+00:00", "sha256_file": "5077f074efacc2186a08aeb16777067300784ae73739c76979c3c694c734a6cc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:05 18:29:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5885", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:05 18:29:43", "EXIF DateTimeDigitized": "2003:11:05 18:29:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[11, 289, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000063", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "30", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "fe82678ace825428c14c1f4b4f2286992a5379b9a93d4571a44d516bf773aa65", "phash": "b14ee56604631b7b", "dhash": "c7725bfdfdd9de96", "phash_int": -5.670342654489847e+18, "collected_at": "2026-05-22T04:33:16.345491+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-14 23-08-00 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-14 23-08-00 CanonPowerShotA40.jpg", "file_name": "2003-02-14 23-08-00 CanonPowerShotA40.jpg", "file_stem": "2003-02-14 23-08-00 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 413556.0, "mtime": "2003-02-14T21:07:58+00:00", "mtime_ts": 1045256878.0, "ctime": "2024-12-21T07:57:38.417634+00:00", "sha256_file": "3175695a3819156defd6f843338a40defc5ddb6a6bfec0f601fae85d6653e70e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:14 23:08:00", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:14 23:08:00", "EXIF DateTimeDigitized": "2003:02:14 23:08:00", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 10362, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171796", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "60", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "446bb605b9dd2caa9d98e45bdc4abe0167769247ffc000bfd1f7567f5b3f2126", "phash": "9c9863a5f0730db9", "dhash": "d4b830bcbc664966", "phash_int": -7.162865642977949e+18, "collected_at": "2026-05-22T04:33:16.443003+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 13-59-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 13-59-27 CanonPowerShotS40.jpg", "file_name": "2003-03-30 13-59-27 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 13-59-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2441264.0, "mtime": "2003-03-30T12:59:26+00:00", "mtime_ts": 1049029166.0, "ctime": "2024-12-21T07:57:43.098786+00:00", "sha256_file": "28e0b558555c7e2850e760ac2fc60e7657ad35944136cfa25cab484f0fee7f74", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 13:59:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7212", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 13:59:27", "EXIF DateTimeDigitized": "2003:03:30 13:59:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000008", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "226", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "49002cfae37d62df5522172ec1a8650b38940a7511e94e205d8104c14e00fba0", "phash": "9e2a79a704df0335", "dhash": "2f296965646c7c38", "phash_int": -7.049688508446866e+18, "collected_at": "2026-05-22T04:33:16.484004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 15-06-58 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 15-06-58 CanonPowerShotS40.jpg", "file_name": "2003-03-30 15-06-58 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 15-06-58 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1720294.0, "mtime": "2003-03-30T14:06:56+00:00", "mtime_ts": 1049033216.0, "ctime": "2024-12-21T07:57:43.336793+00:00", "sha256_file": "f2312d713fdd84ca762e6df0ae3652bbac6e9fa24d72b0483a7d4a785ca911b6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 15:06:58", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6348", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 15:06:58", "EXIF DateTimeDigitized": "2003:03:30 15:06:58", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "246", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "61365f8b809790afa1bdb673f17a76b710a48815a110a51a8d65fa0685a9ffb9", "phash": "c55a4c27e8435bf8", "dhash": "333438dc96cec6c6", "phash_int": -4.225981566049625e+18, "collected_at": "2026-05-22T04:33:16.537008+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 20-59-59 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 20-59-59 CanonPowerShotA40.jpg", "file_name": "2003-02-22 20-59-59 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 20-59-59 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 551099.0, "mtime": "2003-02-22T18:59:58+00:00", "mtime_ts": 1045940398.0, "ctime": "2024-12-21T07:57:39.655675+00:00", "sha256_file": "d5c650b05e1e429d8786490cfe835a318317e118e31b9f9859498bfece44606a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 20:59:59", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4380", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 20:59:59", "EXIF DateTimeDigitized": "2003:02:22 20:59:59", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 1725, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181880", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "55", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "502"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b74a42bc33e822d9069ca692a7bb4cce9e8f8b0c6bcb657182f66448fbb107f", "phash": "84433f95d06fc62b", "dhash": "e4cec5c48ce4772f", "phash_int": -8.916212924583786e+18, "collected_at": "2026-05-22T04:33:16.650743+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 20-42-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 20-42-25 CanonPowerShotS40.jpg", "file_name": "2003-02-15 20-42-25 CanonPowerShotS40.jpg", "file_stem": "2003-02-15 20-42-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2101133.0, "mtime": "2003-02-15T19:42:26+00:00", "mtime_ts": 1045338146.0, "ctime": "2024-12-21T07:57:39.085656+00:00", "sha256_file": "d24363905951ea415f718279c820c8ad7efd19482f60f9cc3f1aa8cf433dfe5b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 20:42:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6533", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:15 20:42:25", "EXIF DateTimeDigitized": "2003:02:15 20:42:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65250", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "189", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ac8ab6faa48aabfd12b0de60167baddf2f034d385b30f8466aeef56297779b20", "phash": "dcd68648957a6e2c", "dhash": "64e42438b293b77e", "phash_int": -2.5336900940457293e+18, "collected_at": "2026-05-22T04:33:16.685740+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 14-28-01 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 14-28-01 CanonPowerShotA40.jpg", "file_name": "2003-02-15 14-28-01 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 14-28-01 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 656564.0, "mtime": "2003-02-15T12:28:00+00:00", "mtime_ts": 1045312080.0, "ctime": "2024-12-21T07:57:38.528638+00:00", "sha256_file": "3910fd1cb5abacc3557b7446be1ac3d0a84aca33739ff81375a4d2dc8e57c018", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 14:28:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4937", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 14:28:01", "EXIF DateTimeDigitized": "2003:02:15 14:28:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181828", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "250", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1756"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "08711d2e1d7e3a887ce9872f53afb73a704cacce1a11e10fd78c5d1ba35be2a6", "phash": "e51b8cf6791c06a9", "dhash": "377a5a1a8ec44636", "phash_int": -1.9378002244311432e+18, "collected_at": "2026-05-22T04:33:16.781746+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-18 20-58-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-18 20-58-51 CanonPowerShotS40.jpg", "file_name": "2003-03-18 20-58-51 CanonPowerShotS40.jpg", "file_stem": "2003-03-18 20-58-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2470354.0, "mtime": "2003-03-18T19:58:50+00:00", "mtime_ts": 1048017530.0, "ctime": "2024-12-21T07:57:41.656739+00:00", "sha256_file": "3bcaddd564960862a0fa3d3482a82a3584dd022ea5cb68b43786b7ae39b1ed5c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:18 20:58:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7703", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:18 20:58:51", "EXIF DateTimeDigitized": "2003:03:18 20:58:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 262, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000002", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65489", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b603f965a25447b4b5ed2da3f2b19e74d8931ade3c1d5823d13c61d006b05e29", "phash": "d027d27f209b4fb0", "dhash": "e0e0f4f4f05898b8", "phash_int": -3.4475555462790963e+18, "collected_at": "2026-05-22T04:33:16.800876+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 13-29-11 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 13-29-11 CanonPowerShotA40.jpg", "file_name": "2003-02-23 13-29-11 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 13-29-11 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 605885.0, "mtime": "2003-02-23T11:29:10+00:00", "mtime_ts": 1045999750.0, "ctime": "2024-12-21T07:57:39.882682+00:00", "sha256_file": "7daa8fa516c20d3f246a737c68036d409b056624d7b809a0c26ea8c14c2b3ee0", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 13:29:11", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6564", "EXIF ExposureTime": "1/125", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 13:29:11", "EXIF DateTimeDigitized": "2003:02:23 13:29:11", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191916", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "233", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2784"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c8fac079d9c08561d821f431180926d1bcbe1a1361d5391367b74a4c43e77f98", "phash": "b9bacd6cd496e024", "dhash": "3b1b99998bc6c6d2", "phash_int": -5.063508963717882e+18, "collected_at": "2026-05-22T04:33:17.011698+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-26 20-47-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-26 20-47-25 CanonPowerShotS40.jpg", "file_name": "2003-12-26 20-47-25 CanonPowerShotS40.jpg", "file_stem": "2003-12-26 20-47-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1718991.0, "mtime": "2003-12-26T19:47:24+00:00", "mtime_ts": 1072468044.0, "ctime": "2024-12-21T07:57:57.842262+00:00", "sha256_file": "d55b3513c71f250f9d9edce63a712531ec55976820b57173a8a56a77ad636646", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:26 20:47:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6025", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:26 20:47:25", "EXIF DateTimeDigitized": "2003:12:26 20:47:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "309", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0800a75c8c091599e5510271025483236b01165332dd5cd92ad23e728de281bc", "phash": "92e9df1d24d0aca5", "dhash": "d1c98d8dfdfdb9ad", "phash_int": -7.860506358333789e+18, "collected_at": "2026-05-22T04:33:17.028765+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 01-34-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 01-34-10 CanonPowerShotS40.jpg", "file_name": "2003-11-09 01-34-10 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 01-34-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1459193.0, "mtime": "2003-11-09T00:34:10+00:00", "mtime_ts": 1068338050.0, "ctime": "2024-12-21T07:57:52.169079+00:00", "sha256_file": "08fb35b3b58ce2761202b6b087bcf634b8d8d4e8bc5167dac5e4ca95f6abb2d8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 01:34:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4857", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 01:34:10", "EXIF DateTimeDigitized": "2003:11:09 01:34:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "369/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 280, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000017", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "46", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "738"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "da5b1877c985aadcbe1a4bda4964802099579d846270c9b98bcf5f4c524172fb", "phash": "d2e50dc07d2774c9", "dhash": "c0d0ccc8d9cce9f9", "phash_int": -3.2501764356933253e+18, "collected_at": "2026-05-22T04:33:17.163018+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 17-08-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 17-08-57 CanonPowerShotS40.jpg", "file_name": "2003-12-27 17-08-57 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 17-08-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2654370.0, "mtime": "2003-12-27T16:08:56+00:00", "mtime_ts": 1072541336.0, "ctime": "2024-12-21T07:57:58.070269+00:00", "sha256_file": "f5d9ee726f461d962efeee1e930663ea322602d77019037623a1743ea30d41fc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 17:08:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5959", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 17:08:57", "EXIF DateTimeDigitized": "2003:12:27 17:08:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[44, 110, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "152", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6f4ab324d5f2786dfff992c7ca21c607b798fec5b113712e12f2d7d5a838c765", "phash": "c50a63799c61dbc6", "dhash": "d0c4e2b4b09386cc", "phash_int": -4.24847392450479e+18, "collected_at": "2026-05-22T04:33:17.173017+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-14 15-23-15 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-14 15-23-15 CanonPowerShotS40.jpg", "file_name": "2003-09-14 15-23-15 CanonPowerShotS40.jpg", "file_stem": "2003-09-14 15-23-15 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1491774.0, "mtime": "2003-09-14T13:23:15+00:00", "mtime_ts": 1063545795.0, "ctime": "2024-12-21T07:57:47.375924+00:00", "sha256_file": "0da9814005f349c7a2564845ac045fb097479ead8626baa183e7bb00816efdde", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:14 15:23:15", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5739", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:14 15:23:15", "EXIF DateTimeDigitized": "2003:09:14 15:23:15", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[72, 191, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "106", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "197", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2721fec7da267df10e33338b5430edf5aba7c48e200a859270cbde3d5af04e28", "phash": "d699443f69c692c6", "dhash": "a080cc8c2c2cecac", "phash_int": -2.9832782390079933e+18, "collected_at": "2026-05-22T04:33:17.427530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-43-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-43-06 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-43-06 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-43-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2466371.0, "mtime": "2003-04-05T12:43:04+00:00", "mtime_ts": 1049546584.0, "ctime": "2024-12-21T07:57:43.632803+00:00", "sha256_file": "79a488c1eda29a3b7e9b5b6089453921ee4e76d0acbb924f96668c5504666813", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:43:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8033", "EXIF ExposureTime": "1/800", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:43:06", "EXIF DateTimeDigitized": "2003:04:05 13:43:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "309/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000023", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "309", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "51a7c02036b3c9cbc56f742f5a70d3f1a17d3838b82996b11202652854981a85", "phash": "8c9be124e34f9633", "dhash": "e1717061b5f4b684", "phash_int": -8.314804738460772e+18, "collected_at": "2026-05-22T04:33:17.456530+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 13-25-40 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 13-25-40 CanonPowerShotS40.jpg", "file_name": "2003-12-20 13-25-40 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 13-25-40 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1764228.0, "mtime": "2003-12-20T12:25:38+00:00", "mtime_ts": 1071923138.0, "ctime": "2024-12-21T07:57:56.597222+00:00", "sha256_file": "cb3f517596f7e845b996b2408564c3cf8aa80069dcf6965aa2f35a3d3d63f1a5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 13:25:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6118", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 13:25:40", "EXIF DateTimeDigitized": "2003:12:20 13:25:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 337, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000021", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "15", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6b245ed3e46cb75b96665f73fb857c40e9d9fc6243d90270a2170d982934333c", "phash": "d57d2d4252cb4d16", "dhash": "c23266c8c8d1d0d8", "phash_int": -3.0632424086619223e+18, "collected_at": "2026-05-22T04:33:17.563918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-15 15-13-40 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-15 15-13-40 CanonPowerShotA40.jpg", "file_name": "2003-02-15 15-13-40 CanonPowerShotA40.jpg", "file_stem": "2003-02-15 15-13-40 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 457230.0, "mtime": "2003-02-15T13:13:38+00:00", "mtime_ts": 1045314818.0, "ctime": "2024-12-21T07:57:38.677643+00:00", "sha256_file": "70f9d01cec99b1640c08d2e1b4872d5322eb50210cc2ddab837db51c01e8f9b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:15 15:13:40", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4391", "EXIF ExposureTime": "1/125", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:15 15:13:40", "EXIF DateTimeDigitized": "2003:02:15 15:13:40", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181839", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "290", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "4515"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d8687821a713457a4545eaf332b9f010f226ed3d82883193144e28ff2993a3c5", "phash": "b804c3e9b5126f6d", "dhash": "8317371c0f0b89f0", "phash_int": -5.186805462291288e+18, "collected_at": "2026-05-22T04:33:17.574915+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-57-05 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-57-05 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-57-05 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-57-05 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 376620.0, "mtime": "2003-11-29T12:57:05+00:00", "mtime_ts": 1070110625.0, "ctime": "2024-12-21T07:57:54.601157+00:00", "sha256_file": "76322995a6b3bed5d4ad4e4e912710c93e0ab3717559ee7ed1532c703b608b15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:57:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5215", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:57:05", "EXIF DateTimeDigitized": "2003:11:29 13:57:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 407, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303044", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "131", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "490"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a41be1dc154a150c08fca2a4201a073ea2affb96623bbd30f090fc5e5a0afc24", "phash": "ccf127317a4ce0e3", "dhash": "b4e6e4b1f8e06465", "phash_int": -3.6791163271262454e+18, "collected_at": "2026-05-22T04:33:17.641918+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-21-20 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-21-20 E5000.jpg", "file_name": "2003-05-25 11-21-20 E5000.jpg", "file_stem": "2003-05-25 11-21-20 E5000", "file_ext": ".jpg", "file_size": 598204.0, "mtime": "2003-05-25T10:21:20+00:00", "mtime_ts": 1053858080.0, "ctime": "2024-12-21T07:57:46.450894+00:00", "sha256_file": "a11dba45c301271d0e61acb2b0dba5848ac256659c9cb4f1b243e95451d5e741", "exif": {"Image ImageDescription": " ", "Image Make": "NIKON", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image Software": "E5000v1.6", "Image DateTime": "2003:05:25 11:21:20", "Image YCbCrPositioning": "Co-sited", "Image ExifOffset": "284", "Thumbnail JPEGInterchangeFormat": "4084", "Thumbnail JPEGInterchangeFormatLength": "4020", "EXIF ExposureTime": "10/2379", "EXIF FNumber": "6", "EXIF ExposureProgram": "Program Normal", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:05:25 11:21:20", "EXIF DateTimeDigitized": "2003:05:25 11:21:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "1", "EXIF ExposureBiasValue": "-3/10", "EXIF MaxApertureValue": "3", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF LightSource": "Daylight", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "107/5", "EXIF MakerNote": "[21, 0, 1, 0, 7, 0, 4, 0, 0, 0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2560", "EXIF ExifImageLength": "1920", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "886", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed", "MakerNote MakernoteVersion": "0100", "MakerNote ISOSetting": "[0, 100]", "MakerNote ColorMode": "COLOR", "MakerNote Quality": "BASIC ", "MakerNote Whitebalance": "SUNNY ", "MakerNote ImageSharpening": "NONE ", "MakerNote FocusMode": "AF-C ", "MakerNote FlashSetting": " ", "MakerNote LensMount": "1104/125", "MakerNote ISOSelection": "MANUAL", "MakerNote ImageAdjustment": "CONTRAST(-) ", "MakerNote AuxiliaryLens": "OFF ", "MakerNote ManualFocusDistance": "0/0", "MakerNote DigitalZoomFactor": "1", "MakerNote AFFocusPosition": "CenterCenterCenterCenter", "MakerNote SceneMode": " ", "MakerNote Saturation": "0", "MakerNote NoiseReduction": "OFF ", "MakerNote DataDump": "[1, 105, 0, 128, 1, 0, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 5, 160, 24, 80, ... ]", "MakerNote NikonPreview": "1764", "MakerNote PrintIM": "[80, 114, 105, 110, 116, 73, 77, 0, 48, 49, 48, 48, 0, 0, 13, 0, 1, 0, 22, 0, ... ]"}, "format": "JPEG", "mode": "RGB", "width": 2560.0, "height": 1920.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "94bcd92902953394c684f49297a025fff07738f34276bd5d41e3fa19050b2e31", "phash": "f3c8dc2387d63914", "dhash": "040c0a484a490d06", "phash_int": -8.802116819900024e+17, "collected_at": "2026-05-22T04:33:17.707921+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-02-05 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-02-05 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-02-05 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-02-05 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 612815.0, "mtime": "2003-11-29T12:02:05+00:00", "mtime_ts": 1070107325.0, "ctime": "2024-12-21T07:57:54.308148+00:00", "sha256_file": "b6a07bec3c78ceaab73671284dea93a8d72ac2c8637d8ca529068fd87e119239", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:02:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6603", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:02:05", "EXIF DateTimeDigitized": "2003:11:29 13:02:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 448, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303022", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "8", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "49", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8014d433d21c183d9eece29ba3577b323e7cc58032361beb55dfca33bc09e967", "phash": "ff850892657c36a3", "dhash": "746a1e164a2d3d2b", "phash_int": -3.4611997274523996e+16, "collected_at": "2026-05-22T04:33:17.951325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-37-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-37-22 CanonPowerShotS40.jpg", "file_name": "2003-11-29 12-37-22 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 12-37-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1453580.0, "mtime": "2003-11-29T11:37:22+00:00", "mtime_ts": 1070105842.0, "ctime": "2024-12-21T07:57:53.906135+00:00", "sha256_file": "a66b12abd5d4022034536e83a3c66b910adcbf2d72a10d1cc9f4cbb8156c6583", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:37:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6721", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 12:37:22", "EXIF DateTimeDigitized": "2003:11:29 12:37:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "397/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "10", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "171", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "794"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "95a7c473c867f30ae49ced670b655c6510febd9bea8c28ac04d3c4fc9ea257d9", "phash": "99628c76c999b56a", "dhash": "f1a5d81a383c3931", "phash_int": -7.39419319637261e+18, "collected_at": "2026-05-22T04:33:17.962325+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 17-21-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 17-21-18 CanonPowerShotS40.jpg", "file_name": "2003-02-22 17-21-18 CanonPowerShotS40.jpg", "file_stem": "2003-02-22 17-21-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1589764.0, "mtime": "2003-02-22T16:21:16+00:00", "mtime_ts": 1045930876.0, "ctime": "2024-12-21T07:57:39.506670+00:00", "sha256_file": "f50d6be732e71c308353dd95c9a7bf9aacb6f69e2cccd02f1040a4fe9b6b1ae6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 17:21:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7229", "EXIF ExposureTime": "1/25", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:22 17:21:18", "EXIF DateTimeDigitized": "2003:02:22 17:21:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "125", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "149", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ab431b542957c9c5c11d00c269743fb6b8da902ce9d5c771eb7666018d40d55b", "phash": "91a38e3cb1a5d1d9", "dhash": "fed9d8da989eb6b0", "phash_int": -7.952356125676548e+18, "collected_at": "2026-05-22T04:33:18.270337+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-11-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-11-03 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-11-03 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-11-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2003805.0, "mtime": "2002-09-28T13:11:02+00:00", "mtime_ts": 1033218662.0, "ctime": "2024-12-21T07:57:35.845551+00:00", "sha256_file": "deb4549a1f9e302cfb8ed904842cffbb77ac539d79ab80938d9b0277e60c8516", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:11:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5584", "EXIF ExposureTime": "1/640", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:11:03", "EXIF DateTimeDigitized": "2002:09:28 13:11:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "697/100", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000003", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "326", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6970"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "862d8e88ac2dda3bbc44d06ad662f0cb1e3dc82f4aab37c6e554ae6de5df0c4c", "phash": "f6d5ea0961e6d80a", "dhash": "833c04c4eaf68d0f", "phash_int": -6.603644443217859e+17, "collected_at": "2026-05-22T04:33:18.275336+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-08 17-44-25 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-08 17-44-25 CanonPowerShotA40.jpg", "file_name": "2003-02-08 17-44-25 CanonPowerShotA40.jpg", "file_stem": "2003-02-08 17-44-25 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 333348.0, "mtime": "2003-02-08T15:44:24+00:00", "mtime_ts": 1044719064.0, "ctime": "2024-12-21T07:57:38.161626+00:00", "sha256_file": "5578366cba5ff3a3bba3328b4ae85fb55bb030bcab3e747711c3726297a5206a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:08 17:44:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4026", "EXIF ExposureTime": "1/60", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:08 17:44:25", "EXIF DateTimeDigitized": "2003:02:08 17:44:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "118447/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "301/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 4219, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171701", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "216", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "41", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "72", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1802"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "13548ec83a55d804eba196387e26f2c4dfc63891bf763286b62007a09a74be66", "phash": "df992b3d20e831cc", "dhash": "587878387878616d", "phash_int": -2.334787390269804e+18, "collected_at": "2026-05-22T04:33:19.498477+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-21-07 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-21-07 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-21-07 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-21-07 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2059840.0, "mtime": "2002-11-13T08:21:06+00:00", "mtime_ts": 1037175666.0, "ctime": "2024-12-21T07:57:36.941587+00:00", "sha256_file": "b886a73ebe50dacc0542987ca3c0b8a26d8b610a5310c3c914413f89afc48a10", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:21:07", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4195", "EXIF ExposureTime": "1/160", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:21:07", "EXIF DateTimeDigitized": "2002:11:13 09:21:07", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "117/16", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1359/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "69/8", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000006", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "234", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1359"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c61a3542958dc219a4fc36738cfd7e5371aca22c4f0680c2713c96e1b9dc6d38", "phash": "87f48d1b69e21715", "dhash": "ececcc8fdb69ede2", "phash_int": -8.650133835391822e+18, "collected_at": "2026-05-22T04:33:19.575479+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-29 15-43-37 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-29 15-43-37 CanonPowerShotS40.jpg", "file_name": "2003-04-29 15-43-37 CanonPowerShotS40.jpg", "file_stem": "2003-04-29 15-43-37 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1419067.0, "mtime": "2003-04-29T14:43:36+00:00", "mtime_ts": 1051627416.0, "ctime": "2024-12-21T07:57:46.253888+00:00", "sha256_file": "aa331664bd5ab5b5256dfb5b0e0721b22ae010971c04b6f511f68fac34d46264", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:29 15:43:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4711", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:29 15:43:37", "EXIF DateTimeDigitized": "2003:04:29 15:43:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 267, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65473", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "147", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "644e2051d5b05b847ae182b7f395991491ab77294ab0182c2a3ae3d4457e9c43", "phash": "8983671cbaf1d90e", "dhash": "c9d1d3d3b1b3b22b", "phash_int": -8.537867095471172e+18, "collected_at": "2026-05-22T04:33:19.831484+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-14 11-27-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-14 11-27-03 CanonPowerShotS40.jpg", "file_name": "2003-12-14 11-27-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-14 11-27-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1563730.0, "mtime": "2003-12-14T10:27:03+00:00", "mtime_ts": 1071397623.0, "ctime": "2024-12-21T07:57:56.316213+00:00", "sha256_file": "12ce856d4146e4b141780aa5c15eccbe054d7030459f83253ce3ccab3f4e97b5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:14 11:27:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5619", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:14 11:27:03", "EXIF DateTimeDigitized": "2003:12:14 11:27:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "1", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "173", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4bdc4f4edb6ea37dcdb694e2a9c2477c5d6e199293a5b47508f1d6c36464925e", "phash": "864e6e6c8c976366", "dhash": "e2f1d1f0e0b8ecdc", "phash_int": -8.768950011949522e+18, "collected_at": "2026-05-22T04:33:19.847612+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 12-56-37 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 12-56-37 CanonPowerShotA40.jpg", "file_name": "2003-11-29 12-56-37 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 12-56-37 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 493902.0, "mtime": "2003-11-29T11:56:37+00:00", "mtime_ts": 1070106997.0, "ctime": "2024-12-21T07:57:54.159143+00:00", "sha256_file": "e633357f8118a7862a47b7d3dc45b1d57a8dd02b5f69dfdd19e6847e67f985a8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 12:56:37", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5144", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 12:56:37", "EXIF DateTimeDigitized": "2003:11:29 12:56:37", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[5, 2508, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303007", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "43", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "32", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e8a8b75348078f5bfdf0da0a606470e56d8e38363efa168111cb4c19e923f539", "phash": "c749786812b76e1e", "dhash": "d4f060e0e1e0e8f0", "phash_int": -4.0866027984760714e+18, "collected_at": "2026-05-22T04:33:20.205441+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 20-11-03 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 20-11-03 CanonPowerShotS40.jpg", "file_name": "2003-12-27 20-11-03 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 20-11-03 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1593051.0, "mtime": "2003-12-27T19:11:02+00:00", "mtime_ts": 1072552262.0, "ctime": "2024-12-21T07:57:58.298277+00:00", "sha256_file": "0d80719ba60876228b71fa785dcf5534ee02c15644de781b0898d1a582c0684b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 20:11:03", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6803", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 20:11:03", "EXIF DateTimeDigitized": "2003:12:27 20:11:03", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "328", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7e955cdfdfd7e1ea49751ed2d750376d652d5a11345f87e0c05ce209b1cac1ea", "phash": "fccc83c18c3f7886", "dhash": "66622836a42e5ef1", "phash_int": -2.3066461359784128e+17, "collected_at": "2026-05-22T04:33:20.245287+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-14 12-51-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-14 12-51-45 CanonPowerShotS40.jpg", "file_name": "2003-04-14 12-51-45 CanonPowerShotS40.jpg", "file_stem": "2003-04-14 12-51-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1701331.0, "mtime": "2003-04-14T11:51:44+00:00", "mtime_ts": 1050321104.0, "ctime": "2024-12-21T07:57:45.210854+00:00", "sha256_file": "e5353efbb3161f160c8de7cd6a1a71ea693aba8f2512e6064f8674f2a942effa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:14 12:51:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3418", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:14 12:51:45", "EXIF DateTimeDigitized": "2003:04:14 12:51:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "6411/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[27, 239, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000001", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "90", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "6411"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cde48e1d2deacec6aa19801ac6742b5f2ee4b3a87d9ef7410e4e1468c122979e", "phash": "c5afabab858290d6", "dhash": "e32220e0e0f0e0e0", "phash_int": -4.2019511741457e+18, "collected_at": "2026-05-22T04:33:20.419330+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-04-02 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-04-02 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-04-02 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-04-02 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2077813.0, "mtime": "2003-09-16T11:04:02+00:00", "mtime_ts": 1063710242.0, "ctime": "2024-12-21T07:57:47.523929+00:00", "sha256_file": "e181c6c4d9e773e58d61a0d24e9d5c0f3be02f15318613ffc27c0905ac12fa08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:04:02", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5823", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:04:02", "EXIF DateTimeDigitized": "2003:09:16 13:04:02", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "323", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "64bab0f91b70450ae0072af84549b58a0dba3201aeebd90ac6127e1106e25ff6", "phash": "8d95f8762798548d", "dhash": "fc76f2faeaa4b3f2", "phash_int": -8.244410356477701e+18, "collected_at": "2026-05-22T04:33:20.431336+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 15-53-25 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 15-53-25 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 15-53-25 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 15-53-25 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 360840.0, "mtime": "2003-10-23T20:19:42+00:00", "mtime_ts": 1066940382.0, "ctime": "2024-12-21T07:57:46.783905+00:00", "sha256_file": "fc27c096364613694a8187502927e8a01eec856a078cf495f5638140007f2c4e", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image SensingMethod": "One-chip color area", "Image ExifOffset": "188", "EXIF ExposureTime": "1/30", "EXIF FNumber": "17/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 15:53:25", "EXIF DateTimeDigitized": "2003:08:12 15:53:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "5", "EXIF ApertureValue": "7/2", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "0", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1200.0, "height": 1800.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [96.0, 96.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "816bda73209d404530d7a5dc6ba44b45cdc181c4a6dce84dbc1aa0763a06f6df", "phash": "b0fad18d4e2c7cc8", "dhash": "1b891d27ffdec681", "phash_int": -5.694008374024439e+18, "collected_at": "2026-05-22T04:33:20.568018+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 12-11-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 12-11-43 CanonPowerShotS40.jpg", "file_name": "2003-03-08 12-11-43 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 12-11-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1587246.0, "mtime": "2003-03-08T11:11:42+00:00", "mtime_ts": 1047121902.0, "ctime": "2024-12-21T07:57:40.717709+00:00", "sha256_file": "c39b0b918422378bfa4b05a0cce2d7c7e1021ace27feeab03c3d4e88358a8528", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 12:11:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4083", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 12:11:43", "EXIF DateTimeDigitized": "2003:03:08 12:11:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "603/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[22, 247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000048", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "99", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "603"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "dd50a4205dd3ed780a729eb84b0dbea2699625d05cc42b60e26e2e813deaf2c4", "phash": "b03d8e9633e5c163", "dhash": "bc34929b9b942cc8", "phash_int": -5.747280773687951e+18, "collected_at": "2026-05-22T04:33:20.598019+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 22-39-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 22-39-12 CanonPowerShotA40.jpg", "file_name": "2003-02-01 22-39-12 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 22-39-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 403879.0, "mtime": "2003-02-01T20:39:10+00:00", "mtime_ts": 1044131950.0, "ctime": "2024-12-21T07:57:37.950619+00:00", "sha256_file": "8265b12b5cfc5acec8cb3bdcc0db89e97b32152a5bc16e8322b353a0e057cbcf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 22:39:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4836", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 22:39:12", "EXIF DateTimeDigitized": "2003:02:01 22:39:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 323, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161668", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "160", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "498"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b4a7a0c7e33dd71518cb7c1c90316f3615b587b6a7048000c646d725d1078692", "phash": "857a49f683469976", "dhash": "98e3cccccce6e6e2", "phash_int": -8.828662796393212e+18, "collected_at": "2026-05-22T04:33:20.729152+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-23 16-52-35 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-23 16-52-35 CanonPowerShotS40.jpg", "file_name": "2003-10-23 16-52-35 CanonPowerShotS40.jpg", "file_stem": "2003-10-23 16-52-35 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1032160.0, "mtime": "2003-10-23T15:52:35+00:00", "mtime_ts": 1066924355.0, "ctime": "2024-12-21T07:57:48.984976+00:00", "sha256_file": "04947d5cdc456c986ec6173051a96a819e42d73f8af9a1f2ff6530c66ac1fac7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:23 16:52:35", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2707", "EXIF ExposureTime": "1/8", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:23 16:52:35", "EXIF DateTimeDigitized": "2003:10:23 16:52:35", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "141/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "3", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "105", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "705"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "8e93a22efc16dea29f7bd1d1eb9ed66752a2766bb015c31225f9b785579973c0", "phash": "c56b7ac07a958595", "dhash": "01c0c0c0c0d0f050", "phash_int": -4.221145258620779e+18, "collected_at": "2026-05-22T04:33:20.784157+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-13 14-49-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-13 14-49-17 CanonPowerShotS40.jpg", "file_name": "2003-04-13 14-49-17 CanonPowerShotS40.jpg", "file_stem": "2003-04-13 14-49-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1752632.0, "mtime": "2003-04-13T13:49:16+00:00", "mtime_ts": 1050241756.0, "ctime": "2024-12-21T07:57:45.165853+00:00", "sha256_file": "a6b15e4906cbc2edab360fd0d5bb6fd8cf785a48656251d9e92f109c2010b1cf", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:13 14:49:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4348", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:13 14:49:17", "EXIF DateTimeDigitized": "2003:04:13 14:49:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "345", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "b2da2f6adbae9da977133f531a792dc2e4d956b45737b346d20d93a1ca0eee24", "phash": "dafa6494947d61c1", "dhash": "08018338f0f8e7ed", "phash_int": -2.667709239954415e+18, "collected_at": "2026-05-22T04:33:21.011302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 16-36-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 16-36-13 CanonPowerShotS40.jpg", "file_name": "2003-04-06 16-36-13 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 16-36-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2378199.0, "mtime": "2003-04-06T15:36:12+00:00", "mtime_ts": 1049643372.0, "ctime": "2024-12-21T07:57:44.613835+00:00", "sha256_file": "a0d9dbf5bc36ab98cf462ad0f7977240f441da96a97ce2cb065a0e57819ee0ea", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 16:36:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8598", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 16:36:13", "EXIF DateTimeDigitized": "2003:04:06 16:36:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000020", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "58882f0da281f83471c7267487c23747edd5452903532b1ef08562d889a9cd79", "phash": "e4f2d2c92d63cd90", "dhash": "c08cb4c6d6d38c34", "phash_int": -1.9492639272062285e+18, "collected_at": "2026-05-22T04:33:21.014305+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-08-12 16-06-46 KODAKDX3600DIGITALCAMERA.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-08-12 16-06-46 KODAKDX3600DIGITALCAMERA.jpg", "file_name": "2003-08-12 16-06-46 KODAKDX3600DIGITALCAMERA.jpg", "file_stem": "2003-08-12 16-06-46 KODAKDX3600DIGITALCAMERA", "file_ext": ".jpg", "file_size": 462179.0, "mtime": "2003-10-23T20:19:45+00:00", "mtime_ts": 1066940385.0, "ctime": "2024-12-21T07:57:46.840907+00:00", "sha256_file": "7f2345fdacf07328022674c10fa4969204546dc72e62a0fee9468e3cba070d48", "exif": {"Image Make": "EASTMAN KODAK COMPANY", "Image Model": "KODAK DX3600 DIGITAL CAMERA", "Image Orientation": "Horizontal (normal)", "Image XResolution": "230", "Image YResolution": "230", "Image ResolutionUnit": "Pixels/Inch", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "500", "Thumbnail JPEGInterchangeFormat": "2154", "Thumbnail JPEGInterchangeFormatLength": "5098", "EXIF ExposureTime": "1/350", "EXIF FNumber": "28/5", "EXIF ExposureProgram": "Program Normal", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:08:12 16:06:46", "EXIF DateTimeDigitized": "2003:08:12 16:06:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "17/2", "EXIF ApertureValue": "5", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "17/5", "EXIF SubjectDistance": "0", "EXIF MeteringMode": "Average", "EXIF LightSource": "Unknown", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "28/5", "EXIF MakerNote": "[75, 68, 75, 48, 48, 48, 49, 73, 68, 88, 51, 54, 48, 48, 32, 32, 3, 1, 0, 0, ... ]", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1800", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "EXIF InteroperabilityOffset": "1850", "EXIF ExposureIndex": "100", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF SceneType": "Directly Photographed"}, "format": "JPEG", "mode": "RGB", "width": 1800.0, "height": 1200.0, "megapixels": 2.16, "has_transparency": 0.0, "dpi": [230.0, 230.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1918a57b52d72d7d074b473c1e1a8d8e5c22438809dfdf4f87bbe9f90938240a", "phash": "98c6bf39266d4296", "dhash": "fffce4c29db93a2f", "phash_int": -7.438047482377059e+18, "collected_at": "2026-05-22T04:33:21.181232+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-34-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-34-04 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-34-04 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-34-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2129841.0, "mtime": "2003-11-16T18:34:04+00:00", "mtime_ts": 1069007644.0, "ctime": "2024-12-21T07:57:53.034106+00:00", "sha256_file": "8d4e13802ef035f38110f458e14dd921887971517999acb1f5c074eb7b2fb256", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:34:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6149", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:34:04", "EXIF DateTimeDigitized": "2003:11:16 19:34:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000007", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "41", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65527", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "cf80cd46b3c659c881862d58b91645d0fc8efeb29ac2802d3b8ca3ede9cc6a85", "phash": "92eed112637365d8", "dhash": "4e26260dddd998d0", "phash_int": -7.859114422806814e+18, "collected_at": "2026-05-22T04:33:21.217334+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-52-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-52-12 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-52-12 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-52-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1301392.0, "mtime": "2003-11-30T11:52:12+00:00", "mtime_ts": 1070193132.0, "ctime": "2024-12-21T07:57:55.310180+00:00", "sha256_file": "5109ee8f5c6f9bcd49dca800d89945f309a388647f6acd66f8e3321ee72b3de7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:52:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4962", "EXIF ExposureTime": "1/4", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:52:12", "EXIF DateTimeDigitized": "2003:11:30 12:52:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "2", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[77, 190, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000033", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "10", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "64", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "167", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "57984d77a87b2513eab81ee13c2b4389562cd2b91f20a4455fbd85067985f175", "phash": "a6a31999133c9d7c", "dhash": "dcccc4ccc4743439", "phash_int": -6.439274896966247e+18, "collected_at": "2026-05-22T04:33:21.316387+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-01 13-17-42 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-01 13-17-42 CanonPowerShotA40.jpg", "file_name": "2003-11-01 13-17-42 CanonPowerShotA40.jpg", "file_stem": "2003-11-01 13-17-42 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 494010.0, "mtime": "2003-11-01T12:17:42+00:00", "mtime_ts": 1067689062.0, "ctime": "2024-12-21T07:57:50.969040+00:00", "sha256_file": "42d2e6cd7f7038658781bf5b9b1e6237c2bd42f9c394c3652d91bd1897834fce", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:01 13:17:42", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6618", "EXIF ExposureTime": "1/60", "EXIF FNumber": "8", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:01 13:17:42", "EXIF DateTimeDigitized": "2003:11:01 13:17:42", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "6", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 21910, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292978", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "55", "MakerNote TargetAperture": "192", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "87", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "496"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e69f1c0c535c0f2c235c807bd8cbc27f1afc1272f2fcb74c3d85f076505ee635", "phash": "da65f22762e807e4", "dhash": "c968f2b268783939", "phash_int": -2.7094933498164654e+18, "collected_at": "2026-05-22T04:33:21.384004+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-31 19-18-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-31 19-18-01 CanonPowerShotS40.jpg", "file_name": "2003-10-31 19-18-01 CanonPowerShotS40.jpg", "file_stem": "2003-10-31 19-18-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1588256.0, "mtime": "2003-10-31T18:18:01+00:00", "mtime_ts": 1067624281.0, "ctime": "2024-12-21T07:57:50.289018+00:00", "sha256_file": "8b02468349d3f3914bba43d76e023bc2551dc1788b4318fe940db4250f85fcb8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:31 19:18:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6673", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:31 19:18:01", "EXIF DateTimeDigitized": "2003:10:31 19:18:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 413, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "37", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "79ede931661e18a6367b33011622520fe763495a70bcc95d11df06d08c6bebcb", "phash": "d56a2f3947c03396", "dhash": "c36ccccc5c18b4ac", "phash_int": -3.068588273036152e+18, "collected_at": "2026-05-22T04:33:21.486542+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-18 09-41-34 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-18 09-41-34 CanonPowerShotS40.jpg", "file_name": "2003-11-18 09-41-34 CanonPowerShotS40.jpg", "file_stem": "2003-11-18 09-41-34 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1645541.0, "mtime": "2003-11-18T08:41:34+00:00", "mtime_ts": 1069144894.0, "ctime": "2024-12-21T07:57:53.448120+00:00", "sha256_file": "0fc92c650b7ea97d459b0f6923935c79c603e2c380d414f715c461445c370cb5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:18 09:41:34", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4754", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:18 09:41:34", "EXIF DateTimeDigitized": "2003:11:18 09:41:34", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "479/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 409, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65515", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "958"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "52a955195ed485dfa666180a0872bef0bebbd51f802fec46b52639cfacd81d07", "phash": "d62d3b5b640c0fca", "dhash": "fb59f4b4b07060b0", "phash_int": -3.013687311934419e+18, "collected_at": "2026-05-22T04:33:21.503696+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-47-06 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-47-06 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-47-06 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-47-06 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 408244.0, "mtime": "2003-03-30T10:01:37+00:00", "mtime_ts": 1049018497.0, "ctime": "2024-12-21T07:57:40.214693+00:00", "sha256_file": "c60060d59edfc862ed39215c90e9d3f487295520bb3181a6a1a4f00c0a57d1fb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:47:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4856", "EXIF ExposureTime": "1/100", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:47:06", "EXIF DateTimeDigitized": "2003:03:06 18:47:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 28, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191937", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "20", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "101", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2618"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7defb6361ce329e0f2bccb1a2e3d8399c5d390d5043e4bc5d059506f8a45dc1d", "phash": "859af26d134d14eb", "dhash": "7c6caa6a6626a2ee", "phash_int": -8.81947036996252e+18, "collected_at": "2026-05-22T04:33:21.662936+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-25 23-30-09 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-25 23-30-09 CanonPowerShotS40.jpg", "file_name": "2003-10-25 23-30-09 CanonPowerShotS40.jpg", "file_stem": "2003-10-25 23-30-09 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1473956.0, "mtime": "2003-10-25T22:30:09+00:00", "mtime_ts": 1067121009.0, "ctime": "2024-12-21T07:57:49.292986+00:00", "sha256_file": "58487d3cab0b3cbd5dc946fed1bda2f39ea093aba368e5dec838b24a08dce312", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:25 23:30:09", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4041", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:25 23:30:09", "EXIF DateTimeDigitized": "2003:10:25 23:30:09", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000058", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65531", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f90584924eb37d3c307f31405cfef5dff99caffd49e93a468d7169ee7971a09b", "phash": "cb530cbca039cb4f", "dhash": "f86a48da8d3373e3", "phash_int": -3.795676056661669e+18, "collected_at": "2026-05-22T04:33:21.759940+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-30 14-01-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-30 14-01-41 CanonPowerShotS40.jpg", "file_name": "2003-03-30 14-01-41 CanonPowerShotS40.jpg", "file_stem": "2003-03-30 14-01-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2534742.0, "mtime": "2003-03-30T13:01:40+00:00", "mtime_ts": 1049029300.0, "ctime": "2024-12-21T07:57:43.312793+00:00", "sha256_file": "bf95f0dd9b47cba7f4c2cdca1fb36cf8d94e85a92560c8072e977e6bbf5f0eff", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:30 14:01:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6408", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:30 14:01:41", "EXIF DateTimeDigitized": "2003:03:30 14:01:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000024", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "248", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "89f685b1f1da817d49b2b95d5d919aa98b6cc1da0f2e05bd0eb66b49e11722f4", "phash": "989874f23b47cd1a", "dhash": "bab8b1b9b9f0c01b", "phash_int": -7.451076999759017e+18, "collected_at": "2026-05-22T04:33:21.955648+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-23 13-29-17 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-23 13-29-17 CanonPowerShotA40.jpg", "file_name": "2003-02-23 13-29-17 CanonPowerShotA40.jpg", "file_stem": "2003-02-23 13-29-17 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 571954.0, "mtime": "2003-02-23T11:29:16+00:00", "mtime_ts": 1045999756.0, "ctime": "2024-12-21T07:57:39.892682+00:00", "sha256_file": "39e2cf126ec74033d8ad475277234996297fe56d3f871fecd8703e81e0be0527", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:23 13:29:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "6571", "EXIF ExposureTime": "1/100", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:23 13:29:17", "EXIF DateTimeDigitized": "2003:02:23 13:29:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191917", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "222", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2229"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b85a067831ad5a6cdb5b542c92a93dcf9c84272b22fd7f47bd1762a5fe39dc4", "phash": "e0ba9d479a3ac865", "dhash": "398e8f89cbc6c6f2", "phash_int": -2.2533157326897295e+18, "collected_at": "2026-05-22T04:33:21.977649+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-20 13-25-46 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-20 13-25-46 CanonPowerShotS40.jpg", "file_name": "2003-12-20 13-25-46 CanonPowerShotS40.jpg", "file_stem": "2003-12-20 13-25-46 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1779700.0, "mtime": "2003-12-20T12:25:44+00:00", "mtime_ts": 1071923144.0, "ctime": "2024-12-21T07:57:56.609222+00:00", "sha256_file": "a955ddafa9733cb91fe1b730b4a353d2b9a441229d2125bd22f7fce0f17e0dc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:20 13:25:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5536", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:20 13:25:46", "EXIF DateTimeDigitized": "2003:12:20 13:25:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "172/125", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 369, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000022", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "13", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "42", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1376"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5e01ed1def032e70cdaf183856c111b4d3d4b65f300239c3d4ca2af1ac49a96b", "phash": "957874667ccf2303", "dhash": "3cb8d8b0b8ececfa", "phash_int": -7.676257581323574e+18, "collected_at": "2026-05-22T04:33:22.213191+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-09 11-00-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-09 11-00-27 CanonPowerShotS40.jpg", "file_name": "2003-11-09 11-00-27 CanonPowerShotS40.jpg", "file_stem": "2003-11-09 11-00-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1307076.0, "mtime": "2003-11-09T10:00:27+00:00", "mtime_ts": 1068372027.0, "ctime": "2024-12-21T07:57:52.304083+00:00", "sha256_file": "5c9ada802ed6bcad165754b6272f5bbbe5b3a72a63d991c96e2b154bfba26471", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:09 11:00:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3647", "EXIF ExposureTime": "1/50", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:09 11:00:27", "EXIF DateTimeDigitized": "2003:11:09 11:00:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7b73c1886e5436be223f90fa4cf63c0b8545b09db5d120d0f4fc9c56b13a5339", "phash": "95ead41dc2583bc5", "dhash": "84c6cb9bde7e74c4", "phash_int": -7.644064193228293e+18, "collected_at": "2026-05-22T04:33:22.258564+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-29-46 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-29-46 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-29-46 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-29-46 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 469228.0, "mtime": "2003-11-29T15:29:46+00:00", "mtime_ts": 1070119786.0, "ctime": "2024-12-21T07:57:54.922168+00:00", "sha256_file": "fad2d44605f05c2312e4dd6ef0de26da78ce9b94b7f0e3b5791055dcd96e6ff2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:29:46", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3934", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:29:46", "EXIF DateTimeDigitized": "2003:11:29 16:29:46", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1293, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303069", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "141", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "67864bac4ec3501f724c98f784579709ff990b9485b85920d0c748444f8549ef", "phash": "ccb2b3d9ccccc641", "dhash": "b89cc7a292e29290", "phash_int": -3.6966945960925087e+18, "collected_at": "2026-05-22T04:33:23.572513+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-26-22 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-26-22 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-26-22 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-26-22 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1750222.0, "mtime": "2002-12-01T11:30:56+00:00", "mtime_ts": 1038742256.0, "ctime": "2024-12-21T07:57:37.474604+00:00", "sha256_file": "87af268847d968271d9f9f4be7bd1ac60fc1460c3c8060ce65328f1dc0a1f0f8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:26:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3575", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:26:22", "EXIF DateTimeDigitized": "2002:11:28 17:26:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000025", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "185", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "930330789520c3e9c6e2e698731b8ecda0cf39af0cf78ff0071eaa5cd8d89ddd", "phash": "d2d86dadd94b0217", "dhash": "9030e8d958cc08f0", "phash_int": -3.253730137332842e+18, "collected_at": "2026-05-22T04:33:24.067265+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-23 16-29-54 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-23 16-29-54 CanonPowerShotS40.jpg", "file_name": "2003-10-23 16-29-54 CanonPowerShotS40.jpg", "file_stem": "2003-10-23 16-29-54 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1332407.0, "mtime": "2003-10-23T15:29:54+00:00", "mtime_ts": 1066922994.0, "ctime": "2024-12-21T07:57:48.922974+00:00", "sha256_file": "6c0ecc511dc9b2a561d8a68e6680dada1d38820e8d9b40bc2ce71030220f9225", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:23 16:29:54", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5300", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:23 16:29:54", "EXIF DateTimeDigitized": "2003:10:23 16:29:54", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[41, 279, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000026", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "102", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "39e87d20445bf1561e8acb4363e74b509a9b33ac04e7d1bf64fdb621cdd0160c", "phash": "937a68cc4f977091", "dhash": "2498dc48c8c8c8b8", "phash_int": -7.819822576257503e+18, "collected_at": "2026-05-22T04:33:24.621894+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-12 09-11-27 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-12 09-11-27 CanonPowerShotS40.jpg", "file_name": "2002-11-12 09-11-27 CanonPowerShotS40.jpg", "file_stem": "2002-11-12 09-11-27 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1650420.0, "mtime": "2002-11-12T08:11:26+00:00", "mtime_ts": 1037088686.0, "ctime": "2024-12-21T07:57:36.804583+00:00", "sha256_file": "6c328d734674c4f9c31a921223c046309535288423ab05bbfbae535a85b3c064", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:12 09:11:27", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5195", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:12 09:11:27", "EXIF DateTimeDigitized": "2002:11:12 09:11:27", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2233/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[93, 172, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000010", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "183", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "212", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2233"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0dc4b9148e4e9dee3d3232fc095abd31987053b75e779e09b0d0a9a01a94d09b", "phash": "d9c9d33332aec461", "dhash": "99d0d2e13a78b8d0", "phash_int": -2.7534374803132406e+18, "collected_at": "2026-05-22T04:33:24.777359+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-05 18-12-30 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-05 18-12-30 CanonPowerShotS40.jpg", "file_name": "2003-11-05 18-12-30 CanonPowerShotS40.jpg", "file_stem": "2003-11-05 18-12-30 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1695585.0, "mtime": "2003-11-05T17:12:30+00:00", "mtime_ts": 1068052350.0, "ctime": "2024-12-21T07:57:51.688063+00:00", "sha256_file": "1b67e9646a949f3a9ba5881d105d3652e5a791375dcbea804d230b4efcbfb0da", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:05 18:12:30", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7349", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:05 18:12:30", "EXIF DateTimeDigitized": "2003:11:05 18:12:30", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "33", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65535", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "162", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4ec1cda790d0f8666acd6e823c6ecea68eaa25591556a613bac6297a7b9e4267", "phash": "843477c778993333", "dhash": "aea6b6b2e2e2f290", "phash_int": -8.920373263308606e+18, "collected_at": "2026-05-22T04:33:24.990047+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-06-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-06-20 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-06-20 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-06-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1335309.0, "mtime": "2003-11-30T12:06:20+00:00", "mtime_ts": 1070193980.0, "ctime": "2024-12-21T07:57:55.669192+00:00", "sha256_file": "f1d291aaab6439bef8b37c256eb9199676b69e25a8803cf14f00d7a463906966", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:06:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4320", "EXIF ExposureTime": "1/6", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:06:20", "EXIF DateTimeDigitized": "2003:11:30 13:06:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[116, 405, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000064", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "48", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "412028cf67411a6603a5944f716c1fd058278e9f7005f6b9f1653fa13ac1ef23", "phash": "90b003e73c1ecdde", "dhash": "b8dca4b4b0c4fcf0", "phash_int": -8.020906644665873e+18, "collected_at": "2026-05-22T04:33:25.259906+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-17 09-38-51 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-17 09-38-51 CanonPowerShotS40.jpg", "file_name": "2003-09-17 09-38-51 CanonPowerShotS40.jpg", "file_stem": "2003-09-17 09-38-51 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1919026.0, "mtime": "2003-09-17T07:38:51+00:00", "mtime_ts": 1063784331.0, "ctime": "2024-12-21T07:57:48.012944+00:00", "sha256_file": "34d73deab02db9bd5ec706f6386bbfa26318c47d5456fac69d8655109f1cf921", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:17 09:38:51", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5608", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:17 09:38:51", "EXIF DateTimeDigitized": "2003:09:17 09:38:51", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000053", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ea62cf5224d6cdcd9229194d153e41dee93e9bf91a69455b698c6327ff2e7f9f", "phash": "9514958515db9bd3", "dhash": "bcbcb8b8b4f2dcd0", "phash_int": -7.704368663694173e+18, "collected_at": "2026-05-22T04:33:25.490969+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-18 08-38-39 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-18 08-38-39 CanonPowerShotA40.jpg", "file_name": "2003-10-18 08-38-39 CanonPowerShotA40.jpg", "file_stem": "2003-10-18 08-38-39 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 420117.0, "mtime": "2003-10-18T07:38:39+00:00", "mtime_ts": 1066462719.0, "ctime": "2024-12-21T07:57:48.795970+00:00", "sha256_file": "5ad02d7af17509357a8f34f7c190648b026180030e457c97994b0376f29afd46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:18 08:38:39", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2833", "EXIF ExposureTime": "1/60", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:10:18 08:38:39", "EXIF DateTimeDigitized": "2003:10:18 08:38:39", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "54987/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "211/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 2007, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1292917", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "105", "MakerNote MinAperture": "200", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "25", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "1", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "104", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1657"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "df9eaad22be743ce0a7684be6924f9a60db1f422b45e62ae4ee1555518fd00c1", "phash": "808387789f27875f", "dhash": "fcfefe9eb0b0befe", "phash_int": -9.186349862769687e+18, "collected_at": "2026-05-22T04:33:25.770621+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 11-36-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 11-36-10 CanonPowerShotS40.jpg", "file_name": "2003-11-29 11-36-10 CanonPowerShotS40.jpg", "file_stem": "2003-11-29 11-36-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1669413.0, "mtime": "2003-11-29T10:36:10+00:00", "mtime_ts": 1070102170.0, "ctime": "2024-12-21T07:57:53.710128+00:00", "sha256_file": "1124276ddf24809bdb4b7fe16e145cf69f8c53028e7858bef24ba52479e82da7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 11:36:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:29 11:36:10", "EXIF DateTimeDigitized": "2003:11:29 11:36:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1243/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[6, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000059", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "180", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1243"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0a7a84a6121687941b4cb7fd854a9f4b833da7a130229384be757371e14f244f", "phash": "9d3872abcbcd3904", "dhash": "3d3c367272766664", "phash_int": -7.117813128874871e+18, "collected_at": "2026-05-22T04:33:25.775621+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 12-59-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 12-59-05 CanonPowerShotS40.jpg", "file_name": "2003-11-30 12-59-05 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 12-59-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1479991.0, "mtime": "2003-11-30T11:59:05+00:00", "mtime_ts": 1070193545.0, "ctime": "2024-12-21T07:57:55.418184+00:00", "sha256_file": "74d88760c1b83bab29e663ae4f16b5047e7831742f807df8743cf03049d3bf1e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 12:59:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4970", "EXIF ExposureTime": "1/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 12:59:05", "EXIF DateTimeDigitized": "2003:11:30 12:59:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "37/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[64, 274, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000043", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "28", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "74", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f223a34a00f16f6cbc5240008f194f074f6861be246a4c288350cde806e66796", "phash": "f50f1ee9429e0b0e", "dhash": "283e1e1c8e1a1c08", "phash_int": -7.883774225726804e+17, "collected_at": "2026-05-22T04:33:25.980007+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 01-36-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 01-36-20 CanonPowerShotS40.jpg", "file_name": "2004-01-01 01-36-20 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 01-36-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 3058554.0, "mtime": "2004-01-01T00:36:18+00:00", "mtime_ts": 1072917378.0, "ctime": "2024-12-21T07:58:00.058333+00:00", "sha256_file": "8773433c1166a208e843289a941206cb72553093bc7bc53b1d7b5fdcda8625ed", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 01:36:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7011", "EXIF ExposureTime": "1/320", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 01:36:20", "EXIF DateTimeDigitized": "2004:01:01 01:36:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "133/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000082", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "129", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "266", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a1124289122c67e792fdabd7d1cac7801dbf3628dcfa1b8c65c963ba9bcec533", "phash": "c7c7c2482818f9ef", "dhash": "c44444666632d0c8", "phash_int": -4.0510557246303124e+18, "collected_at": "2026-05-22T04:33:25.994006+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-05-25 11-25-50 E5000.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-05-25 11-25-50 E5000.jpg", "file_name": "2003-05-25 11-25-50 E5000.jpg", "file_stem": "2003-05-25 11-25-50 E5000", "file_ext": ".jpg", "file_size": 695525.0, "mtime": "2003-05-25T18:55:28+00:00", "mtime_ts": 1053888928.0, "ctime": "2024-12-21T07:57:46.503896+00:00", "sha256_file": "b651ad3c2c55e5b598d0b3b5abbabc7a57ed91641e21168a44bf1f36a90c8a47", "exif": {"Image Make": "Canon", "Image Model": "E5000", "Image Orientation": "Horizontal (normal)", "Image XResolution": "300", "Image YResolution": "300", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:05:25 11:25:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1008", "Thumbnail JPEGInterchangeFormatLength": "7596", "EXIF ISOSpeedRatings": "100", "EXIF ExifVersion": "0200", "EXIF DateTimeOriginal": "2003:05:25 11:25:50", "EXIF DateTimeDigitized": "2003:05:25 11:25:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF ShutterSpeedValue": "558857/65536", "EXIF ApertureValue": "183983/32768", "EXIF ExposureBiasValue": "0", "EXIF MakerNote": "[5, 0, 4, 0, 3, 0, 27, 0, 0, 0, 244, 1, 0, 0, 6, 0, 2, 0, 32, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1920", "EXIF ExifImageLength": "2560", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "Firmware Version 00.00", "MakerNote ImageNumber": "0", "MakerNote OwnerName": "", "MakerNote AutoISO": "0", "MakerNote BaseISO": "160", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "180", "MakerNote TargetExposureTime": "273", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Unknown", "MakerNote SlowShutter": "None", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "8", "MakerNote Unknown": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1920.0, "height": 2560.0, "megapixels": 4.92, "has_transparency": 0.0, "dpi": [300.0, 300.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c810c54ec2d683280652de0469bb9313d3c1db35e809f2e1e778bc93d96337fa", "phash": "9af96196e51bc898", "dhash": "8e1b39787c6c788b", "phash_int": -7.279680021950904e+18, "collected_at": "2026-05-22T04:33:26.211064+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-13 09-26-44 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-13 09-26-44 CanonPowerShotS40.jpg", "file_name": "2002-11-13 09-26-44 CanonPowerShotS40.jpg", "file_stem": "2002-11-13 09-26-44 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1484907.0, "mtime": "2002-11-13T08:26:42+00:00", "mtime_ts": 1037176002.0, "ctime": "2024-12-21T07:57:37.009589+00:00", "sha256_file": "35c1aa4a879ab65ec81cb1b105950694348ecf4ae6756e7a72d45c249c7cc052", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:13 09:26:44", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3411", "EXIF ExposureTime": "1/400", "EXIF FNumber": "7/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:13 09:26:44", "EXIF DateTimeDigitized": "2002:11:13 09:26:44", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "29/8", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "3199/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "393/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000018", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "121", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "116", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "3", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3199"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4e2905d8242454bf248cb0ebbffd56f6e15840df43cd4708d0fd1260f032d9f5", "phash": "c13f96c1e66230de", "dhash": "e470f1c3d3d1d1c0", "phash_int": -4.5217297413186396e+18, "collected_at": "2026-05-22T04:33:26.225171+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-08 18-59-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-08 18-59-52 CanonPowerShotS40.jpg", "file_name": "2003-10-08 18-59-52 CanonPowerShotS40.jpg", "file_stem": "2003-10-08 18-59-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1634049.0, "mtime": "2003-10-09T06:48:22+00:00", "mtime_ts": 1065682102.0, "ctime": "2024-12-21T07:57:48.441958+00:00", "sha256_file": "2516f15459c13a649d576ebed4bb024039ae135fd39083878451938061f4ceaa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:08 18:59:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4956", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:08 18:59:52", "EXIF DateTimeDigitized": "2003:10:08 18:59:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[19, 244, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "61", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "183", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d79b2703d108557606b5e93f89523780d279545cf2fcb8eae56fe4da66ae0bdc", "phash": "85d473da2729c49e", "dhash": "f0f0e2eaeaea7bcb", "phash_int": -8.803283990805364e+18, "collected_at": "2026-05-22T04:33:26.411177+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-18-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-18-18 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-18-18 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-18-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1215102.0, "mtime": "2002-09-28T13:18:16+00:00", "mtime_ts": 1033219096.0, "ctime": "2024-12-21T07:57:36.105560+00:00", "sha256_file": "c222736522ed512db99f3dab63b36810567991166cf88b68aa302f0fa7afc2c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:18:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2917", "EXIF ExposureTime": "1/50", "EXIF FNumber": "28/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:18:18", "EXIF DateTimeDigitized": "2002:09:28 13:18:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "181/32", "EXIF ApertureValue": "159/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[104, 161, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000034", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Landscape", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "203", "MakerNote TargetAperture": "159", "MakerNote TargetExposureTime": "181", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "209", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "511a1e7134da41403d06186344195fc29641c0441a2f38c1c4ed87289cda8db7", "phash": "9da5624acc5ac9b5", "dhash": "f17a32b2b2b238ec", "phash_int": -7.087150365202004e+18, "collected_at": "2026-05-22T04:33:26.433175+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-03 08-26-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-03 08-26-49 CanonPowerShotS40.jpg", "file_name": "2003-04-03 08-26-49 CanonPowerShotS40.jpg", "file_stem": "2003-04-03 08-26-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1304438.0, "mtime": "2003-04-03T07:26:48+00:00", "mtime_ts": 1049354808.0, "ctime": "2024-12-21T07:57:43.481798+00:00", "sha256_file": "4e2a7f8b017c058c53da1abe33967fd3555fbb917eeef9d4f1495843592dffd8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:03 08:26:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3535", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:03 08:26:49", "EXIF DateTimeDigitized": "2003:04:03 08:26:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 256, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000009", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "2", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "56", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "176", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "14b4b55670e0512f2c6c8c42969ceb07f5227ff83e6c8bdd06dac9cc942084a4", "phash": "83665cf85af67890", "dhash": "e0e8c8c9d1d2d0f0", "phash_int": -8.978386585368758e+18, "collected_at": "2026-05-22T04:33:26.632287+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 21-08-48 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 21-08-48 CanonPowerShotS40.jpg", "file_name": "2003-03-08 21-08-48 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 21-08-48 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2538339.0, "mtime": "2003-03-09T17:42:43+00:00", "mtime_ts": 1047231763.0, "ctime": "2024-12-21T07:57:41.469733+00:00", "sha256_file": "f7f0c8355fb1b855da4712046535505957bd8e46d8c6083923815cbcc9eda6c6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 21:08:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "184", "Thumbnail JPEGInterchangeFormat": "1386", "Thumbnail JPEGInterchangeFormatLength": "5037", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 21:08:48", "EXIF DateTimeDigitized": "2003:03:08 21:08:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "", "MakerNote FirmwareVersion": "", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Unknown", "MakerNote SelfTimer": "25", "MakerNote Quality": "Unknown", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "Unknown", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "See ISOSpeedRatings Tag", "MakerNote MeteringMode": "Default", "MakerNote FocusType": "Manual", "MakerNote AFPointSelected": "Unknown", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "Unknown", "MakerNote LongFocalLengthOfLensInFocalUnits": "0", "MakerNote ShortFocalLengthOfLensInFocalUnits": "0", "MakerNote FocalUnitsPerMM": "0", "MakerNote MaxAperture": "0", "MakerNote MinAperture": "0", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Off", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "0", "MakerNote AutoISO": "0", "MakerNote BaseISO": "0", "MakerNote MeasuredEV": "0", "MakerNote TargetAperture": "0", "MakerNote TargetExposureTime": "0", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "0"}, "format": "JPEG", "mode": "RGB", "width": 1704.0, "height": 2272.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6e85c4a05172befcf25ce8ff83cac42b7c26ac992acb222ed7f157b16f8ad0ed", "phash": "b4a5525b563fb481", "dhash": "6c4eb66ef4366898", "phash_int": -5.429843223482748e+18, "collected_at": "2026-05-22T04:33:26.634286+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-09 12-40-43 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-09 12-40-43 CanonPowerShotA40.jpg", "file_name": "2003-02-09 12-40-43 CanonPowerShotA40.jpg", "file_stem": "2003-02-09 12-40-43 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 311096.0, "mtime": "2003-02-09T10:40:42+00:00", "mtime_ts": 1044787242.0, "ctime": "2024-12-21T07:57:38.267630+00:00", "sha256_file": "7282707d41b1550d0ea93081399780da60437839a09493781473a1f80ff8f46d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:09 12:40:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3814", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:09 12:40:43", "EXIF DateTimeDigitized": "2003:02:09 12:40:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171751", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "137", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "491"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f8223a3bb2296dfe0e469bbf96227ffcda47dd419f017641701399236159868b", "phash": "dadc0587d24d07d3", "dhash": "bc3c3031396c13dc", "phash_int": -2.6762579976579297e+18, "collected_at": "2026-05-22T04:33:26.801005+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-47-16 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-47-16 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-47-16 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-47-16 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2424304.0, "mtime": "2003-04-05T12:47:14+00:00", "mtime_ts": 1049546834.0, "ctime": "2024-12-21T07:57:43.724806+00:00", "sha256_file": "d6b67c7d79db49ec4bb228c2d60beb06f3e6bde491e5583d2095d960c2e636cb", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:47:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "8027", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:47:16", "EXIF DateTimeDigitized": "2003:04:05 13:47:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "294", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3effe42165f5c604e02a27d82fc2d5440c76e66e42a4948c5a6390d46c3ac636", "phash": "e4ee237658942ea5", "dhash": "27c7e7b2334e5edf", "phash_int": -1.9505825974056266e+18, "collected_at": "2026-05-22T04:33:26.852007+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-21 17-44-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-21 17-44-41 CanonPowerShotS40.jpg", "file_name": "2003-12-21 17-44-41 CanonPowerShotS40.jpg", "file_stem": "2003-12-21 17-44-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1621665.0, "mtime": "2003-12-21T16:44:40+00:00", "mtime_ts": 1072025080.0, "ctime": "2024-12-21T07:57:57.100238+00:00", "sha256_file": "73abc13ccbc5debd3dabbfd3d324ceba69c5c52f0d755d012daa3cc10c336365", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:21 17:44:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:21 17:44:41", "EXIF DateTimeDigitized": "2003:12:21 17:44:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "259/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[16, 248, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "37", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "179", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1036"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e055f11e4a5c39e08cadb50cc8ce4c2cbb542eea487dbd80172d457cc4df9da0", "phash": "caec354b43b93435", "dhash": "a6a7b7e1c9e971ec", "phash_int": -3.8246233861693635e+18, "collected_at": "2026-05-22T04:33:27.031034+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 19-10-56 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 19-10-56 CanonPowerShotA40.jpg", "file_name": "2003-03-06 19-10-56 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 19-10-56 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 457141.0, "mtime": "2003-03-30T10:02:16+00:00", "mtime_ts": 1049018536.0, "ctime": "2024-12-21T07:57:40.428699+00:00", "sha256_file": "f813770e9e1535eb784ffc76a5fed222e594e899782be31c49d51e484b455c08", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 19:10:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4477", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 19:10:56", "EXIF DateTimeDigitized": "2003:03:06 19:10:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 52, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191967", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "91", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "138", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ceac4a977054fe9ad14280511926431c996710d56c442b933537f0b435d5db6c", "phash": "87f938cb3664413d", "dhash": "c383e2ee4ee4a6ac", "phash_int": -8.648819163946271e+18, "collected_at": "2026-05-22T04:33:27.041034+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-05 13-39-50 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-05 13-39-50 CanonPowerShotS40.jpg", "file_name": "2003-04-05 13-39-50 CanonPowerShotS40.jpg", "file_stem": "2003-04-05 13-39-50 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1230118.0, "mtime": "2003-04-05T12:39:48+00:00", "mtime_ts": 1049546388.0, "ctime": "2024-12-21T07:57:43.512799+00:00", "sha256_file": "356e7b261305bbff97ad5f19acde8c769288820e25f5b1ab7c37daa4087f6452", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:05 13:39:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4470", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:05 13:39:50", "EXIF DateTimeDigitized": "2003:04:05 13:39:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "391/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[17, 328, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000012", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "782"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5a06ca5501d6a92b96aaa3fd2dafdf3141b1cc3fb6247e844d14160f5715f9a8", "phash": "c4fe19131b781e72", "dhash": "c2c6a6c5c4c4d0d2", "phash_int": -4.2519334283352397e+18, "collected_at": "2026-05-22T04:33:27.220582+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 17-01-56 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 17-01-56 CanonPowerShotA40.jpg", "file_name": "2003-11-29 17-01-56 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 17-01-56 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 525483.0, "mtime": "2003-11-29T16:01:56+00:00", "mtime_ts": 1070121716.0, "ctime": "2024-12-21T07:57:55.006170+00:00", "sha256_file": "4cfd9cee3f01f76dbc6344b6dd6b53134a7a824c9dea789c8eae07ff8f0dcbf6", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 17:01:56", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4776", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 17:01:56", "EXIF DateTimeDigitized": "2003:11:29 17:01:56", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1544, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303079", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "91", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "968"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2299d456011cac0b6335043d4482440a9475f462fc16bfcf36934b140fe20b7b", "phash": "c17b04cbeb640fac", "dhash": "e0e8a0c240e8a4e0", "phash_int": -4.5050017283799736e+18, "collected_at": "2026-05-22T04:33:27.252684+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-13 18-48-05 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-13 18-48-05 CanonPowerShotS40.jpg", "file_name": "2003-11-13 18-48-05 CanonPowerShotS40.jpg", "file_stem": "2003-11-13 18-48-05 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1374412.0, "mtime": "2003-11-13T17:48:05+00:00", "mtime_ts": 1068745685.0, "ctime": "2024-12-21T07:57:52.716096+00:00", "sha256_file": "637fe1e345f2d1af83ecaae75ac7d096d81cccbc48fca8093c7c870f25fb7e1f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:13 18:48:05", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6170", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:13 18:48:05", "EXIF DateTimeDigitized": "2003:11:13 18:48:05", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[7, 132, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000073", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Program", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65472", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "149", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f3d850a1187e8fcdc74dd8ef6fa0d3e74f643e1695076d261f191ef920e3f930", "phash": "c83021ff16c93fe2", "dhash": "de9e91f0312bd3c4", "phash_int": -4.021677087759188e+18, "collected_at": "2026-05-22T04:33:27.353687+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-19 21-03-01 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-19 21-03-01 CanonPowerShotS40.jpg", "file_name": "2003-11-19 21-03-01 CanonPowerShotS40.jpg", "file_stem": "2003-11-19 21-03-01 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2111007.0, "mtime": "2003-11-19T20:03:01+00:00", "mtime_ts": 1069272181.0, "ctime": "2024-12-21T07:57:53.559124+00:00", "sha256_file": "e978f974c988e225a0188580fad02fecd45f35f75cec760bbe0cdf0a24924e06", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:19 21:03:01", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4964", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:19 21:03:01", "EXIF DateTimeDigitized": "2003:11:19 21:03:01", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[12, 310, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "44", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "d2d9523ec19937ea348fb9004c3f0f9537d768485415eb6a0cc181df1c96f0dc", "phash": "842eec854d6d0d9f", "dhash": "e6ad3d2af8d0e0c0", "phash_int": -8.921933754500576e+18, "collected_at": "2026-05-22T04:33:27.496964+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 15-25-26 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 15-25-26 CanonPowerShotA40.jpg", "file_name": "2003-11-29 15-25-26 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 15-25-26 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 548487.0, "mtime": "2003-11-29T14:25:26+00:00", "mtime_ts": 1070115926.0, "ctime": "2024-12-21T07:57:54.802164+00:00", "sha256_file": "c092a5e3bc5ea2db20c82594fa6d2fab3b5666ebcc313316774e2297946836b2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 15:25:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5575", "EXIF ExposureTime": "1/40", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 15:25:26", "EXIF DateTimeDigitized": "2003:11:29 15:25:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "85/16", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, auto mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303055", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "138", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "170", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1679"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "791e59aa052f69241b119ec0c94112c0ee8786bbd91e0e41c37bcc673dec7ab7", "phash": "d80fb0fce6f6e010", "dhash": "1233d01131929098", "phash_int": -2.8778870366132716e+18, "collected_at": "2026-05-22T04:33:27.561761+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 21-00-57 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 21-00-57 CanonPowerShotA40.jpg", "file_name": "2003-02-22 21-00-57 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 21-00-57 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 627579.0, "mtime": "2003-02-22T19:00:56+00:00", "mtime_ts": 1045940456.0, "ctime": "2024-12-21T07:57:39.682676+00:00", "sha256_file": "c9615c7db360eb95476c3b40f674e671503118fe5cf53b2711ce3cc110d2608d", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 21:00:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4162", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 21:00:57", "EXIF DateTimeDigitized": "2003:02:22 21:00:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 2247, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181883", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "47", "MakerNote AFPointUsed": "12293", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "500"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "462035fdc888bb8d895a224310ed8202b3a50e5f4ce05bc5c18c773b0668da5e", "phash": "c667389267cc3369", "dhash": "6c34686ce8e8f0f2", "phash_int": -4.150286330140806e+18, "collected_at": "2026-05-22T04:33:27.909105+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-17 16-20-49 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-17 16-20-49 CanonPowerShotS40.jpg", "file_name": "2003-02-17 16-20-49 CanonPowerShotS40.jpg", "file_stem": "2003-02-17 16-20-49 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1955663.0, "mtime": "2003-02-17T15:20:48+00:00", "mtime_ts": 1045495248.0, "ctime": "2024-12-21T07:57:39.147658+00:00", "sha256_file": "7d3ec2aa9ac6db5b386d589939686e2cf375d357a0182c4ede32b7282c99647b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:17 16:20:49", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6105", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:02:17 16:20:49", "EXIF DateTimeDigitized": "2003:02:17 16:20:49", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000004", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "291", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "785b289356d7bc9dd4b4417e2490a9768d6b8c92dffaecb0d7f47de6b095318d", "phash": "cbcd5cb2e319106d", "dhash": "d06073cb0d8d72cc", "phash_int": -3.7612481904004915e+18, "collected_at": "2026-05-22T04:33:28.049757+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-03 18-52-45 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-03 18-52-45 CanonPowerShotS40.jpg", "file_name": "2003-09-03 18-52-45 CanonPowerShotS40.jpg", "file_stem": "2003-09-03 18-52-45 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1269605.0, "mtime": "2003-09-03T16:52:45+00:00", "mtime_ts": 1062607965.0, "ctime": "2024-12-21T07:57:47.009912+00:00", "sha256_file": "2963413f420a430879fb9e57b3be374f6edff14a040276525afafd378fc86db8", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:03 18:52:45", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5430", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:03 18:52:45", "EXIF DateTimeDigitized": "2003:09:03 18:52:45", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[28, 237, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000045", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "85", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "514c1389c785313fe5c9db889dde7a1f616962bd63757eb0aecc5ed6b4add9be", "phash": "976f6c1149325b6a", "dhash": "ec6e6c5c58dcdd95", "phash_int": -7.53468483006927e+18, "collected_at": "2026-05-22T04:33:29.583473+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-07 15-41-20 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-07 15-41-20 CanonPowerShotS40.jpg", "file_name": "2003-11-07 15-41-20 CanonPowerShotS40.jpg", "file_stem": "2003-11-07 15-41-20 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1274271.0, "mtime": "2003-11-07T14:41:20+00:00", "mtime_ts": 1068216080.0, "ctime": "2024-12-21T07:57:51.852068+00:00", "sha256_file": "f64271a4dc2a176a606044d91a09c0bf4435113c9b89ce24d9eadd9440303b62", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:07 15:41:20", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3011", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:07 15:41:20", "EXIF DateTimeDigitized": "2003:11:07 15:41:20", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000074", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65521", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "6dfe60d85baa0361633b16a2f614287d9fba6d3adab2bec17e14f8e5ba4406bc", "phash": "e03857c31f630fcc", "dhash": "8e96979792c2ca80", "phash_int": -2.289983914961072e+18, "collected_at": "2026-05-22T04:33:29.633550+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 14-22-10 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 14-22-10 CanonPowerShotA40.jpg", "file_name": "2003-02-01 14-22-10 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 14-22-10 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 680741.0, "mtime": "2003-02-01T12:22:08+00:00", "mtime_ts": 1044102128.0, "ctime": "2024-12-21T07:57:37.630609+00:00", "sha256_file": "1661c44bd5fc7381d985543ac3327d2ccd23b65846fd1eeda00b80d230598852", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 14:22:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5897", "EXIF ExposureTime": "1/60", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 14:22:10", "EXIF DateTimeDigitized": "2003:02:01 14:22:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "1111/256", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "215/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[76, 10, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161623", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "137", "MakerNote MinAperture": "232", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "200", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "1b3833b3ce851f49b53ab35ee92c0218f451baa992091a7186b20937c5b749b5", "phash": "b41989497765d873", "dhash": "de76b68c4cb3860c", "phash_int": -5.469189323835976e+18, "collected_at": "2026-05-22T04:33:29.671550+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-29-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-29-26 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-29-26 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-29-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 871692.0, "mtime": "2003-12-31T23:29:24+00:00", "mtime_ts": 1072913364.0, "ctime": "2024-12-21T07:57:59.973331+00:00", "sha256_file": "b5c0db07dc85fdb37f9155280e4864d5c89cb178f3273adaa5049b7521ce0870", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:29:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5038", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:29:26", "EXIF DateTimeDigitized": "2004:01:01 00:29:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "31/25", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[8, 253, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000075", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "36", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65532", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "174", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1240"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "0710d165945f9478f2a80f3bc9fd825e8ad1ec6c451138ac6a29bf093dbc4349", "phash": "b1ec4799d4730d0b", "dhash": "86c7078eb8dcd8cc", "phash_int": -5.626043108472714e+18, "collected_at": "2026-05-22T04:33:29.747460+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 16-35-16 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 16-35-16 CanonPowerShotA40.jpg", "file_name": "2003-11-29 16-35-16 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 16-35-16 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 445357.0, "mtime": "2003-11-29T15:35:16+00:00", "mtime_ts": 1070120116.0, "ctime": "2024-12-21T07:57:54.948169+00:00", "sha256_file": "32c1cad84ff41d9768df552c8cf46b26e54f6b785c2ed9b344850e258c60ff3c", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 16:35:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3945", "EXIF ExposureTime": "1/100", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 16:35:16", "EXIF DateTimeDigitized": "2003:11:29 16:35:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "213/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1174, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303072", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "18", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "213", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4226035f0486c9fbb0398e09c78b124ae9b85eb3448422b944dea7860f4ec044", "phash": "aa2d2d0397731b3c", "dhash": "e3232b4939099a36", "phash_int": -6.184237219860768e+18, "collected_at": "2026-05-22T04:33:29.840868+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-31 23-05-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-31 23-05-26 CanonPowerShotS40.jpg", "file_name": "2003-12-31 23-05-26 CanonPowerShotS40.jpg", "file_stem": "2003-12-31 23-05-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2823223.0, "mtime": "2003-12-31T22:05:24+00:00", "mtime_ts": 1072908324.0, "ctime": "2024-12-21T07:57:59.586318+00:00", "sha256_file": "c08d08a4324eb97174d4aecce0f25142b375f04d2e31028cd1a4ca89b1239ce2", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:31 23:05:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5727", "EXIF ExposureTime": "1/6", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:31 23:05:26", "EXIF DateTimeDigitized": "2003:12:31 23:05:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "83/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000041", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Exposure Compensation", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65482", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "83", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Daylight", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ef8193d3723867478738097c54377223f1e82d814394dfed0951f260d04f6736", "phash": "aaaf7109fc4a7660", "dhash": "31476d292d69cd1d", "phash_int": -6.147570678636055e+18, "collected_at": "2026-05-22T04:33:29.863871+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-30 13-08-10 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-30 13-08-10 CanonPowerShotS40.jpg", "file_name": "2003-11-30 13-08-10 CanonPowerShotS40.jpg", "file_stem": "2003-11-30 13-08-10 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 462257.0, "mtime": "2003-11-30T12:08:10+00:00", "mtime_ts": 1070194090.0, "ctime": "2024-12-21T07:57:55.741194+00:00", "sha256_file": "abec74de0eb658ee3d175c08ea5568fe7a4266fccbfd7ad380124b624d9c8fc5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:30 13:08:10", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "2453", "EXIF ExposureTime": "2/5", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:30 13:08:10", "EXIF DateTimeDigitized": "2003:11:30 13:08:10", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "21/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[98, 485, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000070", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Night", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65517", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "42", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Night Scene", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "2db0659ef012b06cf96cc31a90bf59fc4113d05ff31e156ba01614595a268082", "phash": "9fbee0e0074f143c", "dhash": "c0383058783103d4", "phash_int": -6.935859123304066e+18, "collected_at": "2026-05-22T04:33:30.000256+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-29 15-23-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-29 15-23-12 CanonPowerShotS40.jpg", "file_name": "2003-03-29 15-23-12 CanonPowerShotS40.jpg", "file_stem": "2003-03-29 15-23-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1786485.0, "mtime": "2003-03-30T09:45:32+00:00", "mtime_ts": 1049017532.0, "ctime": "2024-12-21T07:57:42.649771+00:00", "sha256_file": "75771884e1ee5581d18780355db527da875d31657cb9d981560621648a18658b", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:29 15:23:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4679", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:29 15:23:12", "EXIF DateTimeDigitized": "2003:03:29 15:23:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000035", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "30", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "29", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c2e3a867a9eedc0345c13bde41c4bbb8f16fcd8d0d2c971aef6bc3f4cbf03b3c", "phash": "c7c7393a683426b6", "dhash": "8050646662622082", "phash_int": -4.0512064167773373e+18, "collected_at": "2026-05-22T04:33:30.008255+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-29 13-09-12 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-29 13-09-12 CanonPowerShotA40.jpg", "file_name": "2003-11-29 13-09-12 CanonPowerShotA40.jpg", "file_stem": "2003-11-29 13-09-12 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 408629.0, "mtime": "2003-11-29T12:09:12+00:00", "mtime_ts": 1070107752.0, "ctime": "2024-12-21T07:57:54.353149+00:00", "sha256_file": "f22f6e19134d032bdfddd680d9535358157d75841291fa274259b7c86d6ee3c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:29 13:09:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5471", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:11:29 13:09:12", "EXIF DateTimeDigitized": "2003:11:29 13:09:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 1033, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1303027", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "61", "MakerNote AFPointUsed": "12294", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "522"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "5982cdc5a2a43ba21eddf0ecd72a0b3599fca37a1364935e1cac3e7916a3a8dd", "phash": "8b7554e4e98a19d3", "dhash": "f6ee79f3736161f0", "phash_int": -8.397712588015004e+18, "collected_at": "2026-05-22T04:33:30.126446+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-09-16 13-32-12 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-09-16 13-32-12 CanonPowerShotS40.jpg", "file_name": "2003-09-16 13-32-12 CanonPowerShotS40.jpg", "file_stem": "2003-09-16 13-32-12 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2879720.0, "mtime": "2003-09-16T11:32:12+00:00", "mtime_ts": 1063711932.0, "ctime": "2024-12-21T07:57:47.901941+00:00", "sha256_file": "c56e14c8fad9f3cc00698a7cbba580b5493380ed26abbc30a54053c0c3ae46d1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:09:16 13:32:12", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7679", "EXIF ExposureTime": "1/8", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:09:16 13:32:12", "EXIF DateTimeDigitized": "2003:09:16 13:32:12", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1241/500", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "20", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "65462", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Cloudy", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2482"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "89ad43242b8862015c5b98c351aa82675bce810bd38f62f54806f93ef1f3f50a", "phash": "c53cea0ee0cb24f5", "dhash": "4566eeeace664a0a", "phash_int": -4.2342522000132577e+18, "collected_at": "2026-05-22T04:33:30.183449+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 18-17-17 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 18-17-17 CanonPowerShotS40.jpg", "file_name": "2003-04-06 18-17-17 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 18-17-17 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1404415.0, "mtime": "2003-04-06T17:17:16+00:00", "mtime_ts": 1049649436.0, "ctime": "2024-12-21T07:57:45.138852+00:00", "sha256_file": "158f6a701672d54519fa800f3adea6d806a8f64d2f5b9d28fa8c7374186a094a", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 18:17:17", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3442", "EXIF ExposureTime": "1/400", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 18:17:17", "EXIF DateTimeDigitized": "2003:04:06 18:17:17", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "277/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000062", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "277", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "e256616982e7f444ee4aa95b8a88ad10284724dd5f248b8191fc4c55d5758fa9", "phash": "8380c56c793c9f8f", "dhash": "10c0f8b8c965e0d8", "phash_int": -8.970953388040872e+18, "collected_at": "2026-05-22T04:33:30.239750+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 23-06-41 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 23-06-41 CanonPowerShotS40.jpg", "file_name": "2003-03-07 23-06-41 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 23-06-41 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1799556.0, "mtime": "2003-03-07T22:06:40+00:00", "mtime_ts": 1047074800.0, "ctime": "2024-12-21T07:57:40.679708+00:00", "sha256_file": "fdff50a0fca5d71ddfe9f03c00186b54a3acf9faf884b2a23b6f47dc726a8d46", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 23:06:41", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6601", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 23:06:41", "EXIF DateTimeDigitized": "2003:03:07 23:06:41", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1557/500", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[15, 252, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000044", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "26", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "39", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "172", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "3114"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3c928101875bc04a4e4e51ba3c0afd27cd979eacee1849efa887e48868d346df", "phash": "e57e334c470a81ee", "dhash": "652eaee2a6d687c6", "phash_int": -1.9100327892561096e+18, "collected_at": "2026-05-22T04:33:30.316819+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-08 18-20-26 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-08 18-20-26 CanonPowerShotA40.jpg", "file_name": "2003-02-08 18-20-26 CanonPowerShotA40.jpg", "file_stem": "2003-02-08 18-20-26 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 306210.0, "mtime": "2003-02-08T16:20:24+00:00", "mtime_ts": 1044721224.0, "ctime": "2024-12-21T07:57:38.203628+00:00", "sha256_file": "d288e303a9d6d151387921f529de200af300a7acccd619a2eafee791d6340483", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:08 18:20:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3457", "EXIF ExposureTime": "1/60", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:08 18:20:26", "EXIF DateTimeDigitized": "2003:02:08 18:20:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 7918, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171710", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "129", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2054"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c9f803addf1c9d6c63507e59ead1fe3cde6374dc467b9689e3219968a7a6a9e1", "phash": "97047c69f9128a7b", "dhash": "1666ececd8e02819", "phash_int": -7.564784679483438e+18, "collected_at": "2026-05-22T04:33:30.322822+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-07 22-19-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-07 22-19-18 CanonPowerShotS40.jpg", "file_name": "2003-03-07 22-19-18 CanonPowerShotS40.jpg", "file_stem": "2003-03-07 22-19-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1530523.0, "mtime": "2003-03-07T21:19:16+00:00", "mtime_ts": 1047071956.0, "ctime": "2024-12-21T07:57:40.611706+00:00", "sha256_file": "73013ad625a99c14a9c7d49cb2dffbf32ea1952194a8b32fc293f665dda51e48", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:07 22:19:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6483", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:07 22:19:18", "EXIF DateTimeDigitized": "2003:03:07 22:19:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1769/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[9, 254, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000028", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "11", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "60", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "182", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1769"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3de6550032da58287fc30d977387486492b35f11a8448baa36a25308bfa468fd", "phash": "dc6503ec7b073643", "dhash": "59323e3232323818", "phash_int": -2.565640098506394e+18, "collected_at": "2026-05-22T04:33:30.521499+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-02 09-42-43 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-02 09-42-43 CanonPowerShotS40.jpg", "file_name": "2003-11-02 09-42-43 CanonPowerShotS40.jpg", "file_stem": "2003-11-02 09-42-43 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1287956.0, "mtime": "2003-11-02T08:42:43+00:00", "mtime_ts": 1067762563.0, "ctime": "2024-12-21T07:57:51.159046+00:00", "sha256_file": "0650219fac3b765cc04c585d8d7276b38b8ca4cbd0d843774b91069abfe7a1c3", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:02 09:42:43", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4304", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:02 09:42:43", "EXIF DateTimeDigitized": "2003:11:02 09:42:43", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "631/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[3, 263, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000014", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Portrait", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "11", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "168", "MakerNote AFPointUsed": "12289", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "631"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "029d072ff91fa899fd16a8f0f4c5a60c28737042fdb641b8f167705fc61284fa", "phash": "93b1656b11563b1b", "dhash": "ce9f19f9fb496160", "phash_int": -7.804345168729589e+18, "collected_at": "2026-05-22T04:33:30.524501+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-11-28 17-29-14 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-11-28 17-29-14 CanonPowerShotS40.jpg", "file_name": "2002-11-28 17-29-14 CanonPowerShotS40.jpg", "file_stem": "2002-11-28 17-29-14 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1687453.0, "mtime": "2002-12-01T11:31:10+00:00", "mtime_ts": 1038742270.0, "ctime": "2024-12-21T07:57:37.512605+00:00", "sha256_file": "61132521d4a86eb11d19a6a3348aed3eb6af8e677a744952c0b111cddad84285", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:11:28 17:29:14", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "3264", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:11:28 17:29:14", "EXIF DateTimeDigitized": "2002:11:28 17:29:14", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1357/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 269, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000029", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65219", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "175", "MakerNote AFPointUsed": "0", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "32729644506348454f70e6598aa07702bdd03e5979ac0369bf8090f8266f51c9", "phash": "8fcf718c71e4c0f0", "dhash": "6868686c6c646c6a", "phash_int": -8.084117958086574e+18, "collected_at": "2026-05-22T04:33:30.789251+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-08 18-32-25 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-08 18-32-25 CanonPowerShotS40.jpg", "file_name": "2003-03-08 18-32-25 CanonPowerShotS40.jpg", "file_stem": "2003-03-08 18-32-25 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2448726.0, "mtime": "2003-03-08T17:32:24+00:00", "mtime_ts": 1047144744.0, "ctime": "2024-12-21T07:57:40.926716+00:00", "sha256_file": "1697141961d85d15dac9703362a254320fd62be4b2316daee9def94d007c95c5", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:08 18:32:25", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "7094", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:03:08 18:32:25", "EXIF DateTimeDigitized": "2003:03:08 18:32:25", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "4191/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 264, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65504", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "178", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "4191"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "3211bc4b70ffdd7a02ae8e8cc4d308b1aec41a8078de83a444708207ddadc47f", "phash": "817e5fd0dce0e05c", "dhash": "d05bdddc98dcdcdc", "phash_int": -9.115743245087744e+18, "collected_at": "2026-05-22T04:33:30.801252+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-14 23-08-31 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-14 23-08-31 CanonPowerShotA40.jpg", "file_name": "2003-02-14 23-08-31 CanonPowerShotA40.jpg", "file_stem": "2003-02-14 23-08-31 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 402409.0, "mtime": "2003-02-14T21:08:30+00:00", "mtime_ts": 1045256910.0, "ctime": "2024-12-21T07:57:38.424635+00:00", "sha256_file": "f4c76c08a234a9aa08a1c6982bd3032b04a7caa26820643bf1fff895b316dbef", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:14 23:08:31", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5281", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:14 23:08:31", "EXIF DateTimeDigitized": "2003:02:14 23:08:31", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 4628, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1171798", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "33", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "500"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "bc7e40fee49e490635e62002b73c7c1c2a514ff7a7ce2b681ccba799b89a2f78", "phash": "94c06db61e8ff870", "dhash": "f4c4a068acad1636", "phash_int": -7.728056331603544e+18, "collected_at": "2026-05-22T04:33:30.919656+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2002-09-28 13-31-52 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2002-09-28 13-31-52 CanonPowerShotS40.jpg", "file_name": "2002-09-28 13-31-52 CanonPowerShotS40.jpg", "file_stem": "2002-09-28 13-31-52 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1473627.0, "mtime": "2002-09-28T13:31:50+00:00", "mtime_ts": 1033219910.0, "ctime": "2024-12-21T07:57:36.619577+00:00", "sha256_file": "80004594dc10488eef70f739a37435c3495ca52f873ea114178f69cc331a70c4", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2002:09:28 13:31:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5306", "EXIF ExposureTime": "1/500", "EXIF FNumber": "9/2", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2002:09:28 13:31:52", "EXIF DateTimeDigitized": "2002:09:28 13:31:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "287/32", "EXIF ApertureValue": "139/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "8821/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "35/2", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000089", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "139", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "292", "MakerNote TargetAperture": "139", "MakerNote TargetExposureTime": "287", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "5", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "8821"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "878276254407babe7c0ced97f5d52869c55b7a4de8ae17e780601a2e9c458ac0", "phash": "fbd0833c34a4cb4b", "dhash": "cc4b590425174ecb", "phash_int": -3.0159688042933165e+17, "collected_at": "2026-05-22T04:33:30.953842+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-13 08-37-22 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-13 08-37-22 CanonPowerShotA40.jpg", "file_name": "2003-03-13 08-37-22 CanonPowerShotA40.jpg", "file_stem": "2003-03-13 08-37-22 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 397378.0, "mtime": "2003-03-30T10:02:44+00:00", "mtime_ts": 1049018564.0, "ctime": "2024-12-21T07:57:41.554736+00:00", "sha256_file": "3f4c931705ccfad12431ccc3e4d13ba62e5c68c9759f97a011f97754ec58347f", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:13 08:37:22", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "2591", "EXIF ExposureTime": "1/8", "EXIF FNumber": "24/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:13 08:37:22", "EXIF DateTimeDigitized": "2003:03:13 08:37:22", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "3", "EXIF ApertureValue": "74155/16384", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire, compulsory flash mode", "EXIF FocalLength": "259/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191988", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Macro", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Flash Not Fired", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Close-Up (Macro)", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "145", "MakerNote MinAperture": "240", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65", "MakerNote TargetAperture": "145", "MakerNote TargetExposureTime": "96", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "350"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a83193b290cf4ee2accaa7d13b74f39f1264d25b86dbe407ef70104d9b3d0bc0", "phash": "95a102cf35a75aea", "dhash": "cede8ede5ef0acfc", "phash_int": -7.664842001826227e+18, "collected_at": "2026-05-22T04:33:31.066314+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-10-09 08-34-26 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-10-09 08-34-26 CanonPowerShotS40.jpg", "file_name": "2003-10-09 08-34-26 CanonPowerShotS40.jpg", "file_stem": "2003-10-09 08-34-26 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1490510.0, "mtime": "2003-10-09T06:48:41+00:00", "mtime_ts": 1065682121.0, "ctime": "2024-12-21T07:57:48.491960+00:00", "sha256_file": "542c67972e6a2eb396111e61804b93969c8221751a8cbf95f155f1c22eb459bc", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:10:09 08:34:26", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "1466", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:10:09 08:34:26", "EXIF DateTimeDigitized": "2003:10:09 08:34:26", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "351/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "471/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[5, 260, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000039", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "130", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "32", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "15", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "4", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "170", "MakerNote AFPointUsed": "12292", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1755"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "7a61e887b773acc5d2428db9120570bd8873148987311d8864dd132e57e2af14", "phash": "c171795917868e8f", "dhash": "d090e0ccf0f0f0e0", "phash_int": -4.5076883284674115e+18, "collected_at": "2026-05-22T04:33:31.068310+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-29 00-00-13 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-29 00-00-13 CanonPowerShotS40.jpg", "file_name": "2003-12-29 00-00-13 CanonPowerShotS40.jpg", "file_stem": "2003-12-29 00-00-13 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1617026.0, "mtime": "2003-12-28T23:00:12+00:00", "mtime_ts": 1072652412.0, "ctime": "2024-12-21T07:57:58.784292+00:00", "sha256_file": "2f4fc1376853c6fc7e3e63c973b0d69fde80cd769a5c4a81083c9c25e3d76c15", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:29 00:00:13", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4847", "EXIF ExposureTime": "1/640", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:29 00:00:13", "EXIF DateTimeDigitized": "2003:12:29 00:00:13", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "149/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000038", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "267", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "298", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c98e434ae08d29c8db92986e436a67a741b4d34c9ce51e527355359958a96228", "phash": "8fe3defab4524090", "dhash": "406ae27abe7b7970", "phash_int": -8.078368138224058e+18, "collected_at": "2026-05-22T04:33:31.687131+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 15-41-36 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 15-41-36 CanonPowerShotS40.jpg", "file_name": "2003-04-20 15-41-36 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 15-41-36 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2174312.0, "mtime": "2003-04-20T14:41:34+00:00", "mtime_ts": 1050849694.0, "ctime": "2024-12-21T07:57:45.797873+00:00", "sha256_file": "cba0b3fddd14d2659244acee2d4b44a13d34891a85e61d406a576f41f6875378", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 15:41:36", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6062", "EXIF ExposureTime": "1/1000", "EXIF FNumber": "16/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 15:41:36", "EXIF DateTimeDigitized": "2003:04:20 15:41:36", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "319/32", "EXIF ApertureValue": "107/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13107/200", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000047", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "293", "MakerNote TargetAperture": "107", "MakerNote TargetExposureTime": "319", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4b3f8a40f9782631de06d540140a24188f4abc2b9cae5126fda6997b5dcdaa96", "phash": "eacadc47515c7151", "dhash": "a5e7838f4d4d3534", "phash_int": -1.5281669246730606e+18, "collected_at": "2026-05-22T04:33:31.849300+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 20-55-50 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 20-55-50 CanonPowerShotA40.jpg", "file_name": "2003-02-01 20-55-50 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 20-55-50 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 450091.0, "mtime": "2003-02-01T18:55:48+00:00", "mtime_ts": 1044125748.0, "ctime": "2024-12-21T07:57:37.927619+00:00", "sha256_file": "318a3e57f185eb68c466001282cc4dbcb4f3595454678b96208d9aae292dc5a9", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 20:55:50", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5326", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 20:55:50", "EXIF DateTimeDigitized": "2003:02:01 20:55:50", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 475, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161665", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "203", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "2136"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ff1fd4ce6a2eeba317e6a74c6725f9a03b31321b923725ddc4c2caa89607299b", "phash": "c233f8648f338e3c", "dhash": "d2d8696960aca9b0", "phash_int": -4.45294249575635e+18, "collected_at": "2026-05-22T04:33:32.564302+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-12-27 17-09-04 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-12-27 17-09-04 CanonPowerShotS40.jpg", "file_name": "2003-12-27 17-09-04 CanonPowerShotS40.jpg", "file_stem": "2003-12-27 17-09-04 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2622367.0, "mtime": "2003-12-27T16:09:02+00:00", "mtime_ts": 1072541342.0, "ctime": "2024-12-21T07:57:58.085270+00:00", "sha256_file": "6784a81db921014f71675123db371ae4de3edc946e2a9b4c25925ad49bf11671", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:12:27 17:09:04", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6541", "EXIF ExposureTime": "1/60", "EXIF FNumber": "4", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:12:27 17:09:04", "EXIF DateTimeDigitized": "2003:12:27 17:09:04", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "4", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1033/500", "EXIF MeteringMode": "CenterWeightedAverage", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[40, 113, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000030", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "On + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Manual", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "High", "MakerNote Saturation": "High", "MakerNote Sharpness": "High", "MakerNote ISO": "400", "MakerNote MeteringMode": "Center-weighted", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Center", "MakerNote ExposureMode": "Av-priority", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "224", "MakerNote MeasuredEV": "38", "MakerNote TargetAperture": "128", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Tungsten", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "148", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "-1 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2066"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f7eeb53a8f64f4acf1cbc582ae0f178626ba68955acc75b226e77bbcb6d8e231", "phash": "c842719f8f69c33a", "dhash": "b2b5d4f070d4179e", "phash_int": -4.016522987541249e+18, "collected_at": "2026-05-22T04:33:32.921789+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-03-06 18-46-53 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-03-06 18-46-53 CanonPowerShotA40.jpg", "file_name": "2003-03-06 18-46-53 CanonPowerShotA40.jpg", "file_stem": "2003-03-06 18-46-53 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 452053.0, "mtime": "2003-03-30T10:01:35+00:00", "mtime_ts": 1049018495.0, "ctime": "2024-12-21T07:57:40.207692+00:00", "sha256_file": "55d0193c353cc893d6547edbb765f6c8a4592cf57f3e8f19a438215c5177ccaa", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:03:06 18:46:53", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5057", "EXIF ExposureTime": "1/125", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:03:06 18:46:53", "EXIF DateTimeDigitized": "2003:03:06 18:46:53", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "223/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[3, 17, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1191936", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "35", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "109", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "223", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "236", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "65535"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "c704d9d8280884751d792109f844780e9d7294bdc8be63009480a5c1a5003c8d", "phash": "e4bfc1743e1921c5", "dhash": "86ced76d848494d4", "phash_int": -1.9636382075080453e+18, "collected_at": "2026-05-22T04:33:33.433561+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2004-01-01 00-19-48 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2004-01-01 00-19-48 CanonPowerShotS40.jpg", "file_name": "2004-01-01 00-19-48 CanonPowerShotS40.jpg", "file_stem": "2004-01-01 00-19-48 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1234954.0, "mtime": "2003-12-31T23:19:46+00:00", "mtime_ts": 1072912786.0, "ctime": "2024-12-21T07:57:59.896328+00:00", "sha256_file": "de57a4cc8c3db5958e813b86732bda2d178020a55f939969682bfb96d13e6e90", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2004:01:01 00:19:48", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5790", "EXIF ExposureTime": "1/80", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2004:01:01 00:19:48", "EXIF DateTimeDigitized": "2004:01:01 00:19:48", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "101/16", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "13633/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash did not fire", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "40000/7", "EXIF FocalPlaneYResolution": "40000/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[0, 0, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000068", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Unknown", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Did Not Fire", "MakerNote FlashDetails": "Manual", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "171", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "202", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "0", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "13633"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "048bc57c8637b8a3a345f1367f22e541880f4c1c1fd14c12044709a667277548", "phash": "cc46c7c9e7e582c8", "dhash": "e161a7a6b2b2b2a0", "phash_int": -3.727071971609575e+18, "collected_at": "2026-05-22T04:33:33.760455+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-06 09-23-29 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-06 09-23-29 CanonPowerShotS40.jpg", "file_name": "2003-04-06 09-23-29 CanonPowerShotS40.jpg", "file_stem": "2003-04-06 09-23-29 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1487428.0, "mtime": "2003-04-06T08:23:28+00:00", "mtime_ts": 1049617408.0, "ctime": "2024-12-21T07:57:44.383827+00:00", "sha256_file": "7b539cbad90f75e422bbe8f9196a180b833babdd5491394495c0d38a9cb52eb1", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:06 09:23:29", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "4843", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:06 09:23:29", "EXIF DateTimeDigitized": "2003:04:06 09:23:29", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "223/250", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[13, 251, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000079", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "16", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "50", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "164", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "892"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "99f693aacdd6b80a25068735b666fc31c6c0f078647f80cfe483e370594ccf69", "phash": "d6e4259c269a6d2b", "dhash": "c4c4c4a8a9f0794c", "phash_int": -2.962201302310163e+18, "collected_at": "2026-05-22T04:33:33.989189+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-02 00-31-16 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-02 00-31-16 CanonPowerShotA40.jpg", "file_name": "2003-02-02 00-31-16 CanonPowerShotA40.jpg", "file_stem": "2003-02-02 00-31-16 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 470202.0, "mtime": "2003-02-01T22:31:14+00:00", "mtime_ts": 1044138674.0, "ctime": "2024-12-21T07:57:38.025622+00:00", "sha256_file": "39ee5429e3adc0c65f097d1c61939514d1d346c99a3611ea65239f390fd72c84", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:02 00:31:16", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "5283", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:02 00:31:16", "EXIF DateTimeDigitized": "2003:02:02 00:31:16", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 1802, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161680", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "150", "MakerNote AFPointUsed": "12290", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1357"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "f98707bd75dffdde7230ff15678a966e54adde07bded055aa7f52316c13883a0", "phash": "c5fd5a0a3102f337", "dhash": "0136d6d6d6c46588", "phash_int": -4.1800858793115023e+18, "collected_at": "2026-05-22T04:33:34.100354+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-22 20-58-55 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-22 20-58-55 CanonPowerShotA40.jpg", "file_name": "2003-02-22 20-58-55 CanonPowerShotA40.jpg", "file_stem": "2003-02-22 20-58-55 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 517390.0, "mtime": "2003-02-22T18:58:54+00:00", "mtime_ts": 1045940334.0, "ctime": "2024-12-21T07:57:39.636674+00:00", "sha256_file": "424138ac3671596bb707590c1fbe381c9b20a528d493dbc531e608848d90f6e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:22 20:58:55", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "4027", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:22 20:58:55", "EXIF DateTimeDigitized": "2003:02:22 20:58:55", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[2, 2198, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1181875", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "18", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "49", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "500"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "4215db0e94b399d1c1ddbdcbba93037e4d84ed55f7bf8c14d668cc68398e083d", "phash": "c0cd3fb3da25c24a", "dhash": "dcc4e6c289cccea5", "phash_int": -4.5539136065101e+18, "collected_at": "2026-05-22T04:33:34.173549+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-16 19-34-57 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-16 19-34-57 CanonPowerShotS40.jpg", "file_name": "2003-11-16 19-34-57 CanonPowerShotS40.jpg", "file_stem": "2003-11-16 19-34-57 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1928937.0, "mtime": "2003-11-16T18:34:57+00:00", "mtime_ts": 1069007697.0, "ctime": "2024-12-21T07:57:53.118109+00:00", "sha256_file": "45c35f18e4ee804533b9ecd07ef81fed7e6cc6467998e337d89923a9fb2aa0e7", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:16 19:34:57", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "5488", "EXIF ExposureTime": "1/60", "EXIF FNumber": "49/10", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:16 19:34:57", "EXIF DateTimeDigitized": "2003:11:16 19:34:57", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "149/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "2547/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "341/16", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[2, 259, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000013", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "149", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "40", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65528", "MakerNote TargetAperture": "149", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "6", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "192", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "2547"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "76f9596423748653786e3b873b3f0cd279aca577208bef99df88d414b3f6bb53", "phash": "ba2b2794c4daf0c6", "dhash": "2b6b5911345c2d2c", "phash_int": -5.031884638745072e+18, "collected_at": "2026-05-22T04:33:34.324734+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-04-20 16-12-18 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-04-20 16-12-18 CanonPowerShotS40.jpg", "file_name": "2003-04-20 16-12-18 CanonPowerShotS40.jpg", "file_stem": "2003-04-20 16-12-18 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 1903458.0, "mtime": "2003-04-20T15:12:16+00:00", "mtime_ts": 1050851536.0, "ctime": "2024-12-21T07:57:45.822874+00:00", "sha256_file": "fa73686e6ed0a22d43469e24883b005590554e6e165db77a3eafba945ca8c29e", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:04:20 16:12:18", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6630", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:04:20 16:12:18", "EXIF DateTimeDigitized": "2003:04:20 16:12:18", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[10, 255, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000049", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "100", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "17", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "34", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "163", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "75bc158f2941c5ac3da94f7bf2a2bf3f0e20e1442a17ccb864cd51ea245af422", "phash": "824e6dd0b05fdc1d", "dhash": "f1e5e9edf8e8f2b6", "phash_int": -9.057181057515791e+18, "collected_at": "2026-05-22T04:33:34.412146+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-02-01 15-05-52 CanonPowerShotA40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-02-01 15-05-52 CanonPowerShotA40.jpg", "file_name": "2003-02-01 15-05-52 CanonPowerShotA40.jpg", "file_stem": "2003-02-01 15-05-52 CanonPowerShotA40", "file_ext": ".jpg", "file_size": 420809.0, "mtime": "2003-02-01T13:05:50+00:00", "mtime_ts": 1044104750.0, "ctime": "2024-12-21T07:57:37.793614+00:00", "sha256_file": "79b31a6efe878d132f414e340ef134e5fa7554fb77eba5b57859d48fab510069", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot A40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:02:01 15:05:52", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "2036", "Thumbnail JPEGInterchangeFormatLength": "3986", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0220", "EXIF DateTimeOriginal": "2003:02:01 15:05:52", "EXIF DateTimeDigitized": "2003:02:01 15:05:52", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "3", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "97349/32768", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired, auto mode, red-eye reduction mode", "EXIF FocalLength": "173/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 43, 0, 0, 0, 68, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "1600", "EXIF ExifImageLength": "1200", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "1600", "Interoperability RelatedImageLength": "1200", "EXIF InteroperabilityOffset": "1412", "EXIF FocalPlaneXResolution": "800000/103", "EXIF FocalPlaneYResolution": "240000/31", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "EXIF CustomRendered": "Normal", "EXIF ExposureMode": "Auto Exposure", "EXIF WhiteBalance": "Auto", "EXIF DigitalZoomRatio": "1", "EXIF SceneCaptureType": "Standard", "MakerNote FlashInfo": "[0, 826, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot A40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1161647", "MakerNote OwnerName": "b'Alicka Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot A40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Fine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "0", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "518", "MakerNote ShortFocalLengthOfLensInFocalUnits": "173", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "98", "MakerNote MinAperture": "193", "MakerNote FlashActivity": "Unknown", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote ManualFlashOutput": "n/a", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "211", "MakerNote AutoISO": "0", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "20", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "1", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "67", "MakerNote AFPointUsed": "12295", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "n/a", "MakerNote SubjectDistance": "1083"}, "format": "JPEG", "mode": "RGB", "width": 1600.0, "height": 1200.0, "megapixels": 1.92, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "a52de19e7a2abaa4469036fec788dddf77abaef3eae1ad558cf709522cfb9986", "phash": "867986d671692b96", "dhash": "f0f0dadae4e4e4e4", "phash_int": -8.756819744861378e+18, "collected_at": "2026-05-22T04:33:34.891873+00:00"} +{"file_path": "\\\\tower\\photosnahrani\\HD02#FOTKY\\2003\\2003-11-13 18-54-06 CanonPowerShotS40.jpg", "file_path_relative": "HD02#FOTKY\\2003\\2003-11-13 18-54-06 CanonPowerShotS40.jpg", "file_name": "2003-11-13 18-54-06 CanonPowerShotS40.jpg", "file_stem": "2003-11-13 18-54-06 CanonPowerShotS40", "file_ext": ".jpg", "file_size": 2141048.0, "mtime": "2003-11-13T17:54:06+00:00", "mtime_ts": 1068746046.0, "ctime": "2024-12-21T07:57:52.780098+00:00", "sha256_file": "049bbd4a703fd90f003f4c6b82dbeeef3f7c0a9b49c1cdc39e0959fa26572678", "exif": {"Image Make": "Canon", "Image Model": "Canon PowerShot S40", "Image Orientation": "Horizontal (normal)", "Image XResolution": "180", "Image YResolution": "180", "Image ResolutionUnit": "Pixels/Inch", "Image DateTime": "2003:11:13 18:54:06", "Image YCbCrPositioning": "Centered", "Image ExifOffset": "196", "Thumbnail JPEGInterchangeFormat": "1524", "Thumbnail JPEGInterchangeFormatLength": "6618", "EXIF ExposureTime": "1/60", "EXIF FNumber": "14/5", "EXIF ExifVersion": "0210", "EXIF DateTimeOriginal": "2003:11:13 18:54:06", "EXIF DateTimeDigitized": "2003:11:13 18:54:06", "EXIF ComponentsConfiguration": "YCbCr", "EXIF CompressedBitsPerPixel": "5", "EXIF ShutterSpeedValue": "189/32", "EXIF ApertureValue": "95/32", "EXIF ExposureBiasValue": "0", "EXIF MaxApertureValue": "97349/32768", "EXIF SubjectDistance": "1129/1000", "EXIF MeteringMode": "Pattern", "EXIF Flash": "Flash fired", "EXIF FocalLength": "227/32", "EXIF MakerNote": "[12, 0, 1, 0, 3, 0, 40, 0, 0, 0, 28, 4, 0, 0, 2, 0, 3, 0, 4, 0, ... ]", "EXIF UserComment": "", "EXIF FlashPixVersion": "0100", "EXIF ColorSpace": "sRGB", "EXIF ExifImageWidth": "2272", "EXIF ExifImageLength": "1704", "Interoperability InteroperabilityIndex": "R98", "Interoperability InteroperabilityVersion": "[48, 49, 48, 48]", "Interoperability RelatedImageWidth": "2272", "Interoperability RelatedImageLength": "1704", "EXIF InteroperabilityOffset": "1368", "EXIF FocalPlaneXResolution": "56800/7", "EXIF FocalPlaneYResolution": "56800/7", "EXIF FocalPlaneResolutionUnit": "2", "EXIF SensingMethod": "One-chip color area", "EXIF FileSource": "Digital Camera", "MakerNote FlashInfo": "[4, 299, 0, 0]", "MakerNote Tag 0x0000": "[0, 0, 0, 0]", "MakerNote ImageType": "IMG:PowerShot S40 JPEG", "MakerNote FirmwareVersion": "Firmware Version 1.00", "MakerNote ImageNumber": "1000078", "MakerNote OwnerName": "b'Dr. Michaela Buzalkov\\xe1'", "MakerNote ModelID": "PowerShot S40", "MakerNote Macromode": "Normal", "MakerNote SelfTimer": "0", "MakerNote Quality": "Superfine", "MakerNote FlashMode": "Auto + Red-Eye Reduction", "MakerNote ContinuousDriveMode": "Single Or Timer", "MakerNote Unknown": "250", "MakerNote FocusMode": "Single", "MakerNote RecordMode": "JPEG", "MakerNote ImageSize": "Large", "MakerNote EasyShootingMode": "Full Auto", "MakerNote DigitalZoom": "None", "MakerNote Contrast": "Normal", "MakerNote Saturation": "Normal", "MakerNote Sharpness": "Normal", "MakerNote ISO": "Auto", "MakerNote MeteringMode": "Evaluative", "MakerNote FocusType": "Auto", "MakerNote AFPointSelected": "Auto-Selected", "MakerNote ExposureMode": "Easy Shooting", "MakerNote LensType": "n/a", "MakerNote LongFocalLengthOfLensInFocalUnits": "682", "MakerNote ShortFocalLengthOfLensInFocalUnits": "227", "MakerNote FocalUnitsPerMM": "32", "MakerNote MaxAperture": "99", "MakerNote MinAperture": "192", "MakerNote FlashActivity": "Fired", "MakerNote FlashDetails": "Unknown", "MakerNote AESetting": "Normal AE", "MakerNote ImageStabilization": "Unknown", "MakerNote SpotMeteringMode": "Center", "MakerNote FocalType": "Unknown", "MakerNote FocalLength": "286", "MakerNote AutoISO": "48", "MakerNote BaseISO": "128", "MakerNote MeasuredEV": "65493", "MakerNote TargetAperture": "95", "MakerNote TargetExposureTime": "189", "MakerNote ExposureCompensation": "0", "MakerNote WhiteBalance": "Auto", "MakerNote SlowShutter": "Off", "MakerNote SequenceNumber": "0", "MakerNote OpticalZoomCode": "0", "MakerNote CameraTemperature": "-128 C", "MakerNote FlashGuideNumber": "156", "MakerNote AFPointUsed": "12291", "MakerNote FlashBias": "0 EV", "MakerNote AutoExposureBracketing": "Off", "MakerNote ControlMode": "Camera Local Control", "MakerNote SubjectDistance": "1129"}, "format": "JPEG", "mode": "RGB", "width": 2272.0, "height": 1704.0, "megapixels": 3.87, "has_transparency": 0.0, "dpi": [180.0, 180.0], "icc_profile": 0.0, "embedded_thumbnail": 0.0, "iptc": {}, "xmp": {}, "sha256_pixels": "ebf812fd976c91232822157feb30bda9cacb584cd7221f54fffd63f427ff2ae0", "phash": "c20f3d365892fc63", "dhash": "f6e6e1e1e034acb2", "phash_int": -4.463281402077316e+18, "collected_at": "2026-05-22T04:33:35.051003+00:00"}